diff --git a/.github/helper/roulette.py b/.github/helper/roulette.py index 08ff075914..5b966f82f4 100644 --- a/.github/helper/roulette.py +++ b/.github/helper/roulette.py @@ -144,6 +144,14 @@ def is_frontend_code(file): return file.lower().endswith((".css", ".scss", ".less", ".sass", ".styl", ".js", ".ts", ".vue", ".html", ".svg")) +def matches_postgres_filenames(files_list): + """Check if any changed files suggest database involvement.""" + db_keywords = ["database", "query", "schema", "postgres"] + return any( + any(word in f.lower() for word in db_keywords) + for f in files_list + ) + def is_docs(file): """Check if the file is documentation or image.""" regex = re.compile(r"\.(md|png|jpg|jpeg|csv|svg)$|^.github|LICENSE") @@ -174,6 +182,10 @@ if __name__ == "__main__": only_frontend_code_changed = len(list(filter(is_frontend_code, files_list))) == len(files_list) updated_py_file_count = len(list(filter(is_server_side_code, files_list))) only_py_changed = updated_py_file_count == len(files_list) + run_postgres = ( + has_label(pr_number, "postgres", repo) or + matches_postgres_filenames(files_list) + ) # Check for Skip CI label and other conditions if has_skip_ci_label(pr_number, repo): @@ -202,3 +214,4 @@ if __name__ == "__main__": # If we reach here, run the build os.system('echo "build=strawberry" >> $GITHUB_OUTPUT') + os.system(f'echo "run_postgres={"true" if run_postgres else "false"}" >> $GITHUB_OUTPUT') diff --git a/.github/workflows/generate-pot-file.yml b/.github/workflows/generate-pot-file.yml index 8f46aaa15e..f8c593f0b2 100644 --- a/.github/workflows/generate-pot-file.yml +++ b/.github/workflows/generate-pot-file.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - branch: ["develop"] + branch: ["develop", "version-16-hotfix"] permissions: contents: write @@ -27,6 +27,11 @@ jobs: with: python-version: "3.14" + - name: Setup Node + uses: actions/setup-node@v6 + with: + node-version: 24 + - name: Run script to update POT file run: | bash ${GITHUB_WORKSPACE}/.github/helper/update_pot_file.sh diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index 71d3a359dd..af05ee5ad3 100644 --- a/.github/workflows/server-tests.yml +++ b/.github/workflows/server-tests.yml @@ -28,6 +28,7 @@ jobs: needs: typecheck outputs: build: ${{ steps.check-build.outputs.build }} + run_postgres: ${{ steps.check-build.outputs.run_postgres }} steps: - name: Clone uses: actions/checkout@v6 @@ -44,7 +45,7 @@ jobs: name: Tests uses: ./.github/workflows/_base-server-tests.yml with: - enable-postgres: ${{ contains(github.event.pull_request.labels.*.name, 'postgres') }} # This enables PostgreSQL to run tests + enable-postgres: ${{ needs.checkrun.outputs.run_postgres == 'true' }} # This enables PostgreSQL to run tests enable-sqlite: false # This will test against both MariaDB and SQLite if enabled parallel-runs: 2 enable-coverage: ${{ github.event_name != 'pull_request' }} diff --git a/.releaserc b/.releaserc index 86f4f3cda0..ece1a68fa8 100644 --- a/.releaserc +++ b/.releaserc @@ -1,19 +1,22 @@ { - "branches": ["develop", {"name": "version-14-beta", "channel": "beta", "prerelease": true}], + "branches": ["version-17"], "plugins": [ "@semantic-release/commit-analyzer", { - "preset": "angular" + "preset": "angular", + "releaseRules": [ + {"breaking": true, "release": false} + ] }, "@semantic-release/release-notes-generator", [ "@semantic-release/exec", { - "prepareCmd": 'sed -ir "s/[0-9]*\.[0-9]*\.[0-9]*/${nextRelease.version}/" frappe/__init__.py' + "prepareCmd": 'sed -ir -E "s/\"[0-9]+\.[0-9]+\.[0-9]+\"/\"${nextRelease.version}\"/" frappe/__init__.py' } ], [ "@semantic-release/git", { "assets": ["frappe/__init__.py"], - "message": "chore(release): Bumped to Version ${nextRelease.version}" + "message": "chore(release): Bumped to Version ${nextRelease.version}\n\n${nextRelease.notes}" } ], "@semantic-release/github" diff --git a/README.md b/README.md index 53980bbef9..6a323de3ab 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Full-stack web application framework that uses Python and MariaDB on the server Started in 2005, Frappe Framework was inspired by the Semantic Web. The "big idea" behind semantic web was of a framework that not only described how information is shown (like headings, body etc), but also what it means, like name, address etc. -By creating a web framework that allowed for easy definition of metadata, it made building complex applications easy. Applications usually designed around how users interact with a system, but not based on semantics of the underlying system. Applications built on semantics end up being much more consistent and extensible. +By creating a web framework that allowed for easy definition of metadata, it made building complex applications easy. Applications are usually designed around how users interact with a system, but not based on semantics of the underlying system. Applications built on semantics end up being much more consistent and extensible. The first application built on Framework was ERPNext, a beast with more than 700 object types. Framework is not for the light hearted - it is not the first thing you might want to learn if you are beginning to learn web programming, but if you are ready to do real work, then Framework is the right tool for the job. diff --git a/cypress/integration/customize_form.js b/cypress/integration/customize_form.js index bd4564964e..6802540b4e 100644 --- a/cypress/integration/customize_form.js +++ b/cypress/integration/customize_form.js @@ -11,7 +11,6 @@ context("Customize Form", () => { "Set by user": "prompt", "By fieldname": "field:", Expression: "", - "Expression (old style)": "format:", Random: "hash", "By script": "", }; diff --git a/frappe/__init__.py b/frappe/__init__.py index 3cffd6ffda..11f48eaaa9 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -196,7 +196,7 @@ def init(site: str, sites_path: str = ".", new_site: bool = False, force: bool = local.cache = {} local.form_dict = _dict() local.preload_assets = {"style": [], "script": [], "icons": []} - local.session = _dict(user="Guest") + local.session = _dict(user="Guest", data=_dict()) local.dev_server = _dev_server # only for backwards compatibility local.qb = get_query_builder(local.conf.db_type) if not cache or not client_cache: diff --git a/frappe/app.py b/frappe/app.py index 49cacb9a46..6a07c9c223 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -40,7 +40,7 @@ import gettext import babel import babel.messages -import bleach +import nh3 import num2words import pydantic @@ -48,7 +48,7 @@ import frappe.boot import frappe.client import frappe.core.doctype.file.file import frappe.core.doctype.user.user -import frappe.database.mariadb.database # Load database related utils +import frappe.database.mariadb.mysqlclient # Load database related utils import frappe.database.query import frappe.desk.desktop # workspace import frappe.desk.form.save diff --git a/frappe/boot.py b/frappe/boot.py index c1f572f995..b409e36b99 100644 --- a/frappe/boot.py +++ b/frappe/boot.py @@ -161,8 +161,8 @@ def load_desktop_data(bootinfo): from frappe.desk.desktop import get_workspace_sidebar_items bootinfo.workspaces = get_workspace_sidebar_items() - bootinfo.workspace_sidebar_item = get_sidebar_items() allowed_pages = [d.name for d in bootinfo.workspaces.get("pages")] + bootinfo.workspace_sidebar_item = get_sidebar_items(allowed_pages) bootinfo.module_wise_workspaces = get_controller("Workspace").get_module_wise_workspaces() bootinfo.dashboards = frappe.get_all("Dashboard") bootinfo.app_data = [] @@ -533,7 +533,7 @@ def get_sentry_dsn(): return os.getenv("FRAPPE_SENTRY_DSN") -def get_sidebar_items(): +def get_sidebar_items(allowed_workspaces): from frappe import _ from frappe.desk.doctype.workspace_sidebar.workspace_sidebar import auto_generate_sidebar_from_module @@ -585,7 +585,7 @@ def get_sidebar_items(): if ( "My Workspaces" in sidebar_title or si.type == "Section Break" - or w.is_item_allowed(si.link_to, si.link_type) + or w.is_item_allowed(si.link_to, si.link_type, allowed_workspaces) ): sidebar_items[sidebar_title.lower()]["items"].append(workspace_sidebar) add_user_specific_sidebar(sidebar_items) diff --git a/frappe/client.py b/frappe/client.py index 28c572e19b..548a86fb94 100644 --- a/frappe/client.py +++ b/frappe/client.py @@ -10,7 +10,6 @@ import frappe.utils from frappe import _ from frappe.desk.reportview import validate_args from frappe.desk.search import PAGE_LENGTH_FOR_LINK_VALIDATION, search_widget -from frappe.model.utils import is_virtual_doctype from frappe.utils import attach_expanded_links, get_safe_filters from frappe.utils.caching import http_cache @@ -420,6 +419,7 @@ def validate_link_and_fetch( if not docname: frappe.throw(_("Document Name must not be empty")) + meta = frappe.get_meta(doctype) fields_to_fetch = frappe.parse_json(fields_to_fetch) # only cache is no fields to fetch and request is GET @@ -427,21 +427,31 @@ def validate_link_and_fetch( # Use search_widget to validate - ensures filters/custom queries are respected # in addition to standard permission checks - search_args["txt"] = docname + # we match the exact docname for non-custom queries and rely on txt for custom queries + search_args.update( + as_dict=False, + # when relying on txt (custom queries), we want to match "A" with "A" only and not "A1", "BA" etc. + # so we set page_length to a conservative value within which exact match is expected to appear + page_length=PAGE_LENGTH_FOR_LINK_VALIDATION, + # translated doctypes are expected to be searchable with translated values, even for custom queries + # for non-custom queries, docname is always matched exactly so we don't translate it + txt=_(docname) if (query and meta.translated_doctype) else docname, + for_link_validation=True, + ) + search_result = frappe.call( search_widget, doctype=doctype, query=query, filters=filters, **search_args, - for_link_validation=True, ) if not search_result: return {} # does not exist or filtered out values = None - is_virtual_dt = is_virtual_doctype(doctype) + is_virtual_dt = bool(meta.get("is_virtual")) if is_virtual_dt: try: doc = frappe.get_doc(doctype, docname) diff --git a/frappe/commands/site.py b/frappe/commands/site.py index 6738313b54..b83abcb5a7 100644 --- a/frappe/commands/site.py +++ b/frappe/commands/site.py @@ -1583,31 +1583,34 @@ def bypass_patch(context: CliCtxObj, patch_name: str, yes: bool): frappe.destroy() -@click.command("create-desktop-icons-and-sidebar") +@click.command("sync-desktop-icons") @pass_context -def create_icons_and_sidebar(context: CliCtxObj): - """Create desktop icons and workspace sidebars.""" - from frappe.desk.doctype.desktop_icon.desktop_icon import create_desktop_icons - from frappe.desk.doctype.workspace_sidebar.workspace_sidebar import ( - create_workspace_sidebar_for_workspaces, - ) +def sync_desktop_icons(context: CliCtxObj): + from frappe.model.sync import import_file_by_path + from frappe.modules.utils import get_app_level_directory_path + from frappe.utils import update_progress_bar - if not context.sites: - raise SiteNotSpecifiedError + files = [] + app_level_folders = ["desktop_icon"] for site in context.sites: + print("Sycning icons for " + site) frappe.init(site) frappe.connect() - try: - print("Creating Desktop Icons") - create_desktop_icons() - print("Creating Workspace Sidebars") - create_workspace_sidebar_for_workspaces() - # Saving it in a command need it - frappe.db.commit() # nosemgrep - except Exception as e: - print(f"Error creating icons {site}: {e}") - finally: - frappe.destroy() + for app_name in frappe.get_installed_apps(): + for folder_name in app_level_folders: + directory_path = get_app_level_directory_path(folder_name, app_name) + if os.path.exists(directory_path): + icon_files = [ + os.path.join(directory_path, filename) for filename in os.listdir(directory_path) + ] + for doc_path in icon_files: + files.append(doc_path) + for i, doc_path in enumerate(files): + imported = import_file_by_path(doc_path, force=True, ignore_version=True) + if imported: + frappe.db.commit(chain=True) + + update_progress_bar("Updating Desktop Icons", i, len(files)) commands = [ @@ -1646,5 +1649,5 @@ commands = [ trim_database, clear_log_table, bypass_patch, - create_icons_and_sidebar, + sync_desktop_icons, ] diff --git a/frappe/contacts/doctype/contact/contact.py b/frappe/contacts/doctype/contact/contact.py index 3ad5e54c62..5859746f1e 100644 --- a/frappe/contacts/doctype/contact/contact.py +++ b/frappe/contacts/doctype/contact/contact.py @@ -366,7 +366,7 @@ def contact_query(doctype, txt, searchfield, start, page_len, filters): order by if(locate(%(_txt)s, `tabContact`.full_name), locate(%(_txt)s, `tabContact`.company_name), 99999), `tabContact`.idx desc, `tabContact`.full_name - limit %(start)s, %(page_len)s """, + limit %(page_len)s offset %(start)s """, { "txt": "%" + txt + "%", "_txt": txt.replace("%", ""), diff --git a/frappe/core/doctype/docfield/docfield.json b/frappe/core/doctype/docfield/docfield.json index b2c1b0d262..3acf1d5ea8 100644 --- a/frappe/core/doctype/docfield/docfield.json +++ b/frappe/core/doctype/docfield/docfield.json @@ -72,6 +72,7 @@ "mandatory_depends_on", "read_only_depends_on", "display", + "alignment", "print_width", "width", "max_height", @@ -475,6 +476,13 @@ "max_height": "3rem", "options": "JS" }, + { + "depends_on": "eval:in_list([\"Data\", \"Int\", \"Float\", \"Currency\", \"Percent\"], doc.fieldtype)", + "fieldname": "alignment", + "fieldtype": "Select", + "label": "Alignment", + "options": "\nLeft\nCenter\nRight" + }, { "fieldname": "column_break_38", "fieldtype": "Column Break" diff --git a/frappe/core/doctype/docfield/docfield.py b/frappe/core/doctype/docfield/docfield.py index 6f90b81ce9..94d99fe5e9 100644 --- a/frappe/core/doctype/docfield/docfield.py +++ b/frappe/core/doctype/docfield/docfield.py @@ -17,6 +17,7 @@ class DocField(Document): allow_bulk_edit: DF.Check allow_in_quick_entry: DF.Check allow_on_submit: DF.Check + alignment: DF.Literal["", "Left", "Center", "Right"] bold: DF.Check button_color: DF.Literal["", "Default", "Primary", "Info", "Success", "Warning", "Danger"] collapsible: DF.Check @@ -126,7 +127,6 @@ class DocField(Document): def get_link_doctype(self): """Return the Link doctype for the `docfield` (if applicable). - * If fieldtype is Link: Return "options". * If fieldtype is Table MultiSelect: Return "options" of the Link field in the Child Table. """ diff --git a/frappe/core/doctype/doctype/boilerplate/controller_tree.js b/frappe/core/doctype/doctype/boilerplate/controller_tree.js new file mode 100644 index 0000000000..9fc78986e0 --- /dev/null +++ b/frappe/core/doctype/doctype/boilerplate/controller_tree.js @@ -0,0 +1,5 @@ +// Copyright (c) {year}, {app_publisher} and contributors +// For license information, please see license.txt + +// frappe.treeview_settings["{doctype}"] = {{ +// }}; \ No newline at end of file diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index dc3a785a37..58ec4f8afa 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -877,6 +877,9 @@ class DocType(Document): make_boilerplate("controller.js", self.as_dict()) # make_boilerplate("controller_list.js", self.as_dict()) + if self.is_tree: + make_boilerplate("controller_tree.js", self.as_dict()) + if self.has_web_view: templates_path = frappe.get_module_path( frappe.scrub(self.module), "doctype", frappe.scrub(self.name), "templates" @@ -1838,34 +1841,84 @@ def validate_permissions(doctype, for_remove=False, alert=False): def check_permission_dependency(d): if d.cancel and not d.submit: - frappe.throw(_("{0}: Cannot set Cancel without Submit").format(get_txt(d))) + frappe.throw( + _("{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission.").format( + get_txt(d) + ) + ) if (d.submit or d.cancel or d.amend) and not d.write: - frappe.throw(_("{0}: Cannot set Submit, Cancel, Amend without Write").format(get_txt(d))) - if d.amend and not d.write: - frappe.throw(_("{0}: Cannot set Amend without Cancel").format(get_txt(d))) + frappe.throw( + _( + "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission." + ).format(get_txt(d)) + ) + if d.amend and not d.create: + frappe.throw( + _("{0}: The 'Amend' permission cannot be granted without the 'Create' permission.").format( + get_txt(d) + ) + ) if d.get("import") and not d.create: - frappe.throw(_("{0}: Cannot set Import without Create").format(get_txt(d))) + frappe.throw( + _("{0}: The 'Import' permission cannot be granted without the 'Create' permission.").format( + get_txt(d) + ) + ) def remove_rights_for_single(d): if not issingle: return - if d.report: - frappe.msgprint(_("Report cannot be set for Single types")) - d.report = 0 + if d.get("report"): + d.set("report", 0) + frappe.msgprint( + _( + "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType." + ).format(get_txt(d)) + ) + + if d.get("import"): d.set("import", 0) + frappe.msgprint( + _( + "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType." + ).format(get_txt(d)) + ) + + if d.get("export"): d.set("export", 0) + frappe.msgprint( + _( + "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType." + ).format(get_txt(d)) + ) def check_if_submittable(d): - if d.submit and not issubmittable: - frappe.throw(_("{0}: Cannot set Assign Submit if not Submittable").format(get_txt(d))) - elif d.amend and not issubmittable: - frappe.throw(_("{0}: Cannot set Assign Amend if not Submittable").format(get_txt(d))) + if issubmittable: + return + + if d.submit: + frappe.throw( + _("{0}: The 'Submit' permission cannot be granted for a non-submittable DocType.").format( + get_txt(d) + ) + ) + + if d.amend: + frappe.throw( + _("{0}: The 'Amend' permission cannot be granted for a non-submittable DocType.").format( + get_txt(d) + ) + ) def check_if_importable(d): if d.get("import") and not isimportable: - frappe.throw(_("{0}: Cannot set import as {1} is not importable").format(get_txt(d), doctype)) + frappe.throw( + _("{0}: The 'Import' permission cannot be granted for a non-importable DocType.").format( + get_txt(d) + ) + ) def validate_permission_for_all_role(d): if frappe.session.user == "Administrator": @@ -1875,7 +1928,7 @@ def validate_permissions(doctype, for_remove=False, alert=False): if d.role in AUTOMATIC_ROLES: frappe.throw( _( - "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" + "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType." ).format(d.idx, frappe.bold(_(d.role))), title=_("Permissions Error"), ) @@ -1885,7 +1938,7 @@ def validate_permissions(doctype, for_remove=False, alert=False): if d.role in roles: frappe.throw( _( - "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" + "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType." ).format(d.idx, frappe.bold(_(d.role))), title=_("Permissions Error"), ) diff --git a/frappe/core/doctype/file/file.py b/frappe/core/doctype/file/file.py index b0442288dc..3abf1d0c87 100755 --- a/frappe/core/doctype/file/file.py +++ b/frappe/core/doctype/file/file.py @@ -892,7 +892,7 @@ def has_permission(doc, ptype=None, user=None, debug=False): try: ref_doc = frappe.get_doc(attached_to_doctype, attached_to_name) - except ModuleNotFoundError: + except (ModuleNotFoundError, ImportError): return False except frappe.DoesNotExistError: frappe.clear_last_message() diff --git a/frappe/core/doctype/prepared_report/prepared_report.json b/frappe/core/doctype/prepared_report/prepared_report.json index bdf663fa07..fbf1300b89 100644 --- a/frappe/core/doctype/prepared_report/prepared_report.json +++ b/frappe/core/doctype/prepared_report/prepared_report.json @@ -58,7 +58,7 @@ }, { "fieldname": "error_message", - "fieldtype": "Text", + "fieldtype": "Code", "label": "Error Message", "no_copy": 1, "print_hide": 1, diff --git a/frappe/core/doctype/report/report.py b/frappe/core/doctype/report/report.py index 767c652308..b4411888c0 100644 --- a/frappe/core/doctype/report/report.py +++ b/frappe/core/doctype/report/report.py @@ -416,9 +416,10 @@ def get_report_module_dotted_path(module, report_name): def get_group_by_field(args, doctype): if args["aggregate_function"] == "count": - group_by_field = "count(*) as _aggregate_column" + group_by_field = {"COUNT": "*", "as": "_aggregate_column"} else: - group_by_field = f"{args.aggregate_function}({args.aggregate_on}) as _aggregate_column" + func_name = args["aggregate_function"].upper() + group_by_field = {func_name: args["aggregate_on"], "as": "_aggregate_column"} return group_by_field diff --git a/frappe/core/doctype/system_settings/system_settings.json b/frappe/core/doctype/system_settings/system_settings.json index dc96e11cc7..c1aa3fb0d7 100644 --- a/frappe/core/doctype/system_settings/system_settings.json +++ b/frappe/core/doctype/system_settings/system_settings.json @@ -786,10 +786,11 @@ "label": "Only allow System Managers to upload public files" } ], + "hide_toolbar": 1, "icon": "fa fa-cog", "issingle": 1, "links": [], - "modified": "2025-12-17 15:01:24.823184", + "modified": "2026-01-02 18:13:45.430712", "modified_by": "Administrator", "module": "Core", "name": "System Settings", diff --git a/frappe/core/doctype/user_permission/user_permission.js b/frappe/core/doctype/user_permission/user_permission.js index 39ee4348b9..6e63c881c8 100644 --- a/frappe/core/doctype/user_permission/user_permission.js +++ b/frappe/core/doctype/user_permission/user_permission.js @@ -15,7 +15,9 @@ frappe.ui.form.on("User Permission", { frm.set_query("applicable_for", () => { return { query: "frappe.core.doctype.user_permission.user_permission.get_applicable_for_doctype_list", - doctype: frm.doc.allow, + filters: { + doctype: frm.doc.allow, + }, }; }); }, diff --git a/frappe/core/doctype/user_permission/user_permission.py b/frappe/core/doctype/user_permission/user_permission.py index b0407d1a01..9001b2893d 100644 --- a/frappe/core/doctype/user_permission/user_permission.py +++ b/frappe/core/doctype/user_permission/user_permission.py @@ -161,7 +161,8 @@ def user_permission_exists(user, allow, for_value, applicable_for=None): @frappe.whitelist() @frappe.validate_and_sanitize_search_inputs def get_applicable_for_doctype_list(doctype, txt, searchfield, start, page_len, filters): - linked_doctypes_map = get_linked_doctypes(doctype, True) + actual_doctype = filters.get("doctype") + linked_doctypes_map = get_linked_doctypes(actual_doctype, True) linked_doctypes = [] for linked_doctype, linked_doctype_values in linked_doctypes_map.items(): @@ -170,7 +171,7 @@ def get_applicable_for_doctype_list(doctype, txt, searchfield, start, page_len, if child_doctype: linked_doctypes.append(child_doctype) - linked_doctypes += [doctype] + linked_doctypes += [actual_doctype] if txt: linked_doctypes = [d for d in linked_doctypes if txt.lower() in d.lower()] diff --git a/frappe/core/doctype/version/test_version.py b/frappe/core/doctype/version/test_version.py index b99dc6f046..e7f8829ef6 100644 --- a/frappe/core/doctype/version/test_version.py +++ b/frappe/core/doctype/version/test_version.py @@ -3,12 +3,137 @@ import copy import frappe -from frappe.core.doctype.version.version import get_diff -from frappe.tests import IntegrationTestCase +from frappe.core.doctype.version.version import ( + _as_string, + _generate_html_diff, + _should_generate_html_diff, + get_diff, +) +from frappe.tests import IntegrationTestCase, UnitTestCase from frappe.tests.utils import make_test_objects +class TestHTMLDiff(UnitTestCase): + def test_generate_html_diff_produces_table(self): + """Test HTML diff generates a table with content.""" + result = _generate_html_diff("line1\nline2", "line1\nmodified") + + self.assertIsNotNone(result) + self.assertIn("
| {{ frappe.meta.get_label(doc.ref_doctype, item[0]) }} | {{ getEscapedValue(item[1]) }} | {{ getEscapedValue(item[2]) }} |
The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n" "Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n" -msgstr "طلب متأخر\n\n"
-"تجاوزت المعاملة {{ name }} تاريخ الاستحقاق. يرجى اتخاذ الإجراء اللازم.\n\n"
-"التفاصيل\n\n"
-"- العميل: {{ customer }}\n"
-"- المبلغ: {{ grand_total }}\n"
-"\n\n"
-"أسماء الحقول التي يمكنك استخدامها في قالب البريد الإلكتروني هي الحقول الموجودة في المستند الذي ترسل منه البريد الإلكتروني. يمكنك معرفة حقول أي مستند من خلال الإعداد > تخصيص طريقة عرض النموذج واختيار نوع المستند (مثلا: فاتورة المبيعات)
\n\n" -"يتم تجميع القوالب باستخدام لغة Jinja Templating Language. لمعرفة المزيد عن Jinja، اقرأ هذه التوثيقات.
\n" +msgstr "" #. Content of the 'html_5' (HTML) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -583,46 +576,46 @@ msgstr "" #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "=" -msgstr "" +msgstr "=" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid ">" -msgstr "" +msgstr ">" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid ">=" -msgstr "" +msgstr "≥" -#: frappe/core/doctype/doctype/doctype.py:1049 +#: frappe/core/doctype/doctype/doctype.py:1052 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" -msgstr "" +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 "" +msgstr "يمكن لنسخة من إطار عمل Frappe أن تعمل كعميل OAuth أو مورد أو خادم ترخيص. يحتوي نوع المستند هذا على إعدادات متعلقة بالوظائف الثلاث." #. Success message of the request-data Web Form #: frappe/website/web_form/request_data/request_data.json msgid "A download link with your data will be sent to the email address associated with your account." -msgstr "" +msgstr "سيتم إرسال رابط تنزيل يحتوي على بياناتك إلى عنوان البريد الإلكتروني المرتبط بحسابك." -#: frappe/custom/doctype/custom_field/custom_field.py:176 +#: frappe/custom/doctype/custom_field/custom_field.py:177 msgid "A field with the name {0} already exists in {1}" -msgstr "" +msgstr "يوجد حقل باسم {0} بالفعل في {1}" #: frappe/core/doctype/file/file.py:279 msgid "A file with same name {} already exists" -msgstr "" +msgstr "يوجد ملف بنفس الاسم {} بالفعل" #. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "A list of resources which the Client App will have access to after the user allows it.{0}) and Response Type ({1}) not allowed"
-msgstr "الجمع بين نوع المنحة ( {0} ) ونوع الاستجابة ( {1} ) غير مسموح به"
+msgstr ""
#. 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'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -4996,14 +5048,14 @@ msgstr "لا يمكن تعديل التعليق إلا بواسطة المالك
#: frappe/desk/form/utils.py:73
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:217
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:129
msgid "Comments"
-msgstr ""
+msgstr "تعليقات"
#. Description of the 'Timeline Field' (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -5017,7 +5069,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
@@ -5027,7 +5079,7 @@ msgstr "ارتكب"
#. Label of the committed (Check) field in DocType 'Console Log'
#: frappe/desk/doctype/console_log/console_log.json
msgid "Committed"
-msgstr ""
+msgstr "ملتزم"
#: frappe/utils/password_strength.py:176
msgid "Common names and surnames are easy to guess."
@@ -5035,7 +5087,7 @@ msgstr "الأسماء الشائعة والألقاب سهلة التخمين."
#: frappe/utils/password_strength.py:190
msgid "Common words are easy to guess."
-msgstr ""
+msgstr "يسهل تخمين الكلمات الشائعة."
#. Name of a DocType
#. Option for the 'Communication Type' (Select) field in DocType
@@ -5047,13 +5099,13 @@ 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 "الاتصالات"
#. Label of the communication_date (Datetime) field in DocType 'Communication
#. Link'
#: frappe/core/doctype/communication_link/communication_link.json
msgid "Communication Date"
-msgstr ""
+msgstr "تاريخ التواصل"
#. Name of a DocType
#: frappe/core/doctype/communication_link/communication_link.json
@@ -5063,7 +5115,7 @@ 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
@@ -5072,7 +5124,7 @@ msgstr "نوع الإتصال"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
msgid "Communication secret not set"
-msgstr ""
+msgstr "لم يتم تحديد سر الاتصال"
#. Name of a DocType
#: frappe/website/doctype/company_history/company_history.json
@@ -5089,17 +5141,17 @@ 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:56
#: frappe/public/js/frappe/utils/diffview.js:28
msgid "Compare Versions"
-msgstr ""
+msgstr "مقارنة الإصدارات"
#: frappe/core/doctype/server_script/server_script.py:166
msgid "Compilation warning"
-msgstr ""
+msgstr "تحذير بشأن التجميع"
#: frappe/website/doctype/website_theme/website_theme.py:123
msgid "Compiled Successfully"
@@ -5109,21 +5161,21 @@ msgstr "جمعت بنجاح"
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
#: frappe/www/complete_signup.html:21
msgid "Complete"
-msgstr ""
+msgstr "أكمال"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:206
msgid "Complete By"
msgstr "الكامل من جانب"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "أكمال التسجيل"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
-msgstr ""
+msgstr "إعداد كامل"
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
@@ -5135,25 +5187,25 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
-msgstr ""
+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"
@@ -5162,7 +5214,7 @@ msgstr "كتابة رسالة الكترونية"
#. Option for the 'Row Format' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Compressed"
-msgstr ""
+msgstr "مضغوط"
#. Label of the condition (Select) field in DocType 'Document Naming Rule
#. Condition'
@@ -5185,22 +5237,22 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Condition"
-msgstr ""
+msgstr "الحالة"
#. 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 الشرطي"
#. Label of the condition_type (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Condition Type"
-msgstr ""
+msgstr "نوع الحالة"
#. Label of the condition_description (HTML) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Condition description"
-msgstr ""
+msgstr "وصف الحالة"
#. Label of the conditions (Table) field in DocType 'Document Naming Rule'
#. Label of the conditions (Section Break) field in DocType 'Workflow
@@ -5208,35 +5260,35 @@ 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 ""
+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 ""
+msgstr "إعدادات"
#: frappe/public/js/frappe/views/reports/report_view.js:486
msgid "Configure Chart"
msgstr "تكوين المخطط"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
-msgstr ""
+msgstr "تكوين الأعمدة"
#: frappe/core/doctype/recorder/recorder_list.js:200
msgid "Configure Recorder"
-msgstr ""
+msgstr "تهيئة المسجل"
#: frappe/public/js/print_format_builder/Field.vue:103
msgid "Configure columns for {0}"
-msgstr ""
+msgstr "قم بتهيئة الأعمدة لـ {0}"
#. Description of the 'Amended Documents' (Section Break) field in DocType
#. 'Document Naming Settings'
@@ -5249,7 +5301,7 @@ msgstr ""
#. Description of a DocType
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Configure various aspects of how document naming works like naming series, current counter."
-msgstr ""
+msgstr "قم بضبط جوانب مختلفة من كيفية عمل تسمية المستندات مثل تسمية السلاسل والعداد الحالي."
#: frappe/core/doctype/user/user.js:407 frappe/public/js/frappe/dom.js:342
#: frappe/www/update-password.html:66
@@ -5263,12 +5315,12 @@ msgstr "أكد"
#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
-msgstr ""
+msgstr "تأكيد الوصول"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101
msgid "Confirm Deletion of Account"
-msgstr ""
+msgstr "تأكيد حذف الحساب"
#: frappe/core/doctype/user/user.js:189
msgid "Confirm New Password"
@@ -5276,7 +5328,7 @@ msgstr "تأكيد كلمة المرور الجديدة"
#: frappe/www/update-password.html:55
msgid "Confirm Password"
-msgstr ""
+msgstr "تأكيد كلمة المرور"
#: frappe/templates/emails/data_deletion_approval.html:6
#: frappe/templates/emails/delete_data_confirmation.html:7
@@ -5299,7 +5351,7 @@ msgstr ""
#: frappe/integrations/doctype/connected_app/connected_app.js:20
msgid "Connect to {}"
-msgstr ""
+msgstr "اتصل بـ {}"
#. Label of the connected_app (Link) field in DocType 'Email Account'
#. Name of a DocType
@@ -5308,21 +5360,21 @@ 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 ""
+msgstr "المستخدم المتصل"
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "متصلا علبة QZ!"
#: frappe/public/js/frappe/request.js:36
msgid "Connection Lost"
-msgstr ""
+msgstr "انقطع الاتصال"
#: frappe/templates/pages/integrations/gcalendar-success.html:3
msgid "Connection Success"
@@ -5340,7 +5392,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
@@ -5354,12 +5406,12 @@ msgstr "سجل وحدة التحكم"
#: frappe/desk/doctype/console_log/console_log.py:24
msgid "Console Logs can not be deleted"
-msgstr ""
+msgstr "لا يمكن حذف سجلات وحدة التحكم"
#. Label of the constraints_section (Section Break) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Constraints"
-msgstr ""
+msgstr "قيود"
#. Name of a DocType
#: frappe/contacts/doctype/contact/contact.json
@@ -5397,14 +5449,14 @@ msgstr "الاتصال متزامنة مع جهات اتصال Google."
#: frappe/www/contact.html:4
msgid "Contact Us"
-msgstr ""
+msgstr "اتصل بنا"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/workspace/website/website.json
msgid "Contact Us Settings"
-msgstr ""
+msgstr "إعدادات الاتصال بنا"
#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us
#. Settings'
@@ -5415,15 +5467,15 @@ msgstr "خيارات الاتصال، مثل "الاستعلام المبي
#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Contacts"
-msgstr ""
+msgstr "جهات الاتصال"
#: frappe/utils/change_log.py:362
msgid "Contains {0} security fix"
-msgstr ""
+msgstr "يحتوي على {0} إصلاح أمني"
#: frappe/utils/change_log.py:360
msgid "Contains {0} security fixes"
-msgstr ""
+msgstr "يحتوي على {0} إصلاحات أمنية"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
@@ -5434,7 +5486,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5454,7 +5506,7 @@ msgstr "نوع المحتوى"
#: frappe/desk/doctype/workspace/workspace.py:88
msgid "Content data shoud be a list"
-msgstr ""
+msgstr "يجب أن تكون بيانات المحتوى عبارة عن قائمة"
#: frappe/website/doctype/web_page/web_page.js:91
msgid "Content type for building the page"
@@ -5481,7 +5533,7 @@ msgstr "سيناريو السياق"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:423
#: frappe/public/js/frappe/widgets/onboarding_widget.js:531
msgid "Continue"
-msgstr ""
+msgstr "استمر"
#. Label of the contributed (Check) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
@@ -5501,36 +5553,36 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "نسخ إلى الحافظة."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
-msgstr ""
+msgstr "تم نسخ {0} {1} إلى الحافظة"
#: 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:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
-msgstr ""
+msgstr "حصل خطأ أثناء النسخ إلى الحافظة"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
-msgstr ""
+msgstr "نسخ إلى الحافظة"
#: frappe/core/doctype/user/user.js:494
msgid "Copy token to clipboard"
-msgstr ""
+msgstr "انسخ الرمز المميز إلى الحافظة"
#. Label of the copyright (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -5545,15 +5597,15 @@ msgstr "لا يمكن تخصيص DocTypes الأساسية."
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "لا يمكن البحث عن الوحدات الأساسية {0} في البحث العالمي."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
-msgstr ""
+msgstr "النسخة الصحيحة:"
#: frappe/email/smtp.py:78
msgid "Could not connect to outgoing email server"
msgstr "لا يمكن الاتصال بخادم البريد الإلكتروني المنتهية ولايته"
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "لا يمكن أن تجد {0}"
@@ -5561,19 +5613,19 @@ msgstr "لا يمكن أن تجد {0}"
msgid "Could not map column {0} to field {1}"
msgstr "تعذر تعيين العمود {0} للحقل {1}"
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
-msgstr ""
+msgstr "تعذر تحليل الحقل: {0}"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
-msgstr ""
+msgstr "تعذر تشغيل متصفح كروميوم. راجع سجلات النظام لمزيد من التفاصيل."
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up:"
-msgstr ""
+msgstr "تعذر بدء التشغيل:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "تعذر الحفظ ، يرجى التحقق من البيانات التي أدخلتها"
@@ -5604,7 +5656,7 @@ msgstr "عد مرشح"
#: frappe/public/js/frappe/form/dashboard.js:509
msgid "Count of linked documents"
-msgstr ""
+msgstr "عدد المستندات المرتبطة"
#. Label of the counter (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -5623,11 +5675,11 @@ msgstr "عداد"
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
-msgstr ""
+msgstr "الدولة"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
-msgstr ""
+msgstr "رمز الدولة مطلوب"
#. Label of the country_name (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
@@ -5643,7 +5695,7 @@ msgstr "مقاطعة"
#: 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'
@@ -5652,40 +5704,41 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
-msgstr ""
+msgstr "انشاء"
#: frappe/core/doctype/doctype/doctype_list.js:103
msgid "Create & Continue"
-msgstr ""
+msgstr "إنشاء ومتابعة"
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49
msgid "Create Address"
-msgstr ""
+msgstr "إنشاء عنوان"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "إنشاء بطاقة"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "إنشاء مخطط"
#: frappe/public/js/form_builder/components/controls/TableControl.vue:62
msgid "Create Child Doctype"
-msgstr ""
+msgstr "إنشاء نوع مستند فرعي"
#. Label of the create_contact (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -5700,7 +5753,7 @@ msgstr "إنشاء الدخول"
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
msgid "Create Letter Head"
-msgstr ""
+msgstr "إنشاء ترويسة الرسالة"
#. Label of the create_log (Check) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -5713,22 +5766,22 @@ msgstr "إنشاء سجل"
msgid "Create New"
msgstr "انشاء جديد"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "انشاء جديد"
#: frappe/core/doctype/doctype/doctype_list.js:101
msgid "Create New DocType"
-msgstr ""
+msgstr "إنشاء نوع مستند جديد"
#: frappe/public/js/frappe/list/list_view_select.js:186
msgid "Create New Kanban Board"
-msgstr ""
+msgstr "إنشاء لوحة كانبان جديدة"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
-msgstr ""
+msgstr "إنشاء فلتر محفوظ"
#: frappe/core/doctype/user/user.js:271
msgid "Create User Email"
@@ -5736,47 +5789,47 @@ msgstr "انشاء بريد إلكتروني"
#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16
msgid "Create a New Format"
-msgstr ""
+msgstr "إنشاء تنسيق جديد"
#: frappe/public/js/frappe/form/reminders.js:9
msgid "Create a Reminder"
-msgstr ""
+msgstr "إنشاء تذكير"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
-msgstr ""
+msgstr "إنشاء جديد ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "إنشاء سجل جديد"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "انشاء جديد {0}"
#: frappe/www/login.html:162
msgid "Create a {0} Account"
-msgstr ""
+msgstr "أنشئ حسابًا {0}"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
-msgstr ""
+msgstr "إنشاء أو تعديل تنسيق الطباعة"
#: frappe/workflow/page/workflow_builder/workflow_builder.js:34
msgid "Create or Edit Workflow"
-msgstr ""
+msgstr "إنشاء أو تعديل سير العمل"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {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
@@ -5787,15 +5840,23 @@ msgstr "أنشأ"
#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Created At"
-msgstr ""
+msgstr "تم الإنشاء في"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "منشئه بواسطه"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr "من صنعك"
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr "تم إنشاؤه بواسطة {0}"
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "إنشاء الحقل المخصص {0} في {1}"
@@ -5806,7 +5867,7 @@ msgstr "إنشاء الحقل المخصص {0} في {1}"
#: frappe/public/js/frappe/model/model.js:125
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479
msgid "Created On"
-msgstr ""
+msgstr "منشئه في"
#: frappe/public/js/frappe/desk.js:517
#: frappe/public/js/frappe/views/treeview.js:393
@@ -5816,7 +5877,7 @@ msgstr "إنشاء {0}"
#: frappe/core/doctype/permission_type/permission_type.py:66
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41
msgid "Creation of this document is only permitted in developer mode."
-msgstr ""
+msgstr "لا يُسمح بإنشاء هذا المستند إلا في وضع المطور."
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -5834,19 +5895,19 @@ msgstr "تنسيق كرون"
#: 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 لأنواع الوظائف التي تتطلب تكرار Cron."
#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34
msgid "Crop"
-msgstr ""
+msgstr "اقتصاص"
#: frappe/public/js/frappe/form/grid_row_form.js:44
msgid "Ctrl + Down"
-msgstr ""
+msgstr "Ctrl + السهم لأسفل"
#: frappe/public/js/frappe/form/grid_row_form.js:44
msgid "Ctrl + Up"
-msgstr ""
+msgstr "Ctrl + لأعلى"
#: frappe/templates/includes/comments/comments.html:32
msgid "Ctrl+Enter to add comment"
@@ -5874,7 +5935,7 @@ msgstr "على Ctrl + Enter لإضافة تعليق"
#: frappe/geo/doctype/currency/currency.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Currency"
-msgstr ""
+msgstr "العملة"
#. Label of the currency_name (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
@@ -5889,26 +5950,26 @@ msgstr "دقة العملة"
#. Description of a DocType
#: frappe/geo/doctype/currency/currency.json
msgid "Currency list stores the currency value, its symbol and fraction unit"
-msgstr ""
+msgstr "تحتوي قائمة العملات على قيمة العملة ورمزها ووحدة الكسر الخاصة بها."
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Current"
-msgstr ""
+msgstr "تيار"
#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Current Job ID"
-msgstr ""
+msgstr "رقم الوظيفة الحالي"
#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Current Value"
-msgstr ""
+msgstr "القيمة الحالية"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "Current status"
-msgstr ""
+msgstr "الحالة الحالية"
#: frappe/public/js/frappe/form/form_viewers.js:5
msgid "Currently Viewing"
@@ -5949,13 +6010,13 @@ msgstr "عنوان ورل لقاعدة مخصصة"
#. Block'
#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Custom Block Name"
-msgstr ""
+msgstr "اسم الكتلة المخصصة"
#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
#. Label of the custom_blocks (Table) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Custom Blocks"
-msgstr ""
+msgstr "كتل مخصصة"
#. Label of the css (Code) field in DocType 'Print Format'
#. Label of the custom_css (Code) field in DocType 'Web Form'
@@ -5973,7 +6034,7 @@ msgstr "التكوين المخصص"
#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Custom Delimiters"
-msgstr ""
+msgstr "محددات مخصصة"
#. Name of a DocType
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -5983,13 +6044,13 @@ msgstr "DocPerm مخصص"
#. 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"
-msgstr ""
+msgstr "تم تجاوز الحد الأقصى لأنواع المستندات المخصصة"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "المستندات المخصصة"
@@ -6000,15 +6061,15 @@ msgstr "المستندات المخصصة"
msgid "Custom Field"
msgstr "حقل مخصص"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "يتم إنشاء الحقل المخصص {0} بواسطة المسؤول ولا يمكن حذفه إلا من خلال حساب المسؤول."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "يمكن إضافة الحقول المخصصة فقط إلى نوع DocType قياسي."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "لا يمكن إضافة الحقول المخصصة إلى DocTypes الأساسية."
@@ -6016,7 +6077,7 @@ msgstr "لا يمكن إضافة الحقول المخصصة إلى DocTypes ا
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Custom Footer"
-msgstr ""
+msgstr "تذييل مخصص"
#. Label of the custom_format (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -6027,14 +6088,14 @@ msgstr "تنسيق مخصص"
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Custom Group Search"
-msgstr ""
+msgstr "بحث مخصص للمجموعات"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122
msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com"
-msgstr ""
+msgstr "يجب أن يحتوي حقل البحث المخصص للمجموعات، في حال تعبئته، على عنصر نائب للمستخدم {0}، على سبيل المثال 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/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "مخصصةHTML"
@@ -6042,7 +6103,7 @@ msgstr "مخصصةHTML"
#. Name of a DocType
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "Custom HTML Block"
-msgstr ""
+msgstr "كتلة HTML مخصصة"
#. Label of the custom_html_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -6051,14 +6112,14 @@ msgstr "مخصصةHTML مساعدة"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114
msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered"
-msgstr ""
+msgstr "تم تحديد دليل LDAP مخصص، يرجى التأكد من إدخال \"سمة عضو مجموعة LDAP\" و\"فئة كائن المجموعة\"."
#. Label of the label (Data) field in DocType 'Web Form Field'
#. Label of the label (Data) field in DocType 'Web Form List Column'
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Custom Label"
-msgstr ""
+msgstr "ملصق مخصص"
#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
@@ -6080,7 +6141,7 @@ msgstr "تجاوزات مخصصة"
msgid "Custom Report"
msgstr "تقرير مخصص"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "تقارير مخصصة"
@@ -6103,15 +6164,15 @@ 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:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
-msgstr ""
+msgstr "تمت إعادة تسمية الحقل المخصص إلى {0} بنجاح."
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
-msgstr ""
+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'
@@ -6132,37 +6193,37 @@ msgstr "مخصص"
msgid "Customization"
msgstr "التخصيص"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
-msgstr ""
+msgstr "تم تجاهل التخصيصات"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "التخصيصات إعادة تعيين"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:Warning: Customizations from other modules will be excluded.
" +msgstr "" + #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Export the data without any header notes and column descriptions" -msgstr "" +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 +#: frappe/public/js/frappe/data_import/data_exporter.js:248 msgid "Export {0} records" msgstr "تصدير {0} السجلات" #: frappe/custom/doctype/customize_form/customize_form.js:263 msgid "Exported permissions will be force-synced on every migrate overriding any other customization." -msgstr "" +msgstr "سيتم مزامنة الأذونات المصدرة إجبارياً في كل عملية ترحيل، مما يلغي أي تخصيصات أخرى." #. Label of the expose_recipients (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json @@ -9667,14 +9772,14 @@ msgstr "كشف المستلمين" #: 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' @@ -9685,19 +9790,19 @@ msgstr "التعبير والاختياري" #. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "External" -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:440 +#: frappe/public/js/frappe/views/workspace/workspace.js:488 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' @@ -9709,7 +9814,7 @@ msgstr "الفيسبوك" #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Fail" -msgstr "" +msgstr "يفشل" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' @@ -9720,36 +9825,41 @@ msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Failed" -msgstr "" +msgstr "باءت بالفشل" #. Label of the failed_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Emails" -msgstr "" +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' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Failed Jobs" -msgstr "" +msgstr "الوظائف الفاشلة" + +#. Label of a number card in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Failed Login Attempts" +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 "" +msgstr "محاولات تسجيل الدخول الفاشلة (آخر 30 يومًا)" -#: frappe/model/workflow.py:362 +#: frappe/model/workflow.py:383 msgid "Failed Transactions" msgstr "المعاملات الفاشلة" #: frappe/utils/synchronization.py:46 msgid "Failed to aquire lock: {}. Lock may be held by another process." -msgstr "" +msgstr "فشل في الحصول على القفل: {}. قد يكون القفل محتجزًا بواسطة عملية أخرى." #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:362 msgid "Failed to change password." @@ -9762,7 +9872,7 @@ msgstr "فشل في إكمال الإعداد" #: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" -msgstr "" +msgstr "فشل في حساب نص الطلب: {}" #: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46 #: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48 @@ -9775,96 +9885,96 @@ msgstr "فشل فك الرمز المميز ، يرجى تقديم رمز ممي #: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" -msgstr "" +msgstr "فشل فك تشفير المفتاح {0}" #: frappe/desk/reportview.py:638 msgid "Failed to delete {0} documents: {1}" -msgstr "" +msgstr "فشل حذف {0} مستندات: {1}" #: frappe/core/doctype/rq_job/rq_job_list.js:42 msgid "Failed to enable scheduler: {0}" -msgstr "" +msgstr "فشل تفعيل المجدول: {0}" #: frappe/email/doctype/notification/notification.py:107 #: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" -msgstr "" +msgstr "فشل تقييم الشروط: {}" #: frappe/types/exporter.py:205 msgid "Failed to export python type hints" -msgstr "" +msgstr "فشل تصدير تلميحات أنواع بايثون" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 msgid "Failed to generate names from the series" -msgstr "" +msgstr "فشل في توليد أسماء من السلسلة" #: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 msgid "Failed to generate preview of series" -msgstr "" +msgstr "فشل إنشاء معاينة للمسلسل" #: frappe/handler.py:77 msgid "Failed to get method for command {0} with {1}" -msgstr "" +msgstr "فشل الحصول على طريقة للأمر {0} مع {1}" -#: frappe/api/v2.py:46 +#: frappe/api/v2.py:61 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 "فشل استيراد نوع المستند الافتراضي {}، هل ملف وحدة التحكم موجود؟" -#: frappe/utils/image.py:75 +#: frappe/utils/image.py:70 msgid "Failed to optimize image: {0}" -msgstr "" +msgstr "فشل تحسين الصورة: {0}" #: frappe/email/doctype/notification/notification.py:124 msgid "Failed to render message: {}" -msgstr "" +msgstr "فشل عرض الرسالة: {}" #: frappe/email/doctype/notification/notification.py:142 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:300 +#: frappe/email/doctype/email_queue/email_queue.py:301 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 "فشل استدعاء واجهة برمجة التطبيقات {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:485 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 @@ -9876,13 +9986,13 @@ msgstr "أيقونة المفضلة" msgid "Fax" msgstr "فاكس" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:51 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:72 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' @@ -9910,7 +10020,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." @@ -9918,7 +10028,7 @@ msgstr "جلب مستندات البحث العالمي الافتراضية." #: frappe/website/doctype/web_form/web_form.js:168 msgid "Fetching fields from {0}..." -msgstr "" +msgstr "جلب الحقول من {0}..." #. Label of the field (Select) field in DocType 'Assignment Rule' #. Label of the field (Select) field in DocType 'Document Naming Rule @@ -9936,8 +10046,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1909 +#: frappe/public/js/frappe/views/reports/query_report.js:237 +#: frappe/public/js/frappe/views/reports/query_report.js:1984 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9947,15 +10057,15 @@ msgstr "حقل" msgid "Field \"route\" is mandatory for Web Views" msgstr "حقل "الطريق" إلزامي للويب المشاهدات" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." -msgstr "" +msgstr "يُعد حقل \"العنوان\" إلزاميًا إذا تم تعيين \"حقل البحث في الموقع الإلكتروني\"." #: frappe/desk/doctype/bulk_update/bulk_update.js:17 msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "حقل \"قيمة\" إلزامي. يرجى تحديد قيمة ليتم تحديثها" -#: frappe/desk/search.py:255 +#: frappe/desk/search.py:262 msgid "Field{0} not found in {1}"
msgstr ""
@@ -9964,29 +10074,29 @@ msgstr ""
msgid "Field Description"
msgstr "وصف الحقل"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
-msgstr ""
+msgstr "الحقل مفقود"
#. Label of the field_name (Data) field in DocType 'Property Setter'
#. Label of the field_name (Select) field in DocType 'Kanban Board'
#: frappe/custom/doctype/property_setter/property_setter.json
#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Field Name"
-msgstr ""
+msgstr "اسم الحقل"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141
msgid "Field Orientation (Left-Right)"
-msgstr ""
+msgstr "اتجاه المجال (يسار-يمين)"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148
msgid "Field Orientation (Top-Down)"
-msgstr ""
+msgstr "التوجيه الميداني (من الأعلى إلى الأسفل)"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233
#: frappe/public/js/print_format_builder/utils.js:69
msgid "Field Template"
-msgstr ""
+msgstr "نموذج الحقل"
#. Label of the fieldtype (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
@@ -9996,7 +10106,7 @@ msgstr "نوع الحقل"
#: frappe/desk/reportview.py:204
msgid "Field not permitted in query"
-msgstr ""
+msgstr "الحقل غير مسموح به في الاستعلام"
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
@@ -10012,25 +10122,25 @@ msgstr "حقل لتعقب"
msgid "Field type cannot be changed for {0}"
msgstr "لا يمكن تغيير نوع الحقل ل {0}"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
-msgstr ""
+msgstr "الحقل {0} غير موجود في {1}"
#: frappe/desk/form/meta.py:187
msgid "Field {0} is referring to non-existing doctype {1}."
-msgstr ""
+msgstr "يشير الحقل {0} إلى نوع المستند غير الموجود {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
-msgstr ""
+msgstr "يجب أن يكون الحقل {0} حقلاً افتراضياً لدعم نوع المستند الافتراضي."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "الحقل {0} غير موجود."
#: frappe/email/doctype/notification/notification.py:564
msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
-msgstr ""
+msgstr "الحقل {0} في المستند {1} ليس حقل رقم جوال ولا رابط عميل أو مستخدم"
#. Label of the fieldname (Data) field in DocType 'Report Column'
#. Label of the fieldname (Data) field in DocType 'Report Filter'
@@ -10046,24 +10156,24 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "اسم الحقل"
#: frappe/core/doctype/doctype/doctype.py:272
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
-msgstr ""
+msgstr "اسم الحقل '{0}' يتعارض مع {1} من الاسم {2} في {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
-msgstr ""
+msgstr "يجب أن يكون اسم الحقل {0} موجودًا لتمكين التسمية التلقائية"
#: frappe/database/schema.py:131 frappe/database/schema.py:408
msgid "Fieldname is limited to 64 characters ({0})"
-msgstr "اسم الحقل محدد ب 64 حرفfilters. result = [result], or for old style data = [columns], [result]"
-msgstr "يمكن الوصول إلى filters عبر filters .result = [result] ، أو data = [columns], [result] النمط القديم data = [columns], [result]"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter_list.js:133
msgid "Filters {0}"
-msgstr ""
+msgstr "الفلاتر {0}"
#: frappe/public/js/frappe/views/reports/report_view.js:1423
msgid "Filters:"
-msgstr ""
+msgstr "عوامل التصفية:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
-msgstr ""
+msgstr "ابحث عن '{0}' في ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "البحث عن {0} في {1}"
@@ -10413,7 +10528,7 @@ msgstr "تم الانتهاء من"
#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Finished At"
-msgstr ""
+msgstr "انتهى في"
#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
#. Label of the first_day_of_the_week (Select) field in DocType 'System
@@ -10421,7 +10536,7 @@ msgstr ""
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "First Day of the Week"
-msgstr ""
+msgstr "اليوم الأول من الأسبوع"
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
@@ -10449,7 +10564,7 @@ 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
@@ -10489,11 +10604,11 @@ msgstr "دقة الرقم العشري"
msgid "Fold"
msgstr "طية"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "لا يمكن أن تكون الطية في نهاية النموذج"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "يجب أن تأتي أضعاف قبل فاصل القسم"
@@ -10507,7 +10622,7 @@ 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)"
@@ -10520,38 +10635,38 @@ 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:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "إتبع"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
-msgstr ""
+msgstr "يليه"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:134
msgid "Following Report Filters have missing values:"
-msgstr ""
+msgstr "تحتوي عوامل تصفية التقارير على قيم مفقودة:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
-msgstr ""
+msgstr "المستند التالي {0}"
#: frappe/website/doctype/web_form/web_form.py:109
msgid "Following fields are missing:"
msgstr "الحقول التالية مفقودة:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
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
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "الحقول التالية والقيم المفقودة:"
@@ -10597,38 +10712,38 @@ msgstr "تذييل الصفحة"
#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer \"Powered By\""
-msgstr ""
+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 "تذييل HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
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'
@@ -10644,7 +10759,7 @@ 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
@@ -10657,7 +10772,7 @@ msgstr "قالب التذييل"
msgid "Footer Template Values"
msgstr "قيم قالب التذييل"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10670,7 +10785,7 @@ msgstr "سيعرض تذييل الصفحة بشكل صحيح في PDF فقط"
#. Label of the for_doctype (Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "For DocType"
-msgstr ""
+msgstr "لنوع المستند"
#. Description of the 'Row Name' (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -10680,7 +10795,7 @@ msgstr "لإجراء DocType Link / DocType"
#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "For Document"
-msgstr ""
+msgstr "للمستند"
#: frappe/core/doctype/user_permission/user_permission_list.js:155
msgid "For Document Type"
@@ -10690,15 +10805,6 @@ msgstr "لنوع المستند"
msgid "For Example: {} Open"
msgstr "على سبيل المثال: {} Open"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10722,20 +10828,16 @@ msgstr "للقيمة"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
-msgstr "للمقارنة ، استخدم> 5 ، <10 أو = 324. للنطاقات ، استخدم 5:10 (للقيم بين 5 و 10)."
-
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
-msgstr ""
+msgstr "على سبيل المثال:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "على سبيل المثال: إذا كنت تريد تضمين الوثيقة ID، استخدم {0}"
@@ -10747,7 +10849,7 @@ msgstr "على سبيل المثال: {} فتح"
#. Description of the 'Client script' (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "للحصول على المساعدة ، راجع أمثلة و API Script"
+msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
@@ -10757,13 +10859,13 @@ msgstr "لمزيد من المعلومات ، {0}."
#. 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 "لتحديث، يمكنك تحديث الأعمدة انتقائية فقط."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "ل {0} في {1} مستوى في {2} في {3} الصف"
@@ -10782,11 +10884,11 @@ msgstr "فرض"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Force Re-route to Default View"
-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'
@@ -10798,7 +10900,7 @@ 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?"
@@ -10813,22 +10915,23 @@ msgstr "هل نسيت كلمة المرور؟"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: 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'
@@ -10848,12 +10951,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
@@ -10886,7 +10989,7 @@ msgstr "إلى الأمام"
#. Route Redirect'
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Forward Query Parameters"
-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
@@ -10913,11 +11016,11 @@ msgstr "فرابي"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Frappe Blog"
-msgstr ""
+msgstr "مدونة فرابيه"
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Frappe Forum"
-msgstr ""
+msgstr "منتدى فرابيه"
#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Frappe Framework"
@@ -10925,36 +11028,36 @@ 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 "خطأ في مصادقة بريد Frappe"
#. 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 باستخدام المكونات"
#: 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'
@@ -10983,44 +11086,44 @@ 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'
#: 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 ""
+msgstr "من"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
-msgstr ""
+msgstr "من"
#. Label of the from_attach_field (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "From Attach Field"
-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 "من حقل التاريخ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "من نوع المستند"
#. Option for the 'Attach Files' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "From Field"
-msgstr ""
+msgstr "من الميدان"
#. Label of the sender_full_name (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -11030,11 +11133,11 @@ 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
@@ -11054,7 +11157,7 @@ msgstr "ممتلئ"
msgid "Full Name"
msgstr "الاسم الكامل"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "صفحة كاملة"
@@ -11067,7 +11170,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "وظيفة"
@@ -11076,17 +11179,17 @@ msgstr "وظيفة"
msgid "Function Based On"
msgstr "وظيفة على أساس"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
-msgstr ""
+msgstr "الدالة {0} غير مدرجة في القائمة البيضاء."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
-msgstr ""
+msgstr "تتطلب الدالة {0} وسائط، ولكن لم يتم توفير أي منها."
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further sub-groups can only be created under records marked as 'Group'"
-msgstr ""
+msgstr "لا يمكن إنشاء مجموعات فرعية إضافية إلا ضمن السجلات المصنفة على أنها \"مجموعة\"."
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11095,7 +11198,7 @@ msgstr "FW: {0}"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "GET"
-msgstr ""
+msgstr "يحصل"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -11105,12 +11208,12 @@ msgstr "بريد جوجل"
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "GNU Affero General Public License"
-msgstr ""
+msgstr "رخصة جنو أفيرو العامة"
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "GNU General Public License"
-msgstr ""
+msgstr "رخصة جنو العمومية العامة"
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -11120,7 +11223,7 @@ msgstr "جانت"
#: frappe/public/js/frappe/list/base_list.js:206
msgid "Gantt View"
-msgstr ""
+msgstr "عرض جانت"
#. Label of the gender (Link) field in DocType 'Contact'
#. Name of a DocType
@@ -11145,29 +11248,29 @@ msgstr "عام"
msgid "Generate Keys"
msgstr "توليد مفاتيح"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "توليد تقرير جديد"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
-msgstr ""
+msgstr "توليد كلمة مرور عشوائية"
#. Label of the generate_separate_documents_for_each_assignee (Check) field in
#. DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Generate Separate Documents For Each Assignee"
-msgstr ""
+msgstr "إنشاء مستندات منفصلة لكل مُحال إليه"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
-msgstr ""
+msgstr "إنشاء رابط تتبع"
#. 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'
@@ -11181,7 +11284,7 @@ msgstr "تحديد الموقع الجغرافي"
#. Name of a DocType
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Geolocation Settings"
-msgstr ""
+msgstr "إعدادات تحديد الموقع الجغرافي"
#: frappe/email/doctype/notification/notification.js:236
msgid "Get Alerts for Today"
@@ -11189,7 +11292,7 @@ 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
@@ -11202,31 +11305,31 @@ msgstr "احصل على الحقول"
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Get Header and Footer wkhtmltopdf variables"
-msgstr ""
+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"
-msgstr ""
+msgstr "الحصول على إعدادات OpenID"
#: frappe/www/printview.html:22
msgid "Get PDF"
-msgstr ""
+msgstr "احصل على ملف PDF"
#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Get a preview of generated names with a series."
-msgstr ""
+msgstr "احصل على معاينة للأسماء التي تم إنشاؤها باستخدام سلسلة."
#. Description of the 'Email Threads on Assigned Document' (Check) field in
#. DocType 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Get notified when an email is received on any of the documents assigned to you."
-msgstr ""
+msgstr "سيتم إعلامك عند استلام بريد إلكتروني بخصوص أي من المستندات المخصصة لك."
#. Description of the 'User Image' (Attach Image) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -11246,7 +11349,7 @@ msgstr "جت هب (GITHUB)"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Github flavoured markdown syntax"
-msgstr ""
+msgstr "صيغة Markdown بنكهة GitHub"
#. Name of a DocType
#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
@@ -11271,7 +11374,7 @@ msgstr "اختصارات العالمية"
msgid "Global Unsubscribe"
msgstr "إلغاء الاشتراك العالمية"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "اذهب"
@@ -11282,7 +11385,7 @@ msgstr "عد"
#: frappe/desk/doctype/notification_settings/notification_settings.js:17
msgid "Go to Notification Settings List"
-msgstr ""
+msgstr "انتقل إلى قائمة إعدادات الإشعارات"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -11291,11 +11394,11 @@ msgstr "انتقل إلى صفحة"
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
-msgstr ""
+msgstr "انتقل إلى سير العمل"
#: frappe/desk/doctype/workspace/workspace.js:18
msgid "Go to Workspace"
-msgstr ""
+msgstr "انتقل إلى مساحة العمل"
#: frappe/public/js/frappe/form/form.js:145
msgid "Go to next record"
@@ -11312,7 +11415,7 @@ msgstr "انتقل إلى المستند"
#. Description of the 'Success URL' (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Go to this URL after completing the form"
-msgstr ""
+msgstr "انتقل إلى هذا الرابط بعد إكمال النموذج"
#: frappe/core/doctype/doctype/doctype.js:54
#: frappe/custom/doctype/client_script/client_script.js:12
@@ -11325,13 +11428,13 @@ msgstr "اذهب إلى {0}"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42
#: frappe/workflow/doctype/workflow/workflow.js:44
msgid "Go to {0} List"
-msgstr ""
+msgstr "انتقل إلى قائمة {0}"
#: frappe/core/doctype/page/page.js:11
msgid "Go to {0} Page"
msgstr "انتقل إلى صفحة {0}"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "الهدف"
@@ -11350,7 +11453,7 @@ msgstr "جوجل تحليلات ID"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics anonymise IP"
-msgstr ""
+msgstr "يقوم جوجل أناليتكس بإخفاء عنوان IP"
#. Label of the sb_00 (Section Break) field in DocType 'Event'
#. Label of the google_calendar (Link) field in DocType 'Event'
@@ -11439,13 +11542,13 @@ msgstr "محرك جوجل"
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker"
-msgstr ""
+msgstr "أداة اختيار جوجل درايف"
#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
-msgstr ""
+msgstr "تم تفعيل أداة اختيار جوجل درايف"
#. Label of the font (Data) field in DocType 'Print Format'
#. Label of the google_font (Data) field in DocType 'Website Theme'
@@ -11458,7 +11561,7 @@ msgstr "خط جوجل"
#. Label of the google_meet_link (Small Text) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
-msgstr ""
+msgstr "رابط جوجل ميت"
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
@@ -11489,44 +11592,44 @@ 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'
@@ -11535,13 +11638,13 @@ 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
@@ -11557,19 +11660,19 @@ msgstr "مجموعة حسب النوع"
msgid "Group By field is required to create a dashboard chart"
msgstr "حقل تجميع حسب مطلوب لإنشاء مخطط لوحة القيادة"
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
-msgstr ""
+msgstr "يجب أن تكون عبارة Group By سلسلة نصية"
#. 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 ""
+msgstr "قم بتجميع أنواع المستندات المخصصة الخاصة بك ضمن وحدات نمطية."
#: frappe/public/js/frappe/ui/group_by/group_by.js:428
msgid "Grouped by {0}"
@@ -11578,12 +11681,12 @@ msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "HEAD"
-msgstr ""
+msgstr "رأس"
#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "HERE"
-msgstr ""
+msgstr "هنا"
#. Option for the 'Time Format' (Select) field in DocType 'Language'
#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
@@ -11626,7 +11729,7 @@ msgstr "HH: MM: SS"
#: 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'
@@ -11637,6 +11740,10 @@ msgstr ""
msgid "HTML Editor"
msgstr "محرر HTML"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr "رسالة HTML"
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11649,7 +11756,7 @@ 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
@@ -11661,7 +11768,7 @@ msgstr "نصف"
#: 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
@@ -11672,7 +11779,7 @@ 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
@@ -11687,7 +11794,7 @@ 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
@@ -11698,7 +11805,7 @@ msgstr "له صلاحية"
#. 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
@@ -11725,19 +11832,19 @@ msgstr "العنوان الرأسي"
msgid "Header HTML"
msgstr "رأس HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "تعيين HTML رأس من المرفق {0}"
#. Label of the header_icon (Icon) field in DocType 'Workspace Sidebar'
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Header Icon"
-msgstr ""
+msgstr "أيقونة رأس الصفحة"
#. 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
@@ -11748,11 +11855,11 @@ 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."
-msgstr ""
+msgstr "يمكن استخدام البرامج النصية الخاصة بالرأس/التذييل لإضافة سلوكيات ديناميكية."
#. Label of the webhook_headers (Table) field in DocType 'Webhook'
#. Label of the headers (Code) field in DocType 'Webhook Request Log'
@@ -11761,9 +11868,9 @@ msgstr ""
msgid "Headers"
msgstr "الترويسات"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
-msgstr ""
+msgstr "يجب أن تكون العناوين عبارة عن قاموس"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -11786,7 +11893,7 @@ msgstr "خريطة الحرارة"
#: frappe/templates/emails/new_user.html:2
msgid "Hello"
-msgstr ""
+msgstr "مرحبًا"
#: frappe/templates/emails/user_invitation.html:2
#: frappe/templates/emails/user_invitation_cancelled.html:2
@@ -11798,11 +11905,11 @@ msgstr "مرحبًا,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
-msgstr ""
+msgstr "مساعدة"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -11814,7 +11921,7 @@ 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
@@ -11836,12 +11943,12 @@ msgstr "مساعدة HTML"
#. 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 \"/desk/note/[Note Name]\" as the Link URL. (don't use \"http://\")"
-msgstr ""
+msgstr "مساعدة: للربط بسجل آخر في النظام، استخدم \"/desk/note/[اسم الملاحظة]\" كعنوان URL للرابط. (لا تستخدم \"http://\")."
#. 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
@@ -11851,11 +11958,11 @@ 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:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
-msgstr ""
+msgstr "إليك رابط التتبع الخاص بك"
#: frappe/www/qrcode.html:9
msgid "Hi {0}"
@@ -11887,10 +11994,10 @@ msgstr "مخفي"
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hidden Fields"
-msgstr ""
+msgstr "الحقول الخفية"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include: /project/<name>"
-msgstr "تعيين معلمات الطريق في متغيرات النموذج. مثال /project/<name>"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:923
msgid "Mapping column {0} to field {1}"
@@ -15547,32 +15706,32 @@ 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
msgid "Margin Left"
-msgstr ""
+msgstr "الهامش الأيسر"
#. Label of the margin_right (Float) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Right"
-msgstr ""
+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'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "MariaDB Variables"
-msgstr ""
+msgstr "متغيرات MariaDB"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
-msgstr ""
+msgstr "وضع علامة \"مقروءة\" على الكل"
#: frappe/core/doctype/communication/communication.js:78
#: frappe/core/doctype/communication/communication_list.js:19
@@ -15617,20 +15776,23 @@ msgstr "محددة كدعايات"
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
msgid "Marketing Manager"
-msgstr ""
+msgstr "مدير التسويق"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "قناع"
#: frappe/desk/page/setup_wizard/install_fixtures.py:50
msgid "Master"
-msgstr ""
+msgstr "سيد"
#. Description of the 'Limit' (Int) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
@@ -15647,12 +15809,12 @@ 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 ""
+msgstr "الحد الأقصى لحجم الملف (ميغابايت)"
#. Label of the max_height (Data) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Max Height"
-msgstr ""
+msgstr "أقصى ارتفاع"
#. Label of the max_length (Int) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -15662,7 +15824,7 @@ msgstr "الحد الاقصى للطول"
#. Label of the max_report_rows (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max Report Rows"
-msgstr ""
+msgstr "أقصى عدد من صفوف التقرير"
#. Label of the max_value (Int) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -15672,21 +15834,21 @@ msgstr "القيمة القصوى"
#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Max attachment size"
-msgstr ""
+msgstr "أقصى حجم للملحق"
#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max auto email report per user"
-msgstr ""
+msgstr "الحد الأقصى لتقرير البريد الإلكتروني التلقائي لكل مستخدم"
#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max signups allowed per hour"
-msgstr ""
+msgstr "الحد الأقصى المسموح به للتسجيلات في الساعة"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "عرض ماكس لنوع العملة هو 100px في الصف {0}"
@@ -15697,61 +15859,68 @@ msgstr "أقصى"
#: frappe/core/doctype/file/file.py:342
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
-msgstr ""
+msgstr "تم الوصول إلى الحد الأقصى للربط {0} لـ {1} {2}."
#: 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:689
msgid "Maximum {0} rows allowed"
msgstr "الحد الأقصى {0} الصفوف المسموح"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "أنا"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: 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:210
#: 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'
#: 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 "استخدام الذاكرة بالميغابايت"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -15764,19 +15933,19 @@ msgstr "أشير"
msgid "Mentions"
msgstr "يذكر"
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "الخيارات"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
-msgstr ""
+msgstr "دمج مع الحالي"
#: frappe/utils/nestedset.py:320
msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node"
-msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو فرع وفرع{0} placeholder to insert the OTP."
@@ -17893,7 +18070,7 @@ msgstr ""
#: frappe/twofactor.py:459
msgid "OTP Secret Reset - {0}"
-msgstr ""
+msgstr "إعادة تعيين رمز التحقق لمرة واحدة - {0}"
#: frappe/twofactor.py:478
msgid "OTP Secret has been reset. Re-registration will be required on next login."
@@ -17905,15 +18082,15 @@ msgstr "تمت إعادة تعيين سر مكتب المدعي العام. سو
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
-msgstr ""
+msgstr "لم يكتمل إعداد رمز التحقق لمرة واحدة (OTP) باستخدام تطبيق OTP. يرجى الاتصال بالمسؤول."
#. 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 "الأحداث"
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -17933,29 +18110,29 @@ msgstr "مكتب 365"
#: frappe/core/doctype/server_script/server_script.js:36
msgid "Official Documentation"
-msgstr ""
+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 ""
+msgstr "إزاحة X"
#. Label of the offset_y (Int) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset Y"
-msgstr ""
+msgstr "إزاحة Y"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
-msgstr ""
+msgstr "يجب أن يكون الإزاحة عددًا صحيحًا غير سالب"
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "كلمة المرور القديمة"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
-msgstr ""
+msgstr "أسماء الحقول القديمة والجديدة هي نفسها."
#. Description of the 'Number of Backups' (Int) field in DocType 'System
#. Settings'
@@ -17967,72 +18144,72 @@ msgstr "سيتم حذف النسخ الاحتياطية القديمة تلقا
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Oldest Unscheduled Job"
-msgstr ""
+msgstr "أقدم وظيفة غير مجدولة"
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "On Hold"
-msgstr ""
+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
msgid "On Payment Charge Processed"
-msgstr ""
+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 ""
+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 ""
+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 ""
+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 ""
+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 ""
+msgstr "عند تحديد هذا الخيار، سيتم التعامل مع عنوان URL كسلسلة قالب Jinja"
#: frappe/public/js/frappe/ui/filters/filter.js:66
#: frappe/public/js/frappe/ui/filters/filter.js:72
msgid "On or After"
-msgstr ""
+msgstr "في أو بعد"
#: frappe/public/js/frappe/ui/filters/filter.js:65
#: frappe/public/js/frappe/ui/filters/filter.js:71
msgid "On or Before"
-msgstr ""
+msgstr "في أو قبل"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
-msgstr ""
+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
@@ -18042,7 +18219,7 @@ msgstr "إذن على متن الطائرة"
#. Label of the onboarding_status (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Onboarding Status"
-msgstr ""
+msgstr "حالة الانضمام"
#. Name of a DocType
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -18056,7 +18233,7 @@ msgstr "خريطة خطوة Onboarding"
#: 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
@@ -18064,9 +18241,9 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "بمجرد إرسالها ، لا يمكن تغيير المستندات المقدمة. يمكن إلغاؤها وتعديلها فقط."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
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"
@@ -18080,11 +18257,11 @@ msgstr "كلمة المرور لمرة واحدة (OTP) رمز التسجيل م
msgid "One of"
msgstr "واحد من"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "فقط 200 إدراج سمحت في طلب واحد"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "يمكن فقط للمسؤول حذف قائمة انتظار البريد الإلكتروني"
@@ -18105,7 +18282,7 @@ msgstr "يسمح فقط للمسؤول باستخدام Recorder"
msgid "Only Allow Edit For"
msgstr "السماح بالتحرير فقط لـ"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "الخيارات المسموح بها لحقل البيانات فقط هي:"
@@ -18116,31 +18293,31 @@ msgstr "فقط إرسال السجلات التي تم تحديثها في آخ
#: frappe/core/doctype/file/file.py:167
msgid "Only System Managers can make this file public."
-msgstr ""
+msgstr "لا يمكن إلا لمديري النظام جعل هذا الملف عامًا."
#: frappe/desk/doctype/workspace/workspace.js:32
msgid "Only Workspace Manager can edit public workspaces"
-msgstr ""
+msgstr "لا يمكن تعديل مساحات العمل العامة إلا بواسطة مدير مساحة العمل"
#. Label of the only_allow_system_managers_to_upload_public_files (Check) field
#. in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Only allow System Managers to upload public files"
-msgstr ""
+msgstr "لا تسمح إلا لمديري النظام بتحميل الملفات العامة"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
-msgstr ""
+msgstr "يُسمح بتصدير التخصيصات فقط في وضع المطور."
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
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."
@@ -18153,11 +18330,11 @@ msgstr "يمكن تعيين {0} واحد فقط على أنه أساسي."
#: frappe/desk/reportview.py:360
msgid "Only reports of type Report Builder can be deleted"
-msgstr ""
+msgstr "لا يمكن حذف سوى التقارير من نوع \"منشئ التقارير\"."
#: frappe/desk/reportview.py:331
msgid "Only reports of type Report Builder can be edited"
-msgstr ""
+msgstr "لا يمكن تعديل سوى التقارير من نوع \"منشئ التقارير\"."
#: frappe/custom/doctype/customize_form/customize_form.py:131
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
@@ -18165,19 +18342,19 @@ msgstr "يُسمح بتخصيص أنواع DocTypes القياسية فقط من
#: frappe/model/delete_doc.py:283
msgid "Only the Administrator can delete a standard DocType."
-msgstr ""
+msgstr "لا يمكن حذف نوع المستند القياسي إلا من قبل المسؤول."
#: 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:108
msgid "Only {0} emailed reports are allowed per user."
-msgstr ""
+msgstr "يُسمح فقط بإرسال {0} تقرير عبر البريد الإلكتروني لكل مستخدم."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
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'
@@ -18191,15 +18368,15 @@ 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"
msgid "Open"
-msgstr ""
+msgstr "فتح"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18209,7 +18386,7 @@ msgstr "افتح شريط ممتاز"
#: 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 "التواصل المفتوح"
#: frappe/templates/emails/new_notification.html:10
msgid "Open Document"
@@ -18235,9 +18412,13 @@ msgstr "افتح مستند مرجعي"
msgid "Open Settings"
msgstr "أفتح الإعدادات"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr "افتح الشريط الجانبي"
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
-msgstr ""
+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
@@ -18247,32 +18428,32 @@ msgstr "افتح URL في علامة تبويب جديدة"
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
-msgstr ""
+msgstr "افتح نافذة حوار تحتوي على حقول إلزامية لإنشاء سجل جديد بسرعة. يجب أن تحتوي النافذة على حقل إلزامي واحد على الأقل."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "فتح وحدة نمطية أو أداة"
#: frappe/public/js/frappe/ui/keyboard.js:367
msgid "Open console"
-msgstr ""
+msgstr "وحدة تحكم مفتوحة"
#: frappe/public/js/print_format_builder/Preview.vue:17
msgid "Open in a new tab"
-msgstr ""
+msgstr "افتح في علامة تبويب جديدة"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
-msgstr ""
+msgstr "افتح في علامة تبويب جديدة"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "فتح عنصر القائمة"
#: frappe/core/doctype/error_log/error_log.js:15
msgid "Open reference document"
-msgstr ""
+msgstr "افتح المستند المرجعي"
#: frappe/www/qrcode.html:13
msgid "Open your authentication app on your mobile phone."
@@ -18280,32 +18461,32 @@ msgstr "افتح تطبيق المصادقة على هاتفك الجوال."
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "مفتوحة {0}"
#. Label of the openid_configuration (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "OpenID Configuration"
-msgstr ""
+msgstr "تكوين OpenID"
#: frappe/integrations/doctype/connected_app/connected_app.js:15
msgid "OpenID Configuration fetched successfully!"
-msgstr ""
+msgstr "تم جلب إعدادات OpenID بنجاح!"
#. 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
@@ -18315,25 +18496,25 @@ 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:2219
msgid "Operator must be one of {0}"
msgstr "يجب أن يكون المشغل واحدا من {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
-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:31
msgid "Optimize"
-msgstr ""
+msgstr "تحسين"
#: frappe/core/doctype/file/file.js:110
msgid "Optimizing image..."
-msgstr ""
+msgstr "جارٍ تحسين الصورة..."
#: frappe/custom/doctype/custom_field/custom_field.js:100
msgid "Option 1"
@@ -18347,7 +18528,7 @@ msgstr "الخيار 2"
msgid "Option 3"
msgstr "الخيار 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "الخيار {0} للحقل {1} ليس جدولًا فرعيًا"
@@ -18381,7 +18562,7 @@ msgstr "اختياري: سيتم إرسال التنبية إذا كان هذا
msgid "Options"
msgstr "خيارات"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "'الارتباط الحيوي \"نوع من الخيارات الميدانية يجب أن يشير إلى رابط حقل آخر مع خيارات باسم' DOCTYPE '"
@@ -18390,23 +18571,23 @@ msgstr "'الارتباط الحيوي \"نوع من الخيارات الميد
msgid "Options Help"
msgstr "خيارات مساعدة"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
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 "خيارات للاختيار. كل خيار على سطر جديد."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "يجب تعيين خيارات {0} قبل تعيين القيمة الافتراضية."
#: frappe/public/js/form_builder/store.js:182
msgid "Options is required for field {0} of type {1}"
-msgstr ""
+msgstr "الخيارات مطلوبة للحقل {0} من النوع {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "خيارات لم يتم تعيين لحقل الرابط {0}"
@@ -18415,16 +18596,16 @@ msgstr "خيارات لم يتم تعيين لحقل الرابط {0}"
#: 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:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
-msgstr ""
+msgstr "يجب أن يكون ترتيب الطلب سلسلة نصية"
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
@@ -18442,10 +18623,14 @@ msgstr "عنوان تاريخ المنظمة"
msgid "Orientation"
msgstr "توجيه"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr "إبداعي"
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
-msgstr ""
+msgstr "القيمة الأصلية"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#. Option for the 'Type' (Select) field in DocType 'Communication'
@@ -18462,41 +18647,41 @@ 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 "البريد الالكتروني الصادر غير صحيحReference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "ProTip: إضافة Reference: {{ reference_doctype }} {{ reference_name }} لإرسال وثيقة مرجعية"
+msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
-msgstr ""
+msgstr "يتابع"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "المتابعة على أية حال"
@@ -20281,12 +20466,12 @@ msgstr ""
#. Group in User's connections
#: frappe/core/doctype/user/user.json
msgid "Profile"
-msgstr ""
+msgstr "حساب تعريفي"
#. Label of a field in the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "Profile Picture"
-msgstr ""
+msgstr "صورة الملف الشخصي"
#. Success message of the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
@@ -20295,19 +20480,19 @@ msgstr "تم تحديث المَلف الشخصي بنجاح."
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
-msgstr ""
+msgstr "تقدم"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
-msgstr ""
+msgstr "مشروع"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: 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'
@@ -20326,7 +20511,7 @@ 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 أو Field القياسية"
#. Label of the property_type (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -20339,11 +20524,11 @@ 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:533
msgid "Protected File"
-msgstr ""
+msgstr "ملف محمي"
#. Description of the 'Allowed File Extensions' (Small Text) field in DocType
#. 'System Settings'
@@ -20374,7 +20559,7 @@ msgstr "اسم المزود"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "جمهور"
@@ -20382,11 +20567,11 @@ msgstr "جمهور"
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Public Files (MB)"
-msgstr ""
+msgstr "الملفات العامة (ميغابايت)"
#: frappe/templates/emails/file_backup_notification.html:5
msgid "Public Files Backup:"
-msgstr ""
+msgstr "النسخ الاحتياطي للملفات العامة:"
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
@@ -20414,22 +20599,22 @@ msgstr "نشرت"
#. Label of a number card in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Published Web Forms"
-msgstr ""
+msgstr "نماذج الويب المنشورة"
#. Label of a number card in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Published Web Pages"
-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'
@@ -20455,43 +20640,43 @@ msgstr "سحبت من اتصالات جوجل"
#: 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
msgid "Push Notifications"
-msgstr ""
+msgstr "الإشعارات الفورية"
#. Label of the push_to_google_calendar (Check) field in DocType 'Google
#. Calendar'
@@ -20507,14 +20692,14 @@ msgstr "اضغط على جهات اتصال Google"
#: 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'
#. Option for the 'Condition Type' (Select) field in DocType 'Notification'
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/email/doctype/notification/notification.json
msgid "Python"
-msgstr ""
+msgstr "بايثون"
#: frappe/www/qrcode.html:3
msgid "QR Code"
@@ -20524,9 +20709,9 @@ msgstr "رمز الاستجابة السريعة"
msgid "QR Code for Login Verification"
msgstr "رمز الاستجابة السريعة لتسجيل الدخول"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
-msgstr ""
+msgstr "فشل درج QZ:"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
@@ -20538,7 +20723,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/public/js/frappe/utils/common.js:410
msgid "Quarterly"
-msgstr ""
+msgstr "فصلي"
#. Label of the query (Data) field in DocType 'Recorder Query'
#. Label of the query (Code) field in DocType 'Report'
@@ -20563,7 +20748,7 @@ msgstr "خيارات الاستعلام"
#: 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
@@ -20573,48 +20758,48 @@ msgstr "الاستعلام عن"
#: frappe/core/doctype/recorder/recorder.py:188
msgid "Query analysis complete. Check suggested indexes."
-msgstr ""
+msgstr "اكتمل تحليل الاستعلام. تحقق من الفهارس المقترحة."
#: frappe/utils/safe_exec.py:497
msgid "Query must be of SELECT or read-only WITH type."
-msgstr ""
+msgstr "يجب أن يكون الاستعلام من نوع SELECT أو نوع 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:738
+#: frappe/utils/background_jobs.py:737
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:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "يجب أن تكون قائمة الانتظار واحدة من {0}"
#. Label of the queue (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue(s)"
-msgstr ""
+msgstr "قائمة الانتظار (قوائم الانتظار)"
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
@@ -20628,16 +20813,16 @@ 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:186
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"
@@ -20646,38 +20831,38 @@ 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 ""
+msgstr "الطوابير"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
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:314
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'
@@ -20688,29 +20873,29 @@ msgstr "سجل معلومات RAW"
#. Name of a DocType
#: frappe/core/doctype/rq_job/rq_job.json
msgid "RQ Job"
-msgstr ""
+msgstr "وظيفة RQ"
#. Name of a DocType
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "RQ Worker"
-msgstr ""
+msgstr "عامل RQ"
#. 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 "عشوائي"
#: frappe/website/report/website_analytics/website_analytics.js:20
msgid "Range"
-msgstr ""
+msgstr "نطاق"
#. Label of the rate_limiting_section (Section Break) field in DocType 'Server
#. Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Rate Limiting"
-msgstr ""
+msgstr "تحديد معدل الاستخدام"
#. Label of the rate_limit_email_link_login (Int) field in DocType 'System
#. Settings'
@@ -20727,7 +20912,7 @@ 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 "تقييم"
#. Label of the raw_commands (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -20740,6 +20925,15 @@ msgstr "أوامر الخام"
msgid "Raw Email"
msgstr "البريد الإلكتروني الخام"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr "لا يمكن استخدام لغة HTML الخام إلا مع قوالب البريد الإلكتروني التي تم تحديد خيار \"استخدام HTML\" فيها. سيتم إرسال بريد إلكتروني بنص عادي."
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr "يتم عرض رسائل البريد الإلكتروني بتنسيق HTML الخام كقوالب Jinja كاملة. أما في الحالات الأخرى، فيتم تغليف رسائل البريد الإلكتروني في قالب standard.html، الذي يُدرج شعار العلامة التجارية والرأس والتذييل."
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20748,25 +20942,25 @@ msgstr "البريد الإلكتروني الخام"
msgid "Raw Printing"
msgstr "الطباعة الخام"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
-msgstr ""
+msgstr "إعدادات الطباعة الخام"
#: frappe/public/js/frappe/form/templates/print_layout.html:37
msgid "Raw Printing Settings"
-msgstr ""
+msgstr "إعدادات الطباعة الخام"
#: frappe/desk/doctype/console_log/console_log.js:6
msgid "Re-Run in Console"
-msgstr ""
+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:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "رد: {0}"
@@ -20777,11 +20971,12 @@ msgstr "رد: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20816,12 +21011,12 @@ 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 ""
+msgstr "يعتمد على القراءة فقط (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
-msgstr ""
+msgstr "وضع القراءة فقط"
#. Label of the read_by_recipient (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -20836,48 +21031,48 @@ msgstr "قراءة من قبل المتلقي"
#: frappe/desk/doctype/note/note.js:10
msgid "Read mode"
-msgstr ""
+msgstr "وضع القراءة"
#: frappe/utils/safe_exec.py:99
msgid "Read the documentation to know more"
-msgstr ""
+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:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "إعادة بناء"
#: frappe/public/js/frappe/views/treeview.js:511
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'
@@ -20900,9 +21095,9 @@ msgstr "معامل المستقبل"
msgid "Recent years are easy to guess."
msgstr "السنوات الأخيرة من السهل تخمين."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
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'
@@ -20917,7 +21112,7 @@ msgstr "مستلم"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Recipient Account Field"
-msgstr ""
+msgstr "حقل حساب المستلم"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -20940,43 +21135,43 @@ 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:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
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_to_path (Data) field in DocType 'User Invitation'
#: frappe/core/doctype/user_invitation/user_invitation.json
msgid "Redirect To Path"
-msgstr ""
+msgstr "إعادة التوجيه إلى المسار"
#. Label of the redirect_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Redirect URI"
-msgstr ""
+msgstr "عنوان إعادة التوجيه"
#. Label of the redirect_uri_bound_to_authorization_code (Data) field in
#. DocType 'OAuth Authorization Code'
@@ -21001,30 +21196,30 @@ msgstr "إعادة توجيه URL"
#: 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 "سيتم إعادة توجيهك إلى هذا الرابط بعد تأكيد العملية بنجاح."
#. 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 "مخبأ خادم رديس يست قيد التشغيل. الرجاء الاتصال بمسؤول / الدعم الفني"
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
-msgstr ""
+msgstr "إعادة"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
-msgstr ""
+msgstr "أعد تنفيذ الإجراء الأخير"
#. Label of the ref_doctype (Link) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -21033,7 +21228,7 @@ msgstr "المرجع DOCTYPE"
#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
-msgstr ""
+msgstr "لا يمكن استخدام نوع المستند المرجعي واسم لوحة المعلومات في نفس الوقت."
#. Label of the linked_with (Section Break) field in DocType 'Address'
#. Label of the contact_details (Section Break) field in DocType 'Contact'
@@ -21055,22 +21250,22 @@ 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_docname (Dynamic Link) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Reference Doc"
-msgstr ""
+msgstr "المستند المرجعي"
#. Label of the reference_name (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
@@ -21119,7 +21314,7 @@ msgstr "مرجع Doctype"
#: 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'
@@ -21128,7 +21323,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'
@@ -21171,7 +21366,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'
@@ -21196,7 +21391,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'
@@ -21238,18 +21433,18 @@ msgstr "إشارة: {0} {1}"
msgid "Referrer"
msgstr "المرجع"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
#: frappe/public/js/print_format_builder/Preview.vue:24
msgid "Refresh"
-msgstr ""
+msgstr "تحديث"
#: frappe/core/page/dashboard_view/dashboard_view.js:177
msgid "Refresh All"
@@ -21260,9 +21455,9 @@ msgstr "تحديث كافة"
msgid "Refresh Google Sheet"
msgstr "قم بتحديث ورقة Google"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
-msgstr ""
+msgstr "تحديث معاينة الطباعة"
#. Label of the refresh_token (Password) field in DocType 'Google Calendar'
#. Label of the refresh_token (Password) field in DocType 'Google Contacts'
@@ -21275,10 +21470,10 @@ msgstr ""
msgid "Refresh Token"
msgstr "تحديث رمز"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
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:369
@@ -21286,7 +21481,7 @@ msgstr ""
msgid "Refreshing..."
msgstr "يحديث ..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "سجل لكن المعوقين"
@@ -21295,28 +21490,28 @@ msgstr "سجل لكن المعوقين"
#: 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
msgid "Release"
-msgstr ""
+msgstr "يطلق"
#. Label of the release_notes (Markdown Editor) field in DocType 'Package
#. Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
-msgstr ""
+msgstr "ملاحظات الإصدار"
#: frappe/core/doctype/communication/communication.js:48
#: frappe/core/doctype/communication/communication.js:159
@@ -21332,24 +21527,22 @@ msgstr "الاتصالات إعادة ربط"
msgid "Relinked"
msgstr "إعادة ربط"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
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
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
-msgstr ""
+msgstr "تقرير إعادة التحميل"
#. Label of the remember_last_selected_value (Check) field in DocType
#. 'DocField'
@@ -21364,38 +21557,38 @@ msgstr "تذكر آخر مختارة القيمة"
#: 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:512
+#: frappe/public/js/frappe/form/toolbar.js:515
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"
@@ -21411,53 +21604,53 @@ 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:265
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:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: 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:117
#: frappe/custom/doctype/custom_field/custom_field.js:137
msgid "Rename Fieldname"
-msgstr ""
+msgstr "إعادة تسمية اسم الحقل"
#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
@@ -21469,21 +21662,21 @@ 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:580
+#: frappe/public/js/frappe/form/toolbar.js:583
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
@@ -21503,7 +21696,7 @@ 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
@@ -21523,29 +21716,29 @@ msgstr "كما يكرر "AAA" من السهل تخمين"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "يكرر مثل "abcabcabc" ليست سوى أصعب قليلا لتخمين من "اي بي سي""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "يكرر {0}"
#: frappe/core/doctype/role_replication/role_replication.js:7
#: frappe/core/doctype/role_replication/role_replication.js:14
msgid "Replicate"
-msgstr ""
+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
@@ -21586,6 +21779,7 @@ msgstr "الرد على الجميع"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21600,12 +21794,11 @@ msgstr "الرد على الجميع"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
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'
@@ -21672,20 +21865,20 @@ 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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "تقرير الاسم"
#: frappe/desk/doctype/number_card/number_card.py:70
msgid "Report Name, Report Field and Fucntion are required to create a number card"
-msgstr ""
+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'
@@ -21704,15 +21897,11 @@ msgstr "نوع التقرير"
#: frappe/public/js/frappe/list/base_list.js:204
msgid "Report View"
-msgstr ""
+msgstr "عرض التقرير"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1844
-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:194
@@ -21724,19 +21913,19 @@ msgstr "لا يحتوي التقرير على بيانات ، يرجى تعدي
msgid "Report has no numeric fields, please change the Report Name"
msgstr "لا يحتوي التقرير على حقول رقمية ، يُرجى تغيير اسم التقرير"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
-msgstr ""
+msgstr "تم إنشاء التقرير، انقر لعرض الحالة"
#: 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:248
msgid "Report timed out."
-msgstr ""
+msgstr "انتهت مهلة التقرير."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "تم تحديث التقرير بنجاح"
@@ -21744,18 +21933,18 @@ msgstr "تم تحديث التقرير بنجاح"
msgid "Report was not saved (there were errors)"
msgstr "لم يتم حفظ التقرير (كانت هناك أخطاء)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "التقرير مع أكثر من 10 أعمدة تبدو أفضل في وضع أفقي."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "تقرير {0}"
#: frappe/desk/reportview.py:367
msgid "Report {0} deleted"
-msgstr ""
+msgstr "تم حذف التقرير {0}"
#: frappe/desk/query_report.py:55
msgid "Report {0} is disabled"
@@ -21763,7 +21952,7 @@ msgstr "تقرير غير مفعلة {0}"
#: frappe/desk/reportview.py:344
msgid "Report {0} saved"
-msgstr ""
+msgstr "تم حفظ التقرير {0}"
#: frappe/public/js/frappe/views/reports/report_view.js:20
msgid "Report:"
@@ -21772,31 +21961,31 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
-msgstr ""
+msgstr "تقارير"
#: frappe/patches/v14_0/update_workspace2.py:50
msgid "Reports & Masters"
msgstr "التقارير والماجستير"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
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'
#. Title of the request-data Web Form
@@ -21810,44 +21999,44 @@ msgstr "طلب البيانات"
#. Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Description"
-msgstr ""
+msgstr "وصف الطلب"
#. Label of the request_headers (Code) field in DocType 'Recorder'
#. Label of the request_headers (Code) field in DocType 'Integration Request'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Headers"
-msgstr ""
+msgstr "رؤوس الطلب"
#. Label of the request_id (Data) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request ID"
-msgstr ""
+msgstr "رقم الطلب"
#. Label of the rate_limit_count (Int) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Request Limit"
-msgstr ""
+msgstr "حد الطلبات"
#. Label of the request_method (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Method"
-msgstr ""
+msgstr "طريقة الطلب"
#. Label of the request_structure (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
msgstr "طلب هيكل"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "طلب مهلة"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
-msgstr ""
+msgstr "انتهت مهلة الطلب"
#. Label of the request_url (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
@@ -21857,12 +22046,12 @@ msgstr "طلب عنوان ورل"
#. Title of the request-to-delete-data Web Form
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Request for Account Deletion"
-msgstr ""
+msgstr "طلب حذف الحساب"
#. 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'
@@ -21874,13 +22063,13 @@ msgstr "طلب شهادة موثوق بها"
#. '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 "يتطلب أي مسار fdn صالح. على سبيل المثال: ou=groups,dc=example,dc=com"
#. Description of the 'LDAP search path for Users' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com"
-msgstr ""
+msgstr "يتطلب أي مسار fdn صالح. على سبيل المثال: ou=users,dc=example,dc=com"
#: frappe/core/doctype/communication/communication.js:279
msgid "Res: {0}"
@@ -21891,16 +22080,16 @@ msgstr "الدقة: {0}"
#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17
#: frappe/website/doctype/portal_settings/portal_settings.js:19
msgid "Reset"
-msgstr ""
+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"
@@ -21908,7 +22097,7 @@ msgstr "إعادة تعيين المخطط"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39
msgid "Reset Dashboard Customizations"
-msgstr ""
+msgstr "إعادة ضبط تخصيصات لوحة التحكم"
#: frappe/public/js/frappe/list/list_settings.js:228
msgid "Reset Fields"
@@ -21920,7 +22109,7 @@ msgstr "إعادة تعيين كلمة مرور LDAP"
#: frappe/custom/doctype/customize_form/customize_form.js:128
msgid "Reset Layout"
-msgstr ""
+msgstr "إعادة ضبط التخطيط"
#: frappe/core/doctype/user/user.js:228
msgid "Reset OTP Secret"
@@ -21941,13 +22130,13 @@ msgstr "إعادة تعيين كلمة المرور الرئيسية"
#. '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'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Template"
-msgstr ""
+msgstr "نموذج إعادة تعيين كلمة المرور"
#: frappe/core/page/permission_manager/permission_manager.js:116
msgid "Reset Permissions for {0}?"
@@ -21955,15 +22144,15 @@ msgstr "إعادة تعيين أذونات ل {0} ؟"
#: frappe/public/js/form_builder/components/Field.vue:111
msgid "Reset To Default"
-msgstr ""
+msgstr "إعادة الضبط إلى الإعدادات الافتراضية"
#: frappe/public/js/frappe/utils/datatable.js:8
msgid "Reset sorting"
-msgstr ""
+msgstr "إعادة ترتيب الفرز"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
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"
@@ -21976,27 +22165,27 @@ msgstr "اعد ضبط كلمه السر"
#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Resource"
-msgstr ""
+msgstr "مورد"
#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Resource Documentation"
-msgstr ""
+msgstr "وثائق الموارد"
#. Label of the resource_name (Data) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Resource Name"
-msgstr ""
+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 ""
+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 ""
+msgstr "مورد TOS URI"
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_html (Code) field in DocType 'Email Template'
@@ -22012,29 +22201,29 @@ msgstr "الإستجابة"
#. Label of the response_headers (Code) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Response Headers"
-msgstr ""
+msgstr "رؤوس الاستجابة"
#. Label of the response_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
msgstr "نوع الاستجابة"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
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 "استعادة"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "استعادة ضوابط الأصل"
#: frappe/website/doctype/portal_settings/portal_settings.js:20
msgid "Restore to default settings?"
-msgstr "استعادة الإعدادات الافتراضية؟\\nWarning: Customizations from other modules will be excluded.
" +msgstr "Izvezi samo prilagođavanja dodijeljena odabranom modulu.Upozorenje: Prilagodbe iz drugih modula bit će isključene.
" + #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json @@ -9843,7 +9953,7 @@ msgstr "Eksportiraj podatke bez ikakvih bilješki u zaglavlju i opisa kolona" msgid "Export without main header" msgstr "Eksportiraj bez glavnog zaglavlja" -#: frappe/public/js/frappe/data_import/data_exporter.js:247 +#: frappe/public/js/frappe/data_import/data_exporter.js:248 msgid "Export {0} records" msgstr "Izvezi {0} zapise" @@ -9883,7 +9993,7 @@ msgstr "Eksterni" #. Label of the external_link (Data) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/views/workspace/workspace.js:440 +#: frappe/public/js/frappe/views/workspace/workspace.js:488 msgid "External Link" msgstr "Eksterna Veza" @@ -9932,12 +10042,17 @@ msgstr "Broj Neuspjelih Poslova" msgid "Failed Jobs" msgstr "Neuspješni Poslovi" +#. Label of a number card in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Failed Login Attempts" +msgstr "Neuspjeli Pokušaji Prijave" + #. 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 "Neuspješne Prijave (posljednjih 30 dana)" -#: frappe/model/workflow.py:362 +#: frappe/model/workflow.py:383 msgid "Failed Transactions" msgstr "Neuspješne Transakcije" @@ -10000,7 +10115,7 @@ msgstr "Generiranje pregleda serije nije uspjelo" msgid "Failed to get method for command {0} with {1}" msgstr "Nije uspjelo preuzimanje metode za komandu {0} sa {1}" -#: frappe/api/v2.py:46 +#: frappe/api/v2.py:61 msgid "Failed to get method {0} with {1}" msgstr "Nije uspjelo preuzimanje metode {0} sa {1}" @@ -10012,7 +10127,7 @@ msgstr "Nije uspjelo preuzimanje informacija o web lokaciji" msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "Uvoz virtuelnog doctypa {} nije uspio, je li prisutna datoteka kontrolera?" -#: frappe/utils/image.py:75 +#: frappe/utils/image.py:70 msgid "Failed to optimize image: {0}" msgstr "Optimizacija slike nije uspjela: {0}" @@ -10028,7 +10143,7 @@ msgstr "Nije uspjelo prikazivanje predmeta: {}" msgid "Failed to request login to Frappe Cloud" msgstr "Zahtjev za prijavu na Frappe Cloud nije uspio" -#: frappe/email/doctype/email_queue/email_queue.py:300 +#: frappe/email/doctype/email_queue/email_queue.py:301 msgid "Failed to send email with subject:" msgstr "Nije uspjelo slanje e-pošte sa predmetom:" @@ -10070,7 +10185,7 @@ msgstr "FavIcon" msgid "Fax" msgstr "Fax" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:51 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:72 msgid "Feedback" msgstr "Povratne Informacije" @@ -10130,8 +10245,8 @@ msgstr "Preuzimanje polja iz {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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1909 +#: frappe/public/js/frappe/views/reports/query_report.js:237 +#: frappe/public/js/frappe/views/reports/query_report.js:1984 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10141,7 +10256,7 @@ msgstr "Polje" msgid "Field \"route\" is mandatory for Web Views" msgstr "Polje \"ruta\" je obavezno za Web Prikaze" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "Polje \"naziv\" je obavezno ako je postavljeno \"Polje Pretrage Web Stranice\"." @@ -10149,7 +10264,7 @@ msgstr "Polje \"naziv\" je obavezno ako je postavljeno \"Polje Pretrage Web Stra msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "Polje \"vrijednost\" je obavezno. Navedi vrijednost koju treba ažurirati" -#: frappe/desk/search.py:255 +#: frappe/desk/search.py:262 msgid "Field{0} not found in {1}"
msgstr "Polje {0} nije pronađeno u {1}"
@@ -10158,7 +10273,7 @@ msgstr "Polje {0} nije pronađeno u {1}"
msgid "Field Description"
msgstr "Opis Polja"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Nedostaje Polje"
@@ -10206,7 +10321,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:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "Polje {0} ne postoji na {1}"
@@ -10214,11 +10329,11 @@ msgstr "Polje {0} ne postoji na {1}"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "Polje {0} mora biti virtualno polje kako bi podržalo virtualni doctype."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Polje {0} nije pronađeno."
@@ -10240,7 +10355,7 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti v
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Ime Polja"
@@ -10249,7 +10364,7 @@ msgstr "Ime Polja"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
@@ -10257,7 +10372,7 @@ msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Ime polja je ograničeno na 64 znaka ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Ime polja nije postavljeno za prilagođeno polje"
@@ -10273,7 +10388,7 @@ msgstr "Ime polja {0} pojavljuje se više puta"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Ime polja {0} je u konfliktu sa meta objektom"
@@ -10321,7 +10436,7 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
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"
@@ -10345,7 +10460,7 @@ msgstr "Polja razdvojena zarezom (,) biće uključena u listu „Pretraži Po“
msgid "Fieldtype"
msgstr "Tip Polja"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Tip polja se ne može promijeniti iz {0} u {1}"
@@ -10421,12 +10536,12 @@ msgstr "Ime datoteke ne može imati {0}"
msgid "File not attached"
msgstr "Datoteka nije priložena"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Datoteka je prevelika"
@@ -10453,12 +10568,17 @@ msgstr "Datoteke"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filter"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr "Filter Područje"
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10477,7 +10597,7 @@ msgstr "Filter Meta"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Filter Naziv"
@@ -10486,11 +10606,11 @@ msgstr "Filter Naziv"
msgid "Filter Values"
msgstr "Filter Vrijednosti"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "Nedostaje uslov filtera nakon operatora: {0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr "Polja filtera imaju nevažeću notaciju povratnog naznaka: {0}"
@@ -10509,10 +10629,14 @@ msgid "Filtered Records"
msgstr "Filtrirani Zapisi"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Filtrirano prema \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr "Filtrirano po: {0}."
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10536,7 +10660,7 @@ msgstr "Filtrirano prema \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Filteri"
@@ -10567,10 +10691,6 @@ msgstr "Filtrira JSON"
msgid "Filters Section"
msgstr "Sekcija Filtera"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Primijenjeni filteri za {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filteri spremljeni"
@@ -10588,14 +10708,14 @@ msgstr "Filteri {0}"
msgid "Filters:"
msgstr "Filteri:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Pronađi '{0}' u..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Pronađi {0} u {1}"
@@ -10683,11 +10803,11 @@ msgstr "Decimalna Preciznost"
msgid "Fold"
msgstr "Presavij"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Presavijanje ne može biti na kraju forme"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Presavijanje mora doći prije prekida odjeljka"
@@ -10716,12 +10836,12 @@ msgstr "Mapa {0} nije prazna"
msgid "Folio"
msgstr "Folio"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Prati"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Praćen od"
@@ -10729,7 +10849,7 @@ msgstr "Praćen od"
msgid "Following Report Filters have missing values:"
msgstr "Sljedeći Filteri Izvještaja nemaju vrijednosti:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Pratim dokument {0}"
@@ -10737,7 +10857,7 @@ msgstr "Pratim dokument {0}"
msgid "Following fields are missing:"
msgstr "Nedostaju sljedeća polja:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Sljedeća polja imaju nevažeće vrijednosti:"
@@ -10745,7 +10865,7 @@ msgstr "Sljedeća polja imaju nevažeće vrijednosti:"
msgid "Following fields have missing values"
msgstr "Sljedeća polja nemaju vrijednosti"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Sljedeća polja nemaju vrijednosti:"
@@ -10814,7 +10934,7 @@ msgstr "Detalji Podnožja"
msgid "Footer HTML"
msgstr "Podnožje HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "HTML Podnožja postavljen iz priloga {0}"
@@ -10851,7 +10971,7 @@ msgstr "Šablon Podnožja"
msgid "Footer Template Values"
msgstr "Vrijednosti Šablona Podnožja"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "Podnožje možda neće biti vidljivo jer je opcija {0} onemogućena"
@@ -10884,16 +11004,6 @@ msgstr "Za Tip Dokumenta"
msgid "For Example: {} Open"
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
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "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'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10917,20 +11027,16 @@ msgstr "Za Vrijednost"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "Za dinamičnni subjekt koristi Jinja oznake poput ove: {{ doc.name }} Dostavljeno"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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)."
-#: 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 "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 "Na primjer:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Na primjer: Ako želite uključiti ID dokumenta, koristite {0}"
@@ -10958,7 +11064,7 @@ msgstr "Za više adresa, unesi adresu u drugu liniju. npr. test@test.com ⏎ tes
msgid "For updating, you can update only selective columns."
msgstr "Za ažuriranje, možete ažurirati samo selektivne kolone."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Za {0} na nivou {1} u {2} u redu {3}"
@@ -11008,7 +11114,8 @@ msgstr "Zaboravljana Lozinka?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Forma"
@@ -11187,7 +11294,7 @@ msgstr "Petak"
msgid "From"
msgstr "Od"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "Od"
@@ -11208,7 +11315,7 @@ msgstr "Od Datuma"
msgid "From Date Field"
msgstr "Od Datuma"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Od Dokumenta"
@@ -11249,7 +11356,7 @@ msgstr "Pun"
msgid "Full Name"
msgstr "Puno Ime"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Cijela Stranica"
@@ -11262,7 +11369,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funkcija"
@@ -11271,11 +11378,11 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na bijeloj listi."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije dat"
@@ -11340,11 +11447,11 @@ msgstr "Općenito"
msgid "Generate Keys"
msgstr "Generiši Ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Generiši Novi Izvještaj"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Generiši Nasumičnu Lozinku"
@@ -11354,8 +11461,8 @@ msgstr "Generiši Nasumičnu Lozinku"
msgid "Generate Separate Documents For Each Assignee"
msgstr "Generiši odvojene dokumente za svakog Dodijeljenog"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Generiši URL Praćenja"
@@ -11466,7 +11573,7 @@ msgstr "Globalne Prečice"
msgid "Global Unsubscribe"
msgstr "Globalno Otkazivanje Pretplate"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Idi"
@@ -11526,7 +11633,7 @@ msgstr "Idi na {0} Listu"
msgid "Go to {0} Page"
msgstr "Idi na {0} Stranicu"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Cilj"
@@ -11752,7 +11859,7 @@ 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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "Grupiraj Po mora biti niz"
@@ -11832,6 +11939,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "HTML Uređivač"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr "HTML Poruka"
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11920,7 +12031,7 @@ msgstr "Zaglavlje"
msgid "Header HTML"
msgstr "HTML Zaglavlja"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "HTML Zaglavlja postavljen iz priloga {0}"
@@ -11956,7 +12067,7 @@ msgstr "Skripte Zaglavlja/Podnožja mogu se koristiti za dodavanje dinamičkog p
msgid "Headers"
msgstr "Zaglavlja"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "Zaglavlja moraju biti rječnik"
@@ -11993,7 +12104,7 @@ msgstr "Zdravo,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12048,7 +12159,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Ovdje je vaš URL-a za praćenje"
@@ -12084,9 +12195,9 @@ msgstr "Sakriveno"
msgid "Hidden Fields"
msgstr "Sakrivena Polja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "Skrivene kolone uključuju: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include: {{ otp }} "
msgstr "OTP Rezervirano mjesto treba biti definirano kao {{ otp }} "
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "Postavljanje OTP pomoću OTP Aplikacije nije završeno. Kontaktiraj Administratora."
@@ -18144,7 +18325,7 @@ msgstr "Pomak X"
msgid "Offset Y"
msgstr "Pomak Y"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "Pomak mora biti cijeli broj koji nije negativan"
@@ -18152,7 +18333,7 @@ msgstr "Pomak mora biti cijeli broj koji nije negativan"
msgid "Old Password"
msgstr "Stara Lozinka"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Stari i novi nazivi polja su isti."
@@ -18219,7 +18400,7 @@ msgstr "Na ili Poslije"
msgid "On or Before"
msgstr "Na ili Prije"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "{0}, {1} je napisao:"
@@ -18263,7 +18444,7 @@ msgstr "Introdukcija Završena"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "Nakon što ovo postavite, korisnici će moći pristupiti samo dokumentima (npr. Blog Post) gdje postoji veza (npr. Blogger)."
@@ -18279,11 +18460,11 @@ msgstr "Jednokratna Lozinka (OTP) registracijski kod od {}"
msgid "One of"
msgstr "Jedan od"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Dozvoljeno je samo 200 umetanja u jednom zahtjevu"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Samo Administrator može izbrisati red čekanja e-pošte"
@@ -18304,7 +18485,7 @@ msgstr "Samo Administrator može koristiti Snimač"
msgid "Only Allow Edit For"
msgstr "Dozvoli uređivanje samo za"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Jedine dopuštene opcije za polje podataka su:"
@@ -18327,11 +18508,11 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore"
msgid "Only allow System Managers to upload public files"
msgstr "Dozvoli samo Sistemski Odgovornim da postavljaju javne datoteke"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
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:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Mogu se odbaciti samo nacrti dokumenata"
@@ -18374,7 +18555,7 @@ msgstr "Samo dodjeljeni može izvršiti ovu obavezu."
msgid "Only {0} emailed reports are allowed per user."
msgstr "Dozvoljeni su samo {0} izvještaja poslatih e-poštom po korisniku."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Ups! Nešto je pošlo po zlu."
@@ -18397,8 +18578,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Otvori"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18434,6 +18615,10 @@ msgstr "Otvori Referentni Dokument"
msgid "Open Settings"
msgstr "Otvori Postavke"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr "Otvori Bočnu Traku"
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Aplikacije otvorenog koda za Web"
@@ -18448,7 +18633,7 @@ msgstr "Otvori URL u Novoj Kartici"
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 "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:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Otvori modul ili alat"
@@ -18460,11 +18645,11 @@ msgstr "Otvori konzolu"
msgid "Open in a new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otvorite stavku liste"
@@ -18479,16 +18664,16 @@ 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Otvori {0}"
@@ -18520,7 +18705,7 @@ msgstr "Operacija"
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr "Operator {0} zahtijeva tačno 2 argumenta (lijevi i desni operand)"
@@ -18546,7 +18731,7 @@ msgstr "Opcija 2"
msgid "Option 3"
msgstr "Opcija 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "Opcija {0} za polje {1} nije podređena tabela"
@@ -18580,7 +18765,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan"
msgid "Options"
msgstr "Opcije"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze s opcijama kao 'DocType'"
@@ -18589,7 +18774,7 @@ msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze
msgid "Options Help"
msgstr "Pomoć Opcija"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10"
@@ -18597,7 +18782,7 @@ msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10"
msgid "Options for select. Each option on a new line."
msgstr "Opcije za odabir. Svaka opcija u novom redu."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednosti."
@@ -18605,7 +18790,7 @@ msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednost
msgid "Options is required for field {0} of type {1}"
msgstr "Opcije su potrebne za polje {0} tipa {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Opcije nisu postavljene za polje veze {0}"
@@ -18621,7 +18806,7 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Red"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "Sortiraj Po mora biti niz"
@@ -18641,8 +18826,12 @@ msgstr "Naslov Istorije Organizacije"
msgid "Orientation"
msgstr "Orijentacija"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr "Original"
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Originalna Vrijednost"
@@ -18717,18 +18906,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF Generisanje u toku"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF Generator"
@@ -18752,7 +18943,7 @@ msgstr "PDF Širina Stranice (u mm)"
msgid "PDF Settings"
msgstr "PDF Postavke"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "PDF Generisanje nije uspjelo"
@@ -18760,11 +18951,11 @@ msgstr "PDF Generisanje nije uspjelo"
msgid "PDF generation failed because of broken image links"
msgstr "PDF Generisanje nije uspjelo zbog neispravnih veza slika"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "PDF Generisanje možda neće raditi kako se očekuje."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "PDF ispis putem \"Direktnog Ispisa\" nije podržano."
@@ -18923,7 +19114,7 @@ msgstr "Širina Stranice (u mm)"
msgid "Page has expired!"
msgstr "Stranica je istekla!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Visina i širina stranice ne mogu biti nula"
@@ -18939,7 +19130,7 @@ 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:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Stranica {0} od {1}"
@@ -18950,7 +19141,7 @@ msgid "Parameter"
msgstr "Parametar"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Nadređeni"
@@ -18983,11 +19174,11 @@ 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:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Nadređeno Polje (Stablo)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Nadređeno Polje mora biti važeće ime polja"
@@ -19001,7 +19192,7 @@ msgstr "Nadređena Ikona"
msgid "Parent Label"
msgstr "Nadređena Oznaka"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "Nedostaje Nadređeni"
@@ -19026,11 +19217,11 @@ msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci."
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:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "Nadređeno polje nije navedeno u {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "Za umetanje podređenog zapisa potrebni su nadređeni tip, nadređeni i nadređeno polje"
@@ -19049,7 +19240,7 @@ msgstr "Djelimičan Uspjeh"
msgid "Partially Sent"
msgstr "Djelimično Poslano"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Učesnici"
@@ -19086,11 +19277,11 @@ msgstr "Pasivno"
msgid "Password"
msgstr "Lozinka"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "E-pošta s lozinkom poslana"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Poništavanje Lozinke"
@@ -19099,7 +19290,7 @@ msgstr "Poništavanje Lozinke"
msgid "Password Reset Link Generation Limit"
msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "Lozinka se ne može filtrirati"
@@ -19128,11 +19319,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:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr "Zahtjevi za lozinku nisu ispunjeni"
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
@@ -19144,7 +19335,7 @@ msgstr "Lozinka postavljena"
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
@@ -19206,7 +19397,7 @@ msgstr "Put do Certifikata Servera"
msgid "Path to private Key File"
msgstr "Put do Datoteke Privatnog Ključa"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "Putanja {0} nije unutar modula {1}"
@@ -19291,15 +19482,15 @@ msgstr "Nivo Dozvola"
msgid "Permanent"
msgstr "Trajno"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "Trajno Otkaži {0}?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "Trajno Odbaci {0}?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "Trajno Podnesi {0}?"
@@ -19307,7 +19498,11 @@ msgstr "Trajno Podnesi {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno izbriši {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr "Dozvola"
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Greška Dozvole"
@@ -19317,12 +19512,12 @@ msgid "Permission Inspector"
msgstr "Inspektor Dozvola"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Nivo Dozvole"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Nivoi Dozvola"
@@ -19331,11 +19526,6 @@ msgstr "Nivoi Dozvola"
msgid "Permission Log"
msgstr "Zapisnik Dozvola"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-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"
@@ -19366,7 +19556,6 @@ msgstr "Tip Dozvole '{0}' je rezerviran. Odaberi drugo ime."
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19377,13 +19566,12 @@ msgstr "Tip Dozvole '{0}' je rezerviran. Odaberi drugo ime."
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Greška Dozvola"
@@ -19395,11 +19583,11 @@ msgstr "Dozvole se automatski primjenjuju na Standardne Izvještaje i pretrage."
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 "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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Dozvole na nivou 0 su dozvole na nivou dokumenta, tj. primarne su za pristup dokumentu."
@@ -19469,13 +19657,13 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Broj Telefona."
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
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:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Odaberi Kolone"
@@ -19533,7 +19721,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Postavi Grafikon"
@@ -19549,7 +19737,7 @@ msgstr "Dodaj predmet e-pošti"
msgid "Please add a valid comment."
msgstr "Dodaj relevantan komentar."
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Zamoli administratora da potvrdi vašu registraciju"
@@ -19557,11 +19745,11 @@ msgstr "Zamoli administratora da potvrdi vašu registraciju"
msgid "Please attach a file first."
msgstr "Priloži datoteku."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Priloži datoteku slike da postavite HTML za Podnožje."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje."
@@ -19573,11 +19761,11 @@ msgstr "Priloži Applikaciju"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
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:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Provjeri e-poštu za potvrdu"
@@ -19609,7 +19797,7 @@ msgstr "Klikni na sljedeću vezu da postavite novu lozinku"
msgid "Please confirm your action to {0} this document."
msgstr "Potvrdi akciju {0} ovog dokumenta."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju."
@@ -19639,10 +19827,10 @@ msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Omogući iskačuće prozore"
@@ -19655,7 +19843,7 @@ msgstr "Omogući iskačuće prozore u vašem pretraživaču"
msgid "Please enable {} before continuing."
msgstr "Omogući {} prije nego nastavite."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Potvrdi da vaš profil ima adresu e-pošte"
@@ -19729,15 +19917,15 @@ 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:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Osvježi da dobijete najnoviji dokument."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Ukloni mapiranje pisača u Postavkama Pisača i pokušaj ponovo."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Spremi prije prilaganja."
@@ -19753,7 +19941,7 @@ msgstr "Spremi dokument prije uklanjanja dodjele"
msgid "Please save the form before previewing the message"
msgstr "Sačuvaj obrazac prije pregleda poruke"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Prvo spremi izvještaj"
@@ -19773,7 +19961,7 @@ msgstr "Odaberi Tip Entiteta"
msgid "Please select Minimum Password Score"
msgstr "Odaberi Minimalnu Vrijednost Lozinke"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Odaberi X i Y polja"
@@ -19781,7 +19969,7 @@ msgstr "Odaberi X i Y polja"
msgid "Please select a DocType in options before setting filters"
msgstr "Odaberi DocType u opcijama prije postavljanja filtera"
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Odaberi pozivni broj zemlje za polje {1}."
@@ -19831,11 +20019,11 @@ msgstr "Odaberi {0}"
msgid "Please set Email Address"
msgstr "Postavi adresu e-pošte"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
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:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Postavi filtere"
@@ -19843,7 +20031,7 @@ msgstr "Postavi filtere"
msgid "Please set filters value in Report Filter table."
msgstr "Postavi vrijednost filtera u tabeli Filter Izvještaja."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Molimo postavite naziv dokumenta"
@@ -19863,7 +20051,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:462
+#: frappe/core/doctype/user/user.py:465
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"
@@ -19875,7 +20063,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:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Navedi važeći nadređeni DocType za {0}"
@@ -19903,7 +20091,7 @@ msgstr "Navedi koje polje datuma i vremena mora biti označeno"
msgid "Please specify which value field must be checked"
msgstr "Navedi koje polje vrijednosti mora biti označeno"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Pokušaj ponovo"
@@ -20024,11 +20212,11 @@ msgstr "Vremenska Oznaka"
msgid "Precision"
msgstr "Preciznost"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "Preciznost ({0}) za {1} ne može biti duža od njegove dužine ({2})."
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Preciznost bi trebala biti između 1 i 6"
@@ -20080,11 +20268,11 @@ msgstr "Korisnik Pripremljenog Izvještaja"
msgid "Prepared report render failed"
msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Priprema Izvještaja"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Priloži šablon poruci e-pošte"
@@ -20092,7 +20280,7 @@ msgstr "Priloži šablon poruci e-pošte"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Pritisni Alt taster da pokrenete dodatne prečice u Meniju i Bočnoj Traci"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Pritisni Enter da spremite"
@@ -20110,7 +20298,7 @@ msgstr "Pritisni Enter da spremite"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Pregled"
@@ -20154,16 +20342,16 @@ msgstr "Pregled:"
msgid "Previous"
msgstr "Prethodna"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Prethodna"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Prethodni dokument"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Prethodno Podnošenje"
@@ -20216,19 +20404,19 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Ispiši"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Ispiši"
@@ -20246,8 +20434,9 @@ msgstr "Ispiši Dokumente"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20291,7 +20480,7 @@ msgstr "Pomoć Ispis Formata"
msgid "Print Format Type"
msgstr "Tip Ispis Formata"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "Format Ispisa nije pronađen"
@@ -20324,11 +20513,11 @@ msgstr "Sakrij"
msgid "Print Hide If No Value"
msgstr "Sakrij ispis ako nema vrijednost"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Jezik Ispisa"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Ispis Poslan na pisač!"
@@ -20341,8 +20530,8 @@ msgstr "Ispisni Server"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Postavke Ispisa"
@@ -20381,7 +20570,7 @@ msgstr "Ispisna Širina"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "Ispis Širine polja, ako je polje kolona u tabeli"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Ispiši Dokument"
@@ -20390,11 +20579,11 @@ msgstr "Ispiši Dokument"
msgid "Print with letterhead"
msgstr "Ispiši sa Zaglavljem"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Pisač"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Mapiranje Pisača"
@@ -20404,15 +20593,15 @@ msgstr "Mapiranje Pisača"
msgid "Printer Name"
msgstr "Naziv Pisača"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Postavke Pisača"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Mapiranje pisača nije postavljeno."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Neuspješno Ispisivanje"
@@ -20461,7 +20650,7 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Svejedno Nastavi"
@@ -20501,9 +20690,9 @@ msgid "Project"
msgstr "Projekat"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "Svojstvo"
@@ -20573,7 +20762,7 @@ msgstr "Naziv Dostavljača Servisa"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Javno"
@@ -20723,7 +20912,7 @@ msgstr "QR Kod"
msgid "QR Code for Login Verification"
msgstr "QR Kod za Provjeru Prijave"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ Tray neuspješan:"
@@ -20785,7 +20974,7 @@ msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH."
msgid "Queue"
msgstr "Red"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "Red Čekanja Preopterećen"
@@ -20806,7 +20995,7 @@ msgstr "Tip Reda"
msgid "Queue in Background (BETA)"
msgstr "Red u pozadini (BETA)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Red bi trebao biti jedan od {0}"
@@ -20847,7 +21036,7 @@ msgstr "U Redu za Sigurnosno Kopiranje. Primit ćete e-poruku s vezom za preuzim
msgid "Queues"
msgstr "Redovi"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "U redu za Podnošenje {0}"
@@ -20939,6 +21128,15 @@ msgstr "Direktne Naredbe"
msgid "Raw Email"
msgstr "Neobrađena e-pošta"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr "HTML se može koristiti samo sa šablonima e-pošte kod kojih je označeno 'Koristi HTML'. Nastavlja se s e-poštom u običnom tekstu."
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr "HTML e-pošte se prikazuju kao kompletni Jinja šabloni. U suprotnom, e-pošta se oblažu u standardni.html šablon e-pošte, koji ubacuje brand_logo, zaglavlje i podnožje."
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20947,7 +21145,7 @@ msgstr "Neobrađena e-pošta"
msgid "Raw Printing"
msgstr "Direktno Ispisivanje"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Postavka Direktnog Ispisivanja"
@@ -20965,7 +21163,7 @@ msgstr "Od:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Od: {0}"
@@ -20976,11 +21174,12 @@ msgstr "Od: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21017,7 +21216,7 @@ msgstr "Samo za Čitanje zavisi o"
msgid "Read Only Depends On (JS)"
msgstr "Samo za Čitanje zavisi o (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Samo za čitanje Način"
@@ -21057,7 +21256,7 @@ msgstr "Realno Vrijeme (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Obnovi"
@@ -21099,7 +21298,7 @@ msgstr "Parametar Primaoca"
msgid "Recent years are easy to guess."
msgstr "Lako je pogoditi posljednje godine."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Skorašnji"
@@ -21150,7 +21349,7 @@ msgstr "Predloženi Indeks Snimača"
msgid "Records for following doctypes will be filtered"
msgstr "Zapisi za sljedeće tipove dokumenata bit će filtrirani"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Rekurzivno Preuzimanje Iz"
@@ -21216,12 +21415,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:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Ponovi"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Ponovi posljednju radnju"
@@ -21437,12 +21636,12 @@ msgstr "Referenca: {0} {1}"
msgid "Referrer"
msgstr "Preporučitelj"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21459,7 +21658,7 @@ msgstr "Osvježi Sve"
msgid "Refresh Google Sheet"
msgstr "Osvježite Google Sheet"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "Osvježi Pregled Ispisa"
@@ -21474,7 +21673,7 @@ msgstr "Osvježi Pregled Ispisa"
msgid "Refresh Token"
msgstr "Osvježi Token"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Osvježava se"
@@ -21485,7 +21684,7 @@ msgstr "Osvježava se"
msgid "Refreshing..."
msgstr "Osvježavanje u toku..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Registrovan, ali onemogućen"
@@ -21531,10 +21730,8 @@ msgstr "Ponovo poveži Konverzaciju"
msgid "Relinked"
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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Ponovo Učitaj"
@@ -21546,7 +21743,7 @@ msgstr "Ponovo Učitaj Datoteku"
msgid "Reload List"
msgstr "Ponovno Učitaj Listu"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Ponovno Učitaj Izvještaj"
@@ -21565,7 +21762,7 @@ msgstr "Zapamti Posljednju Odabranu Vrijednost"
msgid "Remind At"
msgstr "Podsjeti"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Podsjeti Me"
@@ -21645,9 +21842,9 @@ msgid "Removed"
msgstr "Uklonjeno"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21675,7 +21872,7 @@ msgstr "Prikaži oznake lijevo i vrijednosti desno u ovom odjeljku"
msgid "Reopen"
msgstr "Ponovo otvori"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Ponovi"
@@ -21722,7 +21919,7 @@ msgstr "Ponavljanja poput \"aaa\" je lako pogoditi"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Ponavljanja poput \"abcabcabc\" samo su malo teža za pogoditi od \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Ponavlja se {0}"
@@ -21785,6 +21982,7 @@ msgstr "Odgovori Svima"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21799,10 +21997,9 @@ msgstr "Odgovori Svima"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Izvještaj"
@@ -21871,7 +22068,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Naziv Izvještaja"
@@ -21905,14 +22102,10 @@ msgstr "Tip izvještaja"
msgid "Report View"
msgstr "Pregled iIvještaja"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Prijavi Grešku"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Izvještaj se ne može postaviti za Singl tipove"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21923,7 +22116,7 @@ msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvj
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Izvještaj je pokrenut, klikni da vidite status"
@@ -21935,7 +22128,7 @@ msgstr "Granica Izvještaja Dostignuta"
msgid "Report timed out."
msgstr "Izvještaj je istekao."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Izvještaj je uspješno ažuriran"
@@ -21943,12 +22136,12 @@ 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:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
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."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Izvještaj {0}"
@@ -21971,7 +22164,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Izvještaji"
@@ -21979,7 +22172,7 @@ msgstr "Izvještaji"
msgid "Reports & Masters"
msgstr "Izvještaji & Masters"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Izvještaji su već u redu čekanja"
@@ -22038,13 +22231,13 @@ msgstr "Metoda Zahtjeva"
msgid "Request Structure"
msgstr "Struktura Zahtjeva"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
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
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Zahtjev Istekao"
@@ -22160,7 +22353,7 @@ msgstr "Vrati na Standard"
msgid "Reset sorting"
msgstr "Poništi Sortiranje"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Vrati na Standard"
@@ -22218,7 +22411,7 @@ msgstr "Zaglavlja Odgovora"
msgid "Response Type"
msgstr "Tip Odgovora"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Ostatak dana"
@@ -22227,7 +22420,7 @@ msgstr "Ostatak dana"
msgid "Restore"
msgstr "Vrati"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Vrati Originalne Dozvole"
@@ -22249,6 +22442,11 @@ msgstr "Vraćanje Izbrisanog Dokumenta u toku"
msgid "Restrict IP"
msgstr "Ograniči IP"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr "Ograniči Uklanjanje"
+
#. 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'
@@ -22276,8 +22474,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Ograničenja"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Rezultat"
@@ -22324,9 +22522,15 @@ msgstr "Opozvano"
msgid "Rich Text"
msgstr "Rich Text"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22361,8 +22565,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22377,8 +22579,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22422,7 +22623,7 @@ msgstr "Dozvole Uloge"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
@@ -22430,11 +22631,9 @@ msgstr "Upravitelj Dozvola Uloge"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Profil Uloge"
@@ -22456,7 +22655,7 @@ msgstr "Replikacija Uloge"
msgid "Role and Level"
msgstr "Uloga i Nivo"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Uloga je postavljena prema tipu korisnika {0}"
@@ -22575,20 +22774,20 @@ msgstr "Preusmjeravanja Rute"
msgid "Route: Example \"/app\""
msgstr "Ruta: Primjer \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Red"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "Red #"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} na prilagođeni tip dokumenta"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr "Red # {0}: Korisnici koji nisu administratori ne mogu dodati ulogu {1} prilagođenom DocType-u."
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Red #{0}:"
@@ -22615,7 +22814,7 @@ msgstr "Naziv Reda"
msgid "Row Number"
msgstr "Broj Reda"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Vrijednosti Reda Promijenjene"
@@ -22634,14 +22833,14 @@ msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardn
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
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:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Ukonjeni Redovi"
@@ -22664,7 +22863,7 @@ msgstr "Pravilo"
msgid "Rule Conditions"
msgstr "Uslovi Pravila"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
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."
@@ -22744,7 +22943,7 @@ msgstr "SMS Postavke"
msgid "SMS sent successfully"
msgstr "SMS je uspješno poslan"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS nije poslan. Kontaktiraj Administratora."
@@ -22778,7 +22977,7 @@ msgstr "SQL Izlaz"
msgid "SQL Queries"
msgstr "SQL Upiti"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr "SQL funkcije nisu dozvoljene kao stringovi u SELECT: {0}. Umjesto toga koristite dict sintaksu poput {{'COUNT': '*'}}."
@@ -22850,22 +23049,23 @@ msgstr "Subota"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22878,7 +23078,7 @@ msgid "Save Anyway"
msgstr "Svejedno Spremi"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Spremi Kao"
@@ -22886,7 +23086,7 @@ msgstr "Spremi Kao"
msgid "Save Customizations"
msgstr "Spremi Prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Spremi Izvještaj"
@@ -22904,20 +23104,20 @@ msgid "Save the document."
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:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Spremljeno"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Spremjeni Filteri"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Sprema se"
@@ -22926,11 +23126,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Sprema se"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr "Spremanje Promjena..."
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Spremaju se Prilagođavanja..."
@@ -23134,7 +23334,7 @@ msgstr "Skripte"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23154,7 +23354,7 @@ msgstr "Traka Pretrage"
msgid "Search Fields"
msgstr "Polja Pretrage"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Pomoć Pretrage"
@@ -23172,7 +23372,7 @@ msgstr "Rezultati Pretrage"
msgid "Search by filename or extension"
msgstr "Pretraga po imenu datoteke ili ekstenziji"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Polje za pretragu {0} nije važeće"
@@ -23189,12 +23389,12 @@ msgstr "Tipove Polja za Pretragu..."
msgid "Search for anything"
msgstr "Traži bilo šta"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "Traži {0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Traži u tipu dokumenta"
@@ -23266,15 +23466,15 @@ msgstr "Sekcija mora imati najmanje jednu kolonu"
msgid "Security Settings"
msgstr "Sigurnosne Postavke"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Pogledaj Sve Aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izvještaje."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Vidi na web stranici"
@@ -23324,24 +23524,26 @@ msgstr "Viđeno prema Tabeli"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Odaberi"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Odaberi sve"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23357,7 +23559,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Odaberi Kolone"
@@ -23401,13 +23603,13 @@ msgstr "Odaberi vrstu dokumenta"
msgid "Select Document Type or Role to start."
msgstr "Odaberi Tip Dokumenta ili Ulogu."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Odaberi Polje"
@@ -23416,7 +23618,7 @@ msgstr "Odaberi Polje"
msgid "Select Field..."
msgstr "Odaberi Polje..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Odaberi Polja"
@@ -23425,19 +23627,19 @@ msgstr "Odaberi Polja"
msgid "Select Fields (Up to {0})"
msgstr "Odaberite Polja (do {0})"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Odaberite Polja za Umetanje"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Odaberi Polja za Ažuriranje"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Odaberi Filtere"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Odaberi Google Kalendar s kojim događaj treba sinhronizirati."
@@ -23462,16 +23664,16 @@ msgstr "Odaberi Jezik"
msgid "Select List View"
msgstr "Odaberi Prikaz Liste"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Odaberi Obavezno"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Odaberi Modul"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Odaberi Mrežni Pisač"
@@ -23481,7 +23683,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Odaberi Ispis Format"
@@ -23517,12 +23719,6 @@ msgstr "Odaberi Radni Tok"
msgid "Select Workspace"
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 "Odaberi Radni Prostor"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Prvo odaberi sliku Marke."
@@ -23539,11 +23735,11 @@ msgstr "Odaberi polje da biste uredili njegova svojstva."
msgid "Select a group {0} first."
msgstr "Odaberi grupu {0}."
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Odaberi važeće Polje Pošiljatelja za kreiranje dokumenata iz e-pošte"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Odaberi važeće Polje Predmeta za kreiranje dokumenata iz e-pošte"
@@ -23569,13 +23765,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:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Odaberi Artikal Liste"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Odaberi artikle više listi"
@@ -23609,7 +23805,7 @@ msgstr "Odaberi dvije verzije da vidite razliku."
msgid "Select {0}"
msgstr "Odaberi {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Samoodobrenje nije dozvoljeno"
@@ -23639,6 +23835,11 @@ msgstr "Pošalji Poslije"
msgid "Send Alert On"
msgstr "Pošalji Upozorenje"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr "Pošalji kao HTML"
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23691,7 +23892,7 @@ msgstr "Pošalji Sad"
msgid "Send Print as PDF"
msgstr "Pošalji Ispis kao PDF"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Pošalji Potvrdu o Čitanju"
@@ -23754,7 +23955,7 @@ 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:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Pošalji Mi Kopiju"
@@ -23793,7 +23994,7 @@ msgstr "E-pošta Pošiljatelja"
msgid "Sender Email Field"
msgstr "Polje e-pošte Pošiljatelja"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Polje Pošiljatelja treba da ima opciju E-pošta"
@@ -23887,7 +24088,7 @@ msgstr "Serija Imenovanja Ažurirana za {}"
msgid "Series counter for {} updated to {} successfully"
msgstr "Brojač Serija Imenovanja za {} uspješno je ažuriran na {}"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Serija Imenovanja {0} se već koristi u {1}"
@@ -23897,7 +24098,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}"
msgid "Server Action"
msgstr "Radnja Servera"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Greška Servera"
@@ -23924,11 +24125,15 @@ msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfi
msgid "Server Scripts feature is not available on this site."
msgstr "Funkcija server skripti nije dostupna na ovoj stranici."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr "Greška servera tokom otpremanja. Datoteka je možda oštećena."
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "Server nije uspio obraditi ovaj zahtjev zbog istovremenog konfliktnog zahtjeva. Molimo pokušajte ponovo."
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "Server je bio prezauzet za obradu ovog zahtjeva. Pokušaj ponovo."
@@ -23956,16 +24161,14 @@ msgstr "Standard Sesija"
msgid "Session Default Settings"
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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Standard Sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
@@ -24006,7 +24209,7 @@ msgstr "Postavi"
msgid "Set Banner from Image"
msgstr "Postavi Transparent sa Slike"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Potavi grafikon"
@@ -24032,7 +24235,7 @@ msgstr "Postavi Filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Postavi Nivo"
@@ -24075,8 +24278,8 @@ msgstr "Postavi svojstva"
msgid "Set Property After Alert"
msgstr "Postavi Svojstvo Nakon Upozorenja"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Postavi Količinu"
@@ -24096,12 +24299,12 @@ msgstr "Postavi Korisničke Dozvole"
msgid "Set Value"
msgstr "Postavi Vrijednost"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Postavi sve privatno"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Postavi sve javno"
@@ -24229,8 +24432,8 @@ msgstr "Postavljanje vašeg sistema"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24253,11 +24456,11 @@ msgstr "Postavke za O nama Stranicu"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Postavljanja"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Postavljanje> Prilagodi Formu"
@@ -24265,12 +24468,12 @@ msgstr "Postavljanje> Prilagodi Formu"
msgid "Setup > User"
msgstr "Postavljanje> Korisnik"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Postavljanje > Korisničke Dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Postavljanje Automatske e-pošte"
@@ -24299,13 +24502,14 @@ msgstr "Postavljanje nije uspjelo"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Dijeli"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Podijeli sa"
@@ -24313,7 +24517,7 @@ msgstr "Podijeli sa"
msgid "Share this document with"
msgstr "Podijeli ovaj dokument sa"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Podijeli {0} sa"
@@ -24373,16 +24577,10 @@ msgstr "Prikaži Apsolutni Datum i Vrijeme na Vremenskoj Liniji"
msgid "Show Absolute Values"
msgstr "Prikaži Apsolutne Vrijednosti"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Prikaži Sve"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr "Prikaži Ikone Aplikacija kao Mapu"
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24428,7 +24626,7 @@ msgstr "Prikaži Grešku"
msgid "Show External Link Warning"
msgstr "Prikaži upozorenje o eksternim linkovima"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)"
@@ -24480,7 +24678,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:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Prikaži Veze"
@@ -24600,7 +24798,7 @@ msgstr "Prikaži Vikende"
msgid "Show account deletion link in My Account page"
msgstr "Prikaži vezu za brisanje računa na stranici Moj Račun"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Prikaži sve Verzije"
@@ -24742,7 +24940,7 @@ msgstr "Odjava"
msgid "Sign Up and Confirmation"
msgstr "Prijava i Potvrda"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Prijava je onemogućena"
@@ -24865,7 +25063,7 @@ msgstr "Preskače se Kolona bez Naziva"
msgid "Skipping column {0}"
msgstr "Preskače se kolona {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "Preskače se sinhronizacija fiksiranja za tip dokumenta {0} iz datoteke {1}"
@@ -25040,15 +25238,15 @@ msgstr "Nešto je pošlo po zlu"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
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
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Nešto je pošlo po zlu."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Izvinite! Nije pronađeno ono što tražite."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Izvinite! Nije vam dozvoljeno da vidite ovu stranicu."
@@ -25079,13 +25277,13 @@ msgstr "Opcije Sortiranja"
msgid "Sort Order"
msgstr "Redoslijed Sortiranja"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "Polje sortiranja {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25134,7 +25332,7 @@ msgstr "Pokreće radnje u pozadinskom poslu"
msgid "Special Characters are not allowed"
msgstr "Posebni Znakovi nisu dozvoljeni"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Posebni Znakovi osim '-', '#', '.', '/', '{{' and '}}' nisu dozvoljeni u seriji imenovanja {0}"
@@ -25173,6 +25371,7 @@ msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25180,6 +25379,7 @@ msgstr "Stack Trace"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25247,8 +25447,8 @@ 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:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Počni"
@@ -25420,7 +25620,7 @@ msgstr "Vremenski Interval Statistike"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25458,7 +25658,7 @@ msgstr "Koraci za provjeru vaše prijave"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "Sticky"
@@ -25572,7 +25772,7 @@ msgstr "Poddomena"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Predmet"
@@ -25586,7 +25786,7 @@ msgstr "Predmet"
msgid "Subject Field"
msgstr "Polje Predmeta"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Tip Polja Predmeta treba da bude Podaci, Tekst, Dugi Tekst, Mali Tekst, Uređivač Teksta"
@@ -25607,14 +25807,14 @@ msgstr "Red Podnošenja"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Rezerviši"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Rezerviši"
@@ -25644,7 +25844,7 @@ msgstr "Potvrdi"
msgid "Submit After Import"
msgstr "Rezerviši Nakon Uvoza"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Prijavi Slučaj"
@@ -25668,11 +25868,11 @@ msgstr "Rezerviši pri Kreiranju"
msgid "Submit this document to complete this step."
msgstr "Pošalji ovaj dokument da dovršite ovaj korak."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Pošalji ovaj dokument da potvrdite"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Pošalji {0} dokumenata?"
@@ -25698,7 +25898,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Rezerviše se"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Pošalji {0}"
@@ -25733,12 +25933,12 @@ msgstr "Suptilno"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25780,7 +25980,7 @@ msgstr "Naziv Uspjeha"
msgid "Successful Job Count"
msgstr "Broj Uspješnih Poslova"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Uspješne Transakcije"
@@ -25805,7 +26005,7 @@ msgstr "Uspješno uvezeno {0} od {1} zapisa."
msgid "Successfully reset onboarding status for all users."
msgstr "Uspješno poništen status introdukcije za sve korisnike."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr "Odjavljen/a"
@@ -25830,7 +26030,7 @@ msgstr "Predloži Optimizacije"
msgid "Suggested Indexes"
msgstr "Predloženi Indeksi"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Predloženo Korisničko Ime: {0}"
@@ -25871,7 +26071,7 @@ msgstr "Nedjelja"
msgid "Suspend Sending"
msgstr "Obustavi Slanje"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Promijeni Kameru"
@@ -25884,7 +26084,7 @@ msgstr "Promijeni Temu"
msgid "Switch To Desk"
msgstr "Promjeni na Radnu Površinu"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Mijenja se Kamera"
@@ -25953,9 +26153,7 @@ msgid "Syntax Error"
msgstr "Greška Sintakse"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "Sistem"
@@ -25965,7 +26163,7 @@ msgstr "Sistem"
msgid "System Console"
msgstr "Sistemska Konzola"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "Sistemski Generisana Polja ne mogu se preimenovati"
@@ -26092,6 +26290,7 @@ msgstr "Sistemski Zapisnici"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26106,7 +26305,6 @@ msgstr "Sistemski Zapisnici"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26182,6 +26380,11 @@ msgstr "Sistemska Stranica"
msgid "System Settings"
msgstr "Postavke Sistema"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr "Korisnici Sistema"
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26198,6 +26401,12 @@ msgstr "T"
msgid "TOS URI"
msgstr "URI Uvjeta Pružanja Usluge"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+msgstr "Kartica"
+
#. 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'
@@ -26233,7 +26442,7 @@ msgstr "Tabela"
msgid "Table Break"
msgstr "Prijelom Tabele"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Polje Tabele"
@@ -26242,7 +26451,7 @@ msgstr "Polje Tabele"
msgid "Table Fieldname"
msgstr "Naziv Polja Tabele"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Nedostaje Naziv Polja Tabele"
@@ -26260,7 +26469,7 @@ msgstr "HTML Tabele"
msgid "Table MultiSelect"
msgstr "Višestruki Odabir Tabele"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr "Višestruki odabir tabele zahtijeva tabelu sa barem jednim poljem za vezu, ali nijedno nije pronađeno u {0}"
@@ -26268,11 +26477,11 @@ msgstr "Višestruki odabir tabele zahtijeva tabelu sa barem jednim poljem za vez
msgid "Table Trimmed"
msgstr "Tabela Optimizirana"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Tabela Ažurirana"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -26292,17 +26501,17 @@ msgid "Tag Link"
msgstr "Veza Oznake"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Oznake"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Uslikaj"
@@ -26386,7 +26595,7 @@ msgstr "Šablon Upozorenja"
msgid "Templates"
msgstr "Šabloni"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Privremeno Onemogućeno"
@@ -26484,7 +26693,7 @@ msgstr "Hvala"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Automatsko Ponavljanje za ovaj dokument je onemogućeno."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "CSV format razlikuje velika i mala slova"
@@ -26540,7 +26749,7 @@ msgstr "API ključ pretraživača preuzet sa Google Cloud Console pod "
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr "Promjene su vraćene."
@@ -26556,7 +26765,7 @@ msgstr "Komentar ne može biti prazan"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
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:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Prikazani broj je procijenjen. Klikni ovdje da vidite tačan broj."
@@ -26582,11 +26791,15 @@ msgstr "Dokument je dodijeljen {0}"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "Odabrani tip dokumenta je podređena tabela, tako da je obavezan tip nadređenog dokumenta."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr "Dugme e-pošte je omogućeno za korisnika u dokumentu."
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr "Polje {0} u {1} ne dozvoljava ignorisanje korisničkih dozvola"
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr "Polje {0} u {1} povezuje na {2}, a ne na {3}"
@@ -26653,6 +26866,10 @@ msgstr "Broj sekundi do isteka zahtjeva"
msgid "The password of your account has expired."
msgstr "Lozinka vašeg računa je istekla."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+msgstr "Dugme ispisa omogućeno je za korisnika u dokumentu."
+
#: 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 "Proces brisanja {0} podataka povezanih sa {1} je pokrenut."
@@ -26670,15 +26887,15 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "Izvještaj koji ste tražili je generiran.
Kliknite ovdje za preuzimanje:
{0}
Ovaj link će isteći za {1} sati."
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "Veza za poništavanje lozinke je istekla"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
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:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26690,7 +26907,7 @@ msgstr "Uloga {0} bi trebala biti prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Odabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka."
@@ -26702,6 +26919,42 @@ msgstr "Sistem pruža mnogo unapred definisanih uloga. Možete dodati nove uloge
msgid "The total number of user document types limit has been crossed."
msgstr "Prekoračeno je ograničenje ukupnog broja tipova korisničkih dokumenata."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr "Korisnik može kreirati novi artikal, ali ne može uređivati postojeći artikal."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr "Korisnik može izbrisati Nacrte / Otkazane dokumente."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr "Korisnik može izvesti podatke izvještaja."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr "Korisnik može uvesti nove zapise ili ažurirati postojeće podatke za dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr "Korisnik može odabrati klijenta u Prodajnom Nalogu, ali ne može otvoriti Registar Klijenta."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr "Korisnik može dijeliti pristup dokumentu s drugim korisnikom."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr "Korisnik može ažurirati klijenta ili bilo koja druga polja u postojećem Prodajnom Nalogu, ali ne može kreirati novi Prodajni Nalog."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr "Korisnik može pregledati Prodajne Fakture, ali ne može mijenjati vrijednosti polja u njima."
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+msgstr "Vrijednost polja {0} je predugačka u dokumentu {1}. Da biste riješili ovaj problem, smanjite dužinu vrijednosti ili promijenite polje {0} u Dugi tekst koristeći prilagođeni obrazac, a zatim pokušajte ponovo."
+
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr "Vrijednost koju ste zalijepili bila je od {0} znakova. Maksimalni dopušteni broj znakova je {1}."
@@ -26743,7 +26996,7 @@ msgstr "URL Teme"
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 "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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Nema predstojećih događaja za vas."
@@ -26751,7 +27004,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "U redu čekanja već postoji {0} s istim filterima:"
@@ -26760,7 +27013,7 @@ msgstr "U redu čekanja već postoji {0} s istim filterima:"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "U formi može postojati samo jedan preklop"
@@ -26772,11 +27025,11 @@ msgstr "Postoji greška u vašem šablonu adrese {0}"
msgid "There is no data to be exported"
msgstr "Nema podataka za izvoz"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "Ne postoji zadatak pod nazivom \"{}\""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Trenutno nema ništa novo za pokazati."
@@ -26784,7 +27037,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:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "Postoji {0} s istim filterima već u redu čekanja:"
@@ -26800,7 +27053,7 @@ msgstr "Došlo je do greške pri izradi ove stranice"
msgid "There was an error saving filters"
msgstr "Došlo je do greške prilikom spremanja filtera"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Bilo je grešaka"
@@ -26808,11 +27061,11 @@ 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:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru"
@@ -26881,11 +27134,11 @@ 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:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ovo se ne može poništiti"
@@ -26909,7 +27162,7 @@ msgstr "Ovaj grafikon će biti dostupan svim korisnicima ako je ovo postavljeno"
msgid "This doctype has no orphan fields to trim"
msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
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."
@@ -26925,15 +27178,15 @@ msgstr "Ovaj dokument je već stavljen u red čekanja za podnošenje. Napredak m
msgid "This document has been modified after the email was sent."
msgstr "Ovaj dokument je izmijenjen nakon slanja e-pošte."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
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:1105
+#: frappe/public/js/frappe/form/form.js:1134
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:509
+#: frappe/model/document.py:508
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."
@@ -26947,7 +27200,7 @@ msgid "This feature can not be used as dependencies are missing.\n"
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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "Ova funkcija je potpuno nova i još uvijek eksperimentalna"
@@ -26975,11 +27228,11 @@ msgstr "Ova datoteka je javna i može joj pristupiti bilo ko, čak i bez prijave
msgid "This file is public. It can be accessed without authentication."
msgstr "Ova datoteka je javna. Može joj se pristupiti bez autentifikacije."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Ova forma je izmijenjena nakon što ste je učitali"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "Ova formu nije moguće uređivati zbog Radnog Toka."
@@ -26998,7 +27251,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:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
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."
@@ -27040,15 +27293,15 @@ msgstr "Ova veza je već aktivirana radi verifikacije."
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Ova veza nije važeća ili je istekla. Provjerite jeste li ispravno zalijepili."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Ovo se može ispisati na više stranica"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Ovog mjeseca"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
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."
@@ -27056,7 +27309,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:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Ovaj izvještaj je generisan {0}."
@@ -27080,7 +27333,7 @@ msgstr "Ovaj softver je izgrađen pomoću mnogih open source paketa."
msgid "This title will be used as the title of the webpage as well as in meta tags"
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
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "Ova se vrijednost preuzima iz {0} polja {1}"
@@ -27124,7 +27377,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:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Prigušeno"
@@ -27155,6 +27408,7 @@ msgstr "Četvrtak"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27162,6 +27416,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Vrijeme"
@@ -27244,11 +27499,6 @@ msgstr "Vrijeme {0} mora biti u formatu: {1}"
msgid "Timed Out"
msgstr "Vrijeme Isteklo"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr "Timeless Launchpad"
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Timeless Night"
@@ -27280,11 +27530,11 @@ msgstr "Veze Vremenske Linije"
msgid "Timeline Name"
msgstr "Naziv Vremenske Linije"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "Polje Vremenske Linije mora biti veza ili Dinamička Veza"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "Polje vremenske linije mora biti važeće ime polja"
@@ -27355,7 +27605,7 @@ msgstr "Savjet: Isprobaj novu konzolu koristeći"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27378,7 +27628,7 @@ msgstr "Polje Naziva"
msgid "Title Prefix"
msgstr "Prefiks Naziva"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Polje Naziva mora biti važeće ime polja"
@@ -27469,7 +27719,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:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}."
@@ -27522,31 +27772,14 @@ msgstr "Za Uraditi"
msgid "Today"
msgstr "Danas"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Prebaci grafikon"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Prebaci Punu Širinu"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Uključi Prikaz Mreže"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Prebaci Bočnu Traku"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Prebaci Temu"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27582,7 +27815,7 @@ msgid "Tomorrow"
msgstr "Sutra"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "Previše Dokumenata"
@@ -27590,15 +27823,19 @@ msgstr "Previše Dokumenata"
msgid "Too Many Requests"
msgstr "Previše Zahtjeva"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "Previše promjena u bazi podataka u jednoj akciji."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
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:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr "Previše zahtjeva. Pokušajte ponovo kasnije."
+
+#: frappe/core/doctype/user/user.py:1093
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"
@@ -27654,10 +27891,10 @@ msgstr "Vrh Desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Ukupno"
@@ -27672,7 +27909,7 @@ msgstr "Ukupno Pozadinskih Radnika"
msgid "Total Errors (last 1 day)"
msgstr "Ukupno Greška (posljednji dan)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Ukupno Slika"
@@ -27774,7 +28011,7 @@ msgstr "Pratite je li primatelj otvorio vašu e-poštu.\n"
msgid "Track milestones for any document"
msgstr "Prati prekretnice za bilo koji dokument"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL praćenja generisan i kopiran u međuspremnik"
@@ -27810,7 +28047,7 @@ msgstr "Prelazi"
msgid "Translatable"
msgstr "Prevodivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "Prevedi Podatke"
@@ -27821,7 +28058,7 @@ msgstr "Prevedi Podatke"
msgid "Translate Link Fields"
msgstr "Prevedi Polja Veza"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Prevedi vrijednosti"
@@ -27857,7 +28094,7 @@ msgstr "Otpad"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "Stablo"
@@ -27906,8 +28143,8 @@ msgstr "Pokušaj ponovo"
msgid "Try a Naming Series"
msgstr "Isprobaj Seriju Imenovanja"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Isprobaj novi Dizajner Ispisa"
@@ -27953,6 +28190,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije"
#. 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 'Event Notifications'
#. 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'
@@ -27966,6 +28204,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije"
#: 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/event_notifications/event_notifications.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
@@ -27974,7 +28213,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28142,7 +28381,7 @@ msgstr "UTM Izvor"
msgid "UUID"
msgstr "UUID"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "Prekidanje praćenja dokumenta {0}"
@@ -28150,7 +28389,7 @@ msgstr "Prekidanje praćenja dokumenta {0}"
msgid "Unable to find DocType {0}"
msgstr "Nije moguće pronaći DocType {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Nije moguće učitati kameru."
@@ -28166,7 +28405,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:180
+#: frappe/core/doctype/communication/email.py:204
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"
@@ -28187,20 +28426,20 @@ msgstr "Poništi Dodjelu Uslova"
msgid "Uncaught Exception"
msgstr "Neuhvaćena Iznimka"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Nepromijenjeno"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Poništi"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Poništi posljednju radnju"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Prestani Pratiti"
@@ -28276,9 +28515,10 @@ msgstr "Nepročitana Obavijest Poslana"
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "Poništi Odabir Svih"
@@ -28311,11 +28551,11 @@ msgstr "Parametri Otkazivanja"
msgid "Unsubscribed"
msgstr "Otkazano"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr "Nepodržana funkcija ili operator: {0}"
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr "Nepodržano {0}: {1}"
@@ -28335,7 +28575,7 @@ msgstr "Raspakovano {0} datoteka"
msgid "Unzipping files..."
msgstr "Raspakivanje datoteka..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Nadolazeći Događaji za Danas"
@@ -28343,13 +28583,13 @@ msgstr "Nadolazeći Događaji za Danas"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Ažuriraj"
@@ -28420,7 +28660,7 @@ msgstr "Ažuriraj Vrijednost"
msgid "Update from Frappe Cloud"
msgstr "Ažuriraj sa Frappe Cloud-a"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "Ažuriraj {0} zapisa"
@@ -28428,8 +28668,7 @@ msgstr "Ažuriraj {0} zapisa"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Ažurirano"
@@ -28441,11 +28680,11 @@ msgstr "Uspješno Ažurirano"
msgid "Updated To A New Version 🎉"
msgstr "Ažurirano na Novu Verziju 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Uspješno Ažurirano"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Ažuriranje"
@@ -28470,11 +28709,11 @@ msgstr "Ažuriraju se globalne postavke"
msgid "Updating naming series options"
msgstr "Ažuriraju se opcije imenovanja serije"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "Ažuriraju se povezana polja..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Ažurira se {0}"
@@ -28482,12 +28721,12 @@ msgstr "Ažurira se {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "Ažurira se {0} od {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "Plan Ažuriranja"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28535,6 +28774,7 @@ msgstr "Koristi Prvi Dan Perioda"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "Koristi HTML"
@@ -28606,7 +28846,7 @@ msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno"
msgid "Use of sub-query or function is restricted"
msgstr "Korištenje podupita ili funkcije je ograničena"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Koristi novi Konstruktor Formata Ispisa"
@@ -28640,9 +28880,8 @@ msgstr "Korišten OAuth"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28669,11 +28908,11 @@ msgstr "Korišten OAuth"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28809,7 +29048,7 @@ msgstr "Slika Korisnika"
msgid "User Invitation"
msgstr "Korisnička Pozivnica"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Korisnički Meni"
@@ -28825,19 +29064,19 @@ msgid "User Permission"
msgstr "Korisnička Dozvola"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Korisničke Dozvole"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Korisničke Dozvole"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "Korisničke Dozvole se koriste za ograničavanje korisnika na određene zapise."
@@ -28910,7 +29149,7 @@ msgstr "Korisnik se može prijaviti koristeći E-poštu ili Broj Mobilnog Telefo
msgid "User can login using Email id or User Name"
msgstr "Korisnik se može prijaviti koristeći E-poštu ili Korisničko Ime"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "Korisnik ne postoji."
@@ -28944,27 +29183,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Korisnik {0} se ne može izbrisati"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Korisnik {0} se ne može onemogućiti"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Korisnik {0} se ne može preimenovati"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "Korisnik {0} nema pristup ovom dokumentu"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Korisnik {0} nema pristup tipu dokumenta preko dopuštenja uloge za dokument {1}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora."
@@ -28973,11 +29212,11 @@ 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:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "Korisnik {0} predstavljen kao {1}"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Korisnik {0} je onemogućen"
@@ -29002,18 +29241,17 @@ msgstr "URI informacija Korisnika"
msgid "Username"
msgstr "Korisničko Ime"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Korisničko Ime {0} već postoji"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29084,7 +29322,7 @@ msgstr "Validiraj Frappe Mail Postavke"
msgid "Validate SSL Certificate"
msgstr "Potvrdite SSL certifikat"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Greška pri Validaciji"
@@ -29113,7 +29351,7 @@ msgstr "Validnost"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29140,15 +29378,19 @@ msgstr "Vrijednost Promijenjena"
msgid "Value To Be Set"
msgstr "Vrijednost Koju Treba Postaviti"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr "Vrijednost je predugačka"
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Vrijednost se ne može promijeniti za {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Vrijednost ne može biti negativna za"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Vrijednost ne može biti negativna za {0}: {1}"
@@ -29160,7 +29402,7 @@ msgstr "Vrijednost polja za provjeru može biti 0 ili 1"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "Vrijednost za {0} ne može biti lista"
@@ -29185,7 +29427,13 @@ msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, ta
msgid "Value to Validate"
msgstr "Vrijednost za Provjeru"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr "Vrijednost koju treba postaviti kada se primijeni ovo stanje radnog procesa. Koristite običan tekst (npr. Odobreno) ili izraz ako je omogućeno \"Procijeni kao izraz\"."
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Vrijednost je Prevelika"
@@ -29202,7 +29450,7 @@ msgstr "Vrijednost {0} mora biti u važećem formatu trajanja: d h m s"
msgid "Value {0} must in {1} format"
msgstr "Vrijednost {0} mora biti u {1} formatu"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Vrijednosti Promijenjene"
@@ -29211,11 +29459,11 @@ msgstr "Vrijednosti Promijenjene"
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Verifikacija"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Verfikacijski Kod"
@@ -29223,7 +29471,7 @@ msgstr "Verfikacijski Kod"
msgid "Verification Link"
msgstr "Veza za Verifikaciju"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "E-pošta sa verifikacionim kodom nije poslana. Kontaktiraj Administratora."
@@ -29237,7 +29485,7 @@ msgid "Verified"
msgstr "Provjereno"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Provjeri"
@@ -29273,7 +29521,7 @@ msgstr "Prikaz"
msgid "View All"
msgstr "Prikaži Sve"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "Prikaži Trag"
@@ -29285,7 +29533,7 @@ msgstr "Prikaz Doctype Dozvola"
msgid "View File"
msgstr "Prikaži datoteku"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Prikaži Cijeli Zapisnik"
@@ -29322,7 +29570,7 @@ msgstr "Prikaži Izvještaj"
msgid "View Settings"
msgstr "Pogledaj Postavke"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr "Prikaži Bočnu Traku"
@@ -29331,14 +29579,11 @@ msgstr "Prikaži Bočnu Traku"
msgid "View Switcher"
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 "Prikaži Web Stranicu"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr "Prikaži sve {0} korisnike"
@@ -29354,7 +29599,7 @@ msgstr "Prrikaži izvještaj u vašem pretraživaču"
msgid "View this in your browser"
msgstr "Prikaži ovo u svom pretraživaču"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Prikaži svoj odgovor"
@@ -29390,7 +29635,7 @@ msgstr "Virtualni DocType {} zahtijeva statičku metodu pod nazivom {} pronađen
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "Virtualni DocType {} zahtijeva nadjačavanje metode instance koja se zove {} pronađena {}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr "Virtuelne tabele moraju biti virtuelna polja"
@@ -29438,7 +29683,7 @@ msgstr "Skladište"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Upozorenje"
@@ -29447,7 +29692,7 @@ msgstr "Upozorenje"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
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:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Upozorenje: Imenovanje nije postavljeno"
@@ -29531,7 +29776,7 @@ msgstr "Web Stranica"
msgid "Web Page Block"
msgstr "Blok Web Stranice"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "URL Web Stranice"
@@ -29628,7 +29873,7 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29683,7 +29928,7 @@ msgstr "Skripta Web Stranice"
msgid "Website Search Field"
msgstr "Polje Pretraživanja Web Stranice"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Polje Pretraživanja Web Stranice mora biti važeće ime polja"
@@ -29748,6 +29993,11 @@ msgstr "Veza Slike Teme Web Stranice"
msgid "Website Themes Available"
msgstr "Dostupne Teme Web Stranice"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr "Korisnici Web Stranice"
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29835,15 +30085,15 @@ msgstr "URL Dobrodošlice"
msgid "Welcome Workspace"
msgstr "Početni Radni Prostor"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "E-pošta Dobrodošlice poslana"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Dobrodošli u {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Šta je Novo"
@@ -29865,10 +30115,6 @@ msgstr "Kada šaljete dokument putem e-pošte, spremi PDF iz Konverzacije. Upozo
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 "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 "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
@@ -29886,7 +30132,7 @@ msgstr "Na koji prikaz povezanog DocType bi vas ova prečica trebala odvesti?"
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Širina"
@@ -30007,6 +30253,10 @@ msgstr "Radni Tok Detalji"
msgid "Workflow Document State"
msgstr "Stanje Dokumenta Radnog Toka"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr "Greška u evaluaciji radnog toka"
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -30024,11 +30274,11 @@ msgstr "Stanje Radnog Toka"
msgid "Workflow State Field"
msgstr "Polje stanja radnog toka"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Stanje Radnog Toka nije postavljeno"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}"
@@ -30036,7 +30286,7 @@ msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}"
msgid "Workflow States Don't Exist"
msgstr "Stanja Radnog Toka ne postoje"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Status Radnog Toka"
@@ -30071,18 +30321,15 @@ 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
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Radni Prostor"
@@ -30109,7 +30356,6 @@ 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 "Upravitelj Radnog Prostora"
@@ -30123,27 +30369,15 @@ msgstr "Numerička Kartica Radnog Prostora"
msgid "Workspace Quick List"
msgstr "Brza Lista Radnog Prostora"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "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 "Postavljanje Radnog Prostora je završeno"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Prečica Radnog Prostora"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr "Bočna Traka Radnog Prostora"
@@ -30153,13 +30387,7 @@ msgstr "Bočna Traka Radnog Prostora"
msgid "Workspace Sidebar Item"
msgstr "Artikal Bočne Trake 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 "Vidljivost Radnog Prostora"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "Radni Prostor {0} kreiran"
@@ -30188,11 +30416,12 @@ msgstr "Završava se.."
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "Piši"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Pogrešno Peuzimanje iz vrijednosti"
@@ -30210,7 +30439,7 @@ msgstr "X Polje"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr "XMLHttpRequest Greška"
@@ -30225,7 +30454,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y Polje"
@@ -30273,10 +30502,14 @@ msgstr "Žuta"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30285,10 +30518,10 @@ msgstr "Žuta"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -30324,7 +30557,7 @@ msgstr "Dodali ste 1 red u {0}"
msgid "You added {0} rows to {1}"
msgstr "Dodali ste {0} redova u {1}"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "Upravo ćete otvoriti eksterni link. Za potvrdu, ponovo kliknite na link."
@@ -30332,7 +30565,7 @@ msgstr "Upravo ćete otvoriti eksterni link. Za potvrdu, ponovo kliknite na link
msgid "You are connected to internet."
msgstr "Povezani ste na internet."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "Predstavljate se kao neki drugi korisnik."
@@ -30340,11 +30573,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:437
+#: frappe/permissions.py:443
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:426
+#: frappe/permissions.py:432
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}"
@@ -30367,7 +30600,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:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "Nije vam dozvoljeno da izvezete {} doctype"
@@ -30375,10 +30608,14 @@ 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:778
+#: frappe/public/js/frappe/views/communication.js:845
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/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr "Nije vam dozvoljeno ažuriranje statusa ovog događaja."
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme"
@@ -30395,7 +30632,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:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
@@ -30403,7 +30640,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
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."
@@ -30416,7 +30653,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "Priložili ste {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Možete dodati dinamička svojstva iz dokumenta korištenjem Jinja šablona."
@@ -30440,10 +30677,6 @@ msgstr "Također možete kopirati i zalijepiti ovo {0} u svoj pretraživač"
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "Možete zamoliti svoj tim da ponovo pošalje pozivnicu ako se i dalje želite pridružiti."
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-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 "Pravila zadržavanja možete promijeniti u {0}."
@@ -30498,7 +30731,7 @@ msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika pri
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati promijeniti filtere vašeg izvještaja."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima."
@@ -30528,6 +30761,10 @@ msgstr "Otkazali ste ovaj dokument {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr "Ne možete dijeliti `{0}` na {1} `{2}` jer nemate dozvolu `{0}` na `{1}`"
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}"
@@ -30554,7 +30791,6 @@ msgid "You changed {0} to {1}"
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:152
msgid "You created this"
msgstr "Vi ste kreirali ovo"
@@ -30563,11 +30799,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "Vi ste kreirali ovaj dokument {0}"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
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."
@@ -30579,15 +30811,19 @@ msgstr "Nemate dovoljno dozvola da dovršite radnju"
msgid "You do not have import permission for {0}"
msgstr "Nemate dozvolu za uvoz za {0}"
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr "Nemate dozvolu za pristup podređenom polju tabele: {0}"
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "Nemate dozvolu za pristup polju: {0}"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata."
@@ -30623,7 +30859,7 @@ msgstr "Uspješno ste odjavljeni"
msgid "You have hit the row size limit on database table: {0}"
msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Niste unijeli vrijednost. Polje će biti prazno."
@@ -30643,7 +30879,7 @@ msgstr "Niste vidjeli {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "{0} nema u sistemu"
@@ -30652,7 +30888,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Dosegli ste ograničenje zbog previše zahtjeva. Molimo pokušajte nakon nekog vremena."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Zadnji put ste uređivali ovo"
@@ -30668,12 +30903,12 @@ msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac."
msgid "You must login to submit this form"
msgstr "Morate se prijaviti da pošaljete ovu formu"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
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."
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Morate biti Upravitelj Radnog Prostora da biste izbrisali javni radni prostor."
@@ -30681,7 +30916,7 @@ msgstr "Morate biti Upravitelj Radnog Prostora da biste izbrisali javni radni pr
msgid "You need to be Workspace Manager to edit this document"
msgstr "Morate biti Upravitelj Radnog Prostora da biste uredili ovaj dokument"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici."
@@ -30713,7 +30948,7 @@ msgstr "Morate omogućiti JavaScript da bi vaša aplikacija radila."
msgid "You need to have \"Share\" permission"
msgstr "Morate imati dozvolu \"Dijeli\""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Morate instalirati pycups da biste koristili ovu funkciju!"
@@ -30733,7 +30968,7 @@ msgstr "Trebate dozvolu za pisanje na {0} {1} za spajanje"
msgid "You need write permission on {0} {1} to rename"
msgstr "Trebate dozvolu za pisanje na {0} {1} da biste preimenovali"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "Trebate {0} dozvolu da preuzmete vrijednosti iz {1} {2}"
@@ -30780,7 +31015,7 @@ msgstr "Prestali ste pratiti ovaj dokument"
msgid "You viewed this"
msgstr "Prikazali ste ovo"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "Bit ćete preusmjereni na:"
@@ -30857,7 +31092,7 @@ msgstr "Vaša adresa e-pošte"
msgid "Your exported report: {0}"
msgstr "Vaš izvezeni izvještaj: {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Vaša forma je uspješno ažurirana"
@@ -30899,7 +31134,7 @@ msgstr "Vaš izvještaj se generira u pozadini. Primit ćete e-poruku na {0} s l
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "Vaša je stranica u toku održavanja ili ažuriranja."
@@ -30921,7 +31156,7 @@ msgstr "Nula znači slanje zapisa ažuriranih u bilo koje vrijeme"
msgid "[Action taken by {0}]"
msgstr "[Radnju preduzeta od {0}]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
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`"
@@ -30940,7 +31175,7 @@ msgstr "nakon_umetanja"
msgid "amend"
msgstr "izmijeni"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "i"
@@ -30963,7 +31198,7 @@ msgstr "po Ulozi"
msgid "cProfile Output"
msgstr "cProfil Izlaz"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "kalendar"
@@ -30979,7 +31214,9 @@ msgid "canceled"
msgstr "otkazano"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "Chrome"
@@ -31003,7 +31240,7 @@ msgid "cyan"
msgstr "cijan"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "d"
@@ -31061,7 +31298,7 @@ msgstr "izbriši"
msgid "descending"
msgstr "silazno"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "tip dokumenta..., npr. klijent"
@@ -31071,7 +31308,7 @@ msgstr "tip dokumenta..., npr. klijent"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "npr. \"Podrška\", \"Prodaja\", \"Jerry Yang\""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "npr. (55 + 434) / 4 ili =Math.sin(Math.PI/2)..."
@@ -31113,12 +31350,16 @@ msgstr "emacs"
msgid "email"
msgstr "e-pošta"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "prijemno sanduče e-pošte"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "prazno"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "prazno"
@@ -31174,12 +31415,12 @@ 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:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "h"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "čvorište"
@@ -31194,6 +31435,20 @@ msgstr "ikona"
msgid "import"
msgstr "uvoz"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr "je onemogućeno"
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr "je omogućeno"
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "jane@example.com"
@@ -31233,16 +31488,11 @@ msgid "long"
msgstr "dugo"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr "macOS Launchpad"
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "spojeno {0} u {1}"
@@ -31261,15 +31511,15 @@ msgstr "mm-dd-yyyy"
msgid "mm/dd/yyyy"
msgstr "mm/dd/yyyy"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "naziv modula..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "novi"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "nova vrsta dokumenta"
@@ -31331,7 +31581,7 @@ msgstr "na_ažuriranju"
msgid "on_update_after_submit"
msgstr "na_ažuriranju_nakon_podnošenja"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "ili"
@@ -31404,7 +31654,7 @@ msgid "restored {0} as {1}"
msgstr "vraćeno {0} kao {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -31488,11 +31738,11 @@ msgstr "vrijednost niza, tj. {0} ili uid={0},ou=users,dc=example,dc=com"
msgid "submit"
msgstr "podnesi"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "naziv oznake..., npr. #tag"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "tekst u vrsti dokumenta"
@@ -31590,11 +31840,13 @@ msgid "when clicked on element it will focus popover if present."
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'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (sa zakrpljenim qt-om)."
@@ -31630,11 +31882,11 @@ msgstr "yyyy-mm-dd"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : type}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31651,8 +31903,8 @@ msgstr "{0} ({1}) (1 red obavezan)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31665,13 +31917,13 @@ msgid "{0} Chart"
msgstr "{0} Grafikon"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} Nadzorna Tabla"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31705,11 +31957,11 @@ msgstr "{0} M"
msgid "{0} Map"
msgstr "{0} Karta"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} Naziv"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}"
@@ -31717,7 +31969,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:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} Izvještaja"
@@ -31730,11 +31982,11 @@ msgid "{0} Tree"
msgstr "{0} Stablo"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} Prikaza Web Stranice"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} dodano"
@@ -31796,7 +32048,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} je otkazao ovaj dokument {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
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."
@@ -31825,16 +32077,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} promijenio(la) {1} u {2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0} sadrži nevažeći izraz Preuzmi Iz, Preuzmi Iz ne može biti samoreferencijalan."
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr "{0} sadrži {1}"
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
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:153
msgid "{0} created this"
msgstr "{0} je kreirao(la) ovo"
@@ -31851,11 +32106,19 @@ msgstr "{0} d"
msgid "{0} days ago"
msgstr "{0} dana prije"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr "{0} ne sadrži {1}"
+
#: 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} ne postoji u redu {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr "{0} jednako je {1}"
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
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"
@@ -31880,7 +32143,7 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodijelio(la) standard vrijednost za {1}."
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr "{0} ima nevažeću notaciju povratnog alumograma: {1}"
@@ -31901,7 +32164,11 @@ msgstr "{0} ako ne budete preusmjereni unutar {1} sekundi"
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} u redu {1} ne može imati i URL i podređene artikle"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr "{0} je podređen {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} je obavezno polje"
@@ -31909,7 +32176,15 @@ msgstr "{0} je obavezno polje"
msgid "{0} is a not a valid zip file"
msgstr "{0} nije važeća zip datoteka"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr "{0} je nakon {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr "{0} je nadređen {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} je nevažeće polje podataka."
@@ -31917,6 +32192,15 @@ msgstr "{0} je nevažeće polje podataka."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} je nevažeća adresa e-pošte u 'Primatelji'"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr "{0} je prije {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr "{0} je između {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} je između {1} i {2}"
@@ -31926,22 +32210,36 @@ msgstr "{0} je između {1} i {2}"
msgid "{0} is currently {1}"
msgstr "{0} je trenutno {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr "{0} je onemogućen"
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr "{0} je omogućen"
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} je jednako {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} je veće ili jednako {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} je veće od {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} je manje ili jednako {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} je manje od {1}"
@@ -31954,10 +32252,14 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezan"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "{0} nije podređena tabela od {1}"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr "{0} nije podređen {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}"
@@ -31974,12 +32276,12 @@ msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar."
msgid "{0} is not a valid Cron expression."
msgstr "{0} nije važeći Cron izraz."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeća DocType za dinamičku vezu"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća adresa e-pošte"
@@ -31987,23 +32289,23 @@ 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:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} nije važeće Ime"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije ispravan broj telefona"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
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:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nije važeći nadređeni DocType za {1}"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće nadređeno polje za {1}"
@@ -32019,6 +32321,11 @@ msgstr "{0} nije zip datoteka"
msgid "{0} is not an allowed role for {1}"
msgstr "{0} nije dozvoljena uloga za {1}"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr "{0} nije nadređen {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} nije jednako {1}"
@@ -32027,10 +32334,12 @@ msgstr "{0} nije jednako {1}"
msgid "{0} is not like {1}"
msgstr "{0} nije kao {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} nije jedno od {1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} nije postavljeno"
@@ -32039,36 +32348,50 @@ msgstr "{0} nije postavljeno"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr "{0} je na ili nakon {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr "{0} je na ili prije {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} je jedan od {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} je obavezan"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} je postavljeno"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr "{0} je {1}"
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} artikala odabrano"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} je zadnji put uredio ovo"
@@ -32096,35 +32419,35 @@ msgstr "prije {0} minuta"
msgid "{0} months ago"
msgstr "{0} mjeseci prije"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} mora biti iza {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora početi sa '{1}'"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} ne smije biti ni jedna od {1}"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} se mora prvo postaviti"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstven"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -32141,11 +32464,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} nije dozvoljeno preimenovati"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} od {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redovi sa potomcima)"
@@ -32174,7 +32497,7 @@ msgstr "{0} zapis(a) su zadržana {1} dana."
msgid "{0} records deleted"
msgstr "{0} zapis(a) je obrisan(o)"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} zapis(a) će biti izvezen(o)"
@@ -32199,7 +32522,7 @@ msgstr "{0} je uklonilo {1} redova iz {2}"
msgid "{0} role does not have permission on any doctype"
msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} red #{1}:"
@@ -32213,7 +32536,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0} redova do {1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} uspješno spremljen"
@@ -32221,7 +32544,7 @@ msgstr "{0} uspješno spremljen"
msgid "{0} self assigned this task: {1}"
msgstr "{0} je sam sebi dodijelio ovaj zadatak: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} podijelio(la) dokument {1} {2} s vama"
@@ -32289,7 +32612,7 @@ msgstr "{0} w"
msgid "{0} weeks ago"
msgstr "{0} sedmica prije"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr "{0} sa ulogom {1}"
@@ -32301,7 +32624,7 @@ msgstr "{0} y"
msgid "{0} years ago"
msgstr "{0} godina prije"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} dodano"
@@ -32309,11 +32632,11 @@ msgstr "{0} {1} dodano"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} dodan na Nadzornu Ploču {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} već postoji"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} ne može biti \"{2}\". Trebao bi biti jedan od \"{3}\""
@@ -32325,11 +32648,11 @@ msgstr "{0} {1} ne može biti nadređeni jer ima podređene"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
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:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađeno"
@@ -32337,87 +32660,59 @@ msgstr "{0} {1} nije pronađeno"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, Red {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka."
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) će biti skraćen, jer je maksimalni dozvoljeni broj znakova {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Ne može se postaviti Izmjena bez Otkaži"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Nije moguće postaviti Dodijeli Izmjenu ako nije Podnošljivo"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Ne može se postaviti Dodijeli Podnošenje ako nije Podnošljivo"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Nije moguće postaviti Otkaži bez Podnesi"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Nije moguće postaviti Uvoz bez Kreiranja"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Nije moguće podesiti Podnesi, Otkaži, Izmijeni bez Piši"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Nije moguće postaviti uvoz jer {1} nije uvožljiv"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{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:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: Polje '{1}' ne može se postaviti kao jedinstveno jer ima nejedinstvene vrijednosti"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: Polje {1} u redu {2} ne može biti skriveno i obavezno bez standardnog"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Polje {1} tipa {2} ne može biti obavezno"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Ime polja {1} se pojavljuje više puta u redovima {2}"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Tip polja {1} za {2} ne može biti jedinstven"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Nisu postavljene osnovne dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Dozvoljeno je samo jedno pravilo sa istom ulogom, nivoom i {1}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Opcije moraju biti važeći DocType za polje {1} u redu {2}"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: Obavezne opcije za polje Tip Veze ili Tabele {1} u redu {2}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {3}"
@@ -32425,15 +32720,59 @@ msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Mogu se primjenjivati i druga pravila o dozvolama"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših nivoa"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: Dozvola za 'Izmjenu' ne može se odobriti za DocType koji se ne može podnijeti."
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: Dozvola 'Izmjena' ne može se odobriti bez dozvole 'Kreiranje'."
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr "{0}: Dozvola 'Otkaži' ne može se odobriti bez dozvole 'Podnesi'."
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Dozvola za 'Izvoz' je uklonjena jer se ne može odobriti za 'jedan' DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr "{0}: Dozvola za 'Uvoz' ne može se odobriti za DocType koji se ne može uvesti."
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: Dozvola za 'Uvoz' ne može se odobriti bez dozvole za 'Kreiranje'."
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Dozvola za 'Uvoz' je uklonjena jer se ne može odobriti za 'jedan' DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Dozvola 'Izvještaj' je uklonjena jer se ne može odobriti za 'jedan' DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: Dozvola 'Podnesi' ne može se odobriti za DocType koji se ne može podnijeti."
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr "{0}: Dozvole 'Podnesi', 'Otkaži' i 'Izmijeni' ne mogu se dodijeliti bez dozvole 'Piši'."
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: Možete povećati ograničenje za polje ako je potrebno preko {1}"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr "{0}: naziv polja se ne može postaviti na rezervirano polje {1} u DocType-u"
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: naziv polja ne može se postaviti na rezerviranu ključnu riječ {1}"
@@ -32446,15 +32785,15 @@ 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:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} naspram {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}:Tip polja {1} za {2} ne može se indeksirati"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} spremljen"
@@ -32474,11 +32813,11 @@ msgstr "{count} red odabran"
msgid "{count} rows selected"
msgstr "{count} redova odabrano"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Završeno"
diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po
index d5fe34b95a..6fa7e0f7d5 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr ""
msgid "\"Team Members\" or \"Management\""
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr ""
@@ -66,7 +66,7 @@ msgstr ""
msgid "<head> HTML"
msgstr ""
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr ""
@@ -90,19 +90,19 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr ""
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr ""
@@ -158,7 +158,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr ""
@@ -189,7 +189,7 @@ msgstr ""
msgid "1 of 2"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr ""
@@ -587,7 +587,7 @@ msgstr ""
msgid ">="
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
@@ -601,7 +601,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr ""
@@ -920,7 +920,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr ""
@@ -969,13 +969,13 @@ msgstr ""
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr ""
@@ -1032,20 +1032,20 @@ msgstr ""
msgid "Activity Log"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr ""
@@ -1053,11 +1053,11 @@ msgstr ""
msgid "Add / Update"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1077,11 +1077,15 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1090,8 +1094,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1135,11 +1139,7 @@ msgstr ""
msgid "Add Indexes"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr ""
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr ""
@@ -1152,17 +1152,13 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr ""
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr ""
@@ -1181,16 +1177,16 @@ msgstr ""
msgid "Add Subscribers"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr ""
@@ -1240,19 +1236,19 @@ msgstr ""
msgid "Add a new section"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr ""
@@ -1270,6 +1266,10 @@ msgstr ""
msgid "Add field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1283,6 +1283,10 @@ msgstr ""
msgid "Add page break"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr ""
@@ -1301,7 +1305,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr ""
@@ -1341,8 +1345,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr ""
@@ -1432,7 +1436,7 @@ msgstr ""
msgid "Adds a custom field to a DocType"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr ""
@@ -1459,15 +1463,15 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr ""
@@ -1484,8 +1488,8 @@ msgstr ""
msgid "Advanced Control"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr ""
@@ -1566,7 +1570,7 @@ msgstr ""
msgid "Alert"
msgstr ""
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1590,6 +1594,15 @@ msgstr ""
msgid "Align Value"
msgstr ""
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1622,7 +1635,7 @@ msgstr ""
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr ""
@@ -1634,11 +1647,11 @@ msgstr ""
msgid "All Records"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr ""
@@ -1949,7 +1962,7 @@ msgstr ""
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -1983,13 +1996,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr ""
@@ -2084,7 +2145,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr ""
@@ -2097,7 +2158,7 @@ msgstr ""
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2148,7 +2209,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr ""
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr ""
@@ -2161,7 +2222,7 @@ msgstr ""
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2211,11 +2272,11 @@ msgstr ""
msgid "App Name (Client Name)"
msgstr ""
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr ""
@@ -2289,7 +2350,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2298,6 +2359,10 @@ msgstr ""
msgid "Apply Filters"
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2337,7 +2402,7 @@ msgstr ""
msgid "Apply to all Documents Types"
msgstr ""
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr ""
@@ -2345,18 +2410,11 @@ msgstr ""
msgid "Approval Required"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2379,16 +2437,16 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr ""
@@ -2407,19 +2465,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
@@ -2439,7 +2497,7 @@ msgstr ""
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
@@ -2488,7 +2546,7 @@ msgstr ""
msgid "Ask"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr ""
@@ -2501,7 +2559,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2551,7 +2609,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2640,7 +2698,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2665,7 +2723,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr ""
@@ -2763,19 +2821,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr ""
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr ""
@@ -3100,11 +3165,6 @@ msgstr ""
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3210,17 +3270,12 @@ msgstr ""
msgid "Background Image"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr ""
@@ -3333,8 +3388,8 @@ msgstr ""
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr ""
@@ -3358,6 +3413,8 @@ msgstr ""
msgid "Basic Info"
msgstr ""
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3427,7 +3484,7 @@ msgstr ""
msgid "Beta"
msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr ""
@@ -3555,18 +3612,11 @@ msgstr ""
msgid "Brand Image"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr ""
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
@@ -3637,7 +3687,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr ""
@@ -3658,7 +3708,7 @@ msgstr ""
msgid "Bulk Update"
msgstr ""
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3670,7 +3720,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -3819,7 +3869,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr ""
@@ -3869,12 +3919,12 @@ msgid "Callback Title"
msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3886,11 +3936,11 @@ msgstr ""
msgid "Campaign Description (Optional)"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -3900,7 +3950,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -3922,7 +3972,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3932,11 +3982,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr ""
@@ -3948,7 +3998,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3981,7 +4031,7 @@ msgstr ""
msgid "Cancelling documents"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr ""
@@ -3989,7 +4039,7 @@ msgstr ""
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -3997,7 +4047,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4017,11 +4067,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4033,7 +4083,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4041,10 +4091,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr ""
@@ -4053,15 +4107,15 @@ msgstr ""
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4072,11 +4126,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4104,7 +4158,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4117,7 +4171,7 @@ msgstr ""
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr ""
@@ -4133,15 +4187,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4153,7 +4207,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr ""
@@ -4178,7 +4232,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr ""
@@ -4198,7 +4252,7 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
@@ -4212,7 +4266,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr ""
@@ -4241,17 +4295,19 @@ msgstr ""
msgid "Category Name"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4339,7 +4395,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4404,6 +4460,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr ""
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr ""
@@ -4455,7 +4517,7 @@ msgstr ""
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4465,7 +4527,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4473,7 +4535,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4493,10 +4555,6 @@ msgstr ""
msgid "Choose authentication method to be used by all users"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr ""
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4513,11 +4571,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr ""
@@ -4525,7 +4583,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4551,7 +4609,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4619,7 +4677,7 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
@@ -4727,7 +4785,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr ""
@@ -4737,7 +4795,7 @@ msgstr ""
msgid "Close Condition"
msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4793,12 +4851,12 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4855,7 +4913,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4866,7 +4924,7 @@ msgstr ""
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
-#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4911,11 +4969,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -4958,7 +5016,7 @@ msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5105,12 +5163,12 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5125,7 +5183,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr ""
@@ -5216,7 +5274,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5305,8 +5363,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5424,7 +5482,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5493,11 +5551,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5509,12 +5567,12 @@ msgstr ""
msgid "Copy embed code"
msgstr ""
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr ""
@@ -5535,7 +5593,7 @@ msgstr ""
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr ""
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr ""
@@ -5543,7 +5601,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr ""
@@ -5551,11 +5609,11 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5563,7 +5621,7 @@ msgstr ""
msgid "Could not start up:"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr ""
@@ -5615,7 +5673,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
@@ -5642,15 +5700,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
@@ -5663,13 +5722,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr ""
@@ -5703,7 +5762,7 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
@@ -5716,7 +5775,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5732,18 +5791,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5760,7 +5819,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr ""
@@ -5779,13 +5838,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr ""
@@ -5979,7 +6046,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr ""
@@ -5990,15 +6057,15 @@ msgstr ""
msgid "Custom Field"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr ""
@@ -6024,7 +6091,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr ""
@@ -6070,7 +6137,7 @@ msgstr ""
msgid "Custom Report"
msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr ""
@@ -6095,11 +6162,11 @@ msgstr ""
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6122,26 +6189,26 @@ msgstr ""
msgid "Customization"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr ""
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr ""
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6238,7 +6305,7 @@ msgstr ""
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr ""
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr ""
@@ -6295,8 +6362,8 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr ""
@@ -6546,7 +6613,7 @@ msgstr ""
msgid "Days Before or After"
msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr ""
@@ -6743,11 +6810,11 @@ msgstr ""
msgid "Default display currency"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr ""
@@ -6804,11 +6871,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6816,7 +6884,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6830,10 +6898,6 @@ msgstr "Smazat"
msgid "Delete Account"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr ""
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6863,7 +6927,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr ""
@@ -6891,6 +6963,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6905,16 +6981,20 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6945,7 +7025,7 @@ msgstr ""
msgid "Deleted all documents successfully"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr ""
@@ -7052,6 +7132,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7134,16 +7215,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7173,11 +7259,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr ""
@@ -7325,10 +7411,11 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr ""
@@ -7342,11 +7429,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7420,11 +7507,11 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7432,7 +7519,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7487,7 +7574,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7510,7 +7596,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7523,7 +7608,7 @@ msgstr ""
msgid "DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr ""
@@ -7591,10 +7676,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr ""
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7612,15 +7693,15 @@ msgstr ""
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr ""
@@ -7634,7 +7715,7 @@ msgstr ""
msgid "Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7673,7 +7754,7 @@ msgstr ""
msgid "Document Follow"
msgstr ""
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr ""
@@ -7696,19 +7777,19 @@ msgstr ""
msgid "Document Links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7727,8 +7808,8 @@ msgstr ""
msgid "Document Name"
msgstr ""
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7746,7 +7827,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr ""
@@ -7850,7 +7931,7 @@ msgstr ""
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7870,11 +7951,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr ""
@@ -7903,27 +7984,27 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr ""
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr ""
@@ -7935,11 +8016,11 @@ msgstr ""
msgid "Document not Relinked"
msgstr ""
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
@@ -7955,10 +8036,6 @@ msgstr ""
msgid "Document {0} has been set to state {1} by {2}"
msgstr ""
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr ""
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8096,7 +8173,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr ""
@@ -8180,7 +8257,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr ""
@@ -8188,19 +8265,15 @@ msgstr ""
msgid "Duplicate Entry"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr ""
@@ -8208,6 +8281,18 @@ msgstr ""
msgid "Duplicate field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8295,9 +8380,10 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8308,7 +8394,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8318,7 +8404,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8339,15 +8425,15 @@ msgstr ""
msgid "Edit Custom Block"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8361,7 +8447,7 @@ msgstr ""
msgid "Edit Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr ""
@@ -8374,7 +8460,7 @@ msgstr ""
msgid "Edit Format"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8432,7 +8518,7 @@ msgstr ""
msgid "Edit Shortcut"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8455,11 +8541,11 @@ msgstr ""
msgid "Edit the {0} Doctype"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr ""
@@ -8515,6 +8601,7 @@ msgstr ""
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8530,12 +8617,14 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8570,7 +8659,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr ""
@@ -8768,7 +8857,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8807,7 +8896,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -8815,7 +8904,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9134,11 +9223,11 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr ""
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9165,6 +9254,10 @@ msgstr ""
msgid "Enter folder name"
msgstr ""
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9195,7 +9288,7 @@ msgstr ""
msgid "Entity Type"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr ""
@@ -9229,7 +9322,7 @@ msgstr ""
msgid "Error"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr ""
@@ -9244,12 +9337,12 @@ msgstr ""
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ""
@@ -9287,15 +9380,15 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9311,15 +9404,15 @@ msgstr ""
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9329,6 +9422,12 @@ msgstr ""
msgid "Errors"
msgstr ""
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9347,6 +9446,11 @@ msgstr ""
msgid "Event Frequency"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9372,11 +9476,11 @@ msgstr ""
msgid "Event Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr ""
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr ""
@@ -9398,6 +9502,7 @@ msgid "Exact Copies"
msgstr ""
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr ""
@@ -9468,7 +9573,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9489,21 +9594,21 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr ""
@@ -9555,20 +9660,21 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr ""
@@ -9607,11 +9713,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr ""
@@ -9627,6 +9733,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9639,7 +9749,7 @@ msgstr ""
msgid "Export without main header"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr ""
@@ -9679,7 +9789,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr ""
@@ -9728,12 +9838,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr ""
@@ -9796,7 +9911,7 @@ msgstr ""
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9808,7 +9923,7 @@ msgstr ""
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr ""
@@ -9824,7 +9939,7 @@ msgstr ""
msgid "Failed to request login to Frappe Cloud"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr ""
@@ -9866,7 +9981,7 @@ msgstr ""
msgid "Fax"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr ""
@@ -9926,8 +10041,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9937,7 +10052,7 @@ msgstr ""
msgid "Field \"route\" is mandatory for Web Views"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -9945,7 +10060,7 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr ""
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -9954,7 +10069,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10002,7 +10117,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10010,11 +10125,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10036,7 +10151,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10045,7 +10160,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10053,7 +10168,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10069,7 +10184,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10117,7 +10232,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10141,7 +10256,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10217,12 +10332,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10249,12 +10364,17 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10273,7 +10393,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr ""
@@ -10282,11 +10402,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10305,10 +10425,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10332,7 +10456,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10363,10 +10487,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10384,14 +10504,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10479,11 +10599,11 @@ msgstr ""
msgid "Fold"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10512,12 +10632,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10525,7 +10645,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10533,7 +10653,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10541,7 +10661,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10610,7 +10730,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10647,7 +10767,7 @@ msgstr ""
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10680,15 +10800,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10712,20 +10823,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10753,7 +10860,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10803,7 +10910,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -10982,7 +11090,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11003,7 +11111,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11044,7 +11152,7 @@ msgstr ""
msgid "Full Name"
msgstr ""
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11057,7 +11165,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11066,11 +11174,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11135,11 +11243,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11149,8 +11257,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11261,7 +11369,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11321,7 +11429,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11547,7 +11655,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11627,6 +11735,10 @@ msgstr ""
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11715,7 +11827,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11751,7 +11863,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11788,7 +11900,7 @@ msgstr "Ahoj,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11843,7 +11955,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11879,8 +11991,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12046,7 +12158,7 @@ msgstr ""
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12129,18 +12241,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12191,7 +12303,6 @@ msgid "IP Address"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12212,11 +12323,16 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr ""
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12227,6 +12343,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12258,13 +12378,13 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr ""
@@ -12391,12 +12511,20 @@ msgstr ""
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
@@ -12496,7 +12624,7 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr ""
@@ -12562,11 +12690,11 @@ msgstr ""
msgid "Image Width"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr ""
@@ -12600,7 +12728,7 @@ msgstr ""
msgid "Impersonated by {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12618,11 +12746,12 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12845,15 +12974,15 @@ msgid "Include Web View Link in Email"
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr ""
@@ -12920,11 +13049,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr ""
@@ -12976,7 +13105,7 @@ msgstr ""
msgid "Indicator Color"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr ""
@@ -13023,15 +13152,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr ""
@@ -13061,8 +13190,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr ""
@@ -13088,15 +13217,15 @@ msgstr ""
msgid "Instructions"
msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13164,7 +13293,7 @@ msgstr ""
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr ""
@@ -13173,6 +13302,11 @@ msgstr ""
msgid "Internal record of document shares"
msgstr ""
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13212,13 +13346,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13258,7 +13392,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13266,7 +13400,8 @@ msgstr ""
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr ""
@@ -13274,8 +13409,8 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13299,7 +13434,7 @@ msgstr ""
msgid "Invalid Login Token"
msgstr ""
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr ""
@@ -13307,7 +13442,7 @@ msgstr ""
msgid "Invalid Mail Server. Please rectify and try again."
msgstr ""
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr ""
@@ -13318,8 +13453,8 @@ msgstr ""
msgid "Invalid Operation"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr ""
@@ -13331,7 +13466,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr ""
@@ -13344,11 +13479,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13357,7 +13492,7 @@ msgstr ""
msgid "Invalid Search Field {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr ""
@@ -13376,7 +13511,7 @@ msgstr ""
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr ""
@@ -13388,7 +13523,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13396,19 +13531,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13416,18 +13551,22 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr ""
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr ""
@@ -13436,11 +13575,11 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13448,11 +13587,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13460,11 +13599,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13472,7 +13611,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13489,19 +13628,19 @@ msgstr ""
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13525,11 +13664,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13546,24 +13685,24 @@ msgstr ""
msgid "Invalid username or password"
msgstr ""
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr ""
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13691,7 +13830,7 @@ msgstr ""
msgid "Is Folder"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr ""
@@ -13762,7 +13901,7 @@ msgstr ""
msgid "Is Published Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr ""
@@ -14007,8 +14146,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr ""
@@ -14331,7 +14470,7 @@ msgstr ""
msgid "Label and Type"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr ""
@@ -14354,7 +14493,7 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14400,6 +14539,14 @@ msgstr ""
msgid "Last Active"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14524,6 +14671,11 @@ msgstr ""
msgid "Last synced {0}"
msgstr ""
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
@@ -14551,9 +14703,15 @@ msgstr ""
msgid "Ledger"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14647,7 +14805,7 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14676,7 +14834,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14698,7 +14856,7 @@ msgstr ""
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr ""
@@ -14739,7 +14897,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr ""
@@ -14763,7 +14921,7 @@ msgstr ""
msgid "Limit"
msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr ""
@@ -14889,7 +15047,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -14907,7 +15065,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
@@ -14950,6 +15108,7 @@ msgstr ""
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14971,8 +15130,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr ""
@@ -15002,7 +15161,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -15016,7 +15175,7 @@ msgstr ""
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr ""
@@ -15043,7 +15202,7 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
@@ -15052,7 +15211,7 @@ msgstr ""
msgid "Load Balancing"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15070,10 +15229,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr ""
@@ -15090,8 +15249,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15101,7 +15260,8 @@ msgid "Loading..."
msgstr ""
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
@@ -15174,6 +15334,11 @@ msgstr ""
msgid "Login"
msgstr ""
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15249,7 +15414,7 @@ msgstr ""
msgid "Login to {0}"
msgstr ""
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr ""
@@ -15316,8 +15481,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr ""
@@ -15348,7 +15512,7 @@ msgstr ""
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr ""
@@ -15498,7 +15662,7 @@ msgstr ""
msgid "Mandatory fields required in {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
@@ -15560,7 +15724,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15612,9 +15776,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15676,7 +15843,7 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr ""
@@ -15697,20 +15864,27 @@ msgstr ""
msgid "Maximum {0} rows allowed"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15754,12 +15928,12 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15793,13 +15967,13 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr ""
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
@@ -15830,7 +16004,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr ""
@@ -15927,7 +16101,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -16016,7 +16190,7 @@ msgstr ""
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16036,7 +16210,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16101,7 +16275,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16148,9 +16322,8 @@ msgstr ""
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16167,7 +16340,7 @@ msgstr ""
msgid "Module to Export"
msgstr ""
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16282,7 +16455,7 @@ msgstr ""
msgid "More content for the bottom of the page."
msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr ""
@@ -16297,7 +16470,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr ""
@@ -16309,19 +16482,19 @@ msgstr ""
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16333,7 +16506,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr ""
@@ -16451,7 +16624,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr ""
@@ -16463,7 +16636,7 @@ msgstr ""
msgid "Name of the new Print Format"
msgstr ""
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr ""
@@ -16502,7 +16675,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr ""
@@ -16526,11 +16699,6 @@ msgstr ""
msgid "Navbar Settings"
msgstr ""
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16544,39 +16712,44 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16598,6 +16771,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16614,7 +16788,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16630,8 +16804,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr ""
@@ -16680,7 +16854,7 @@ msgstr ""
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16701,8 +16875,8 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr ""
@@ -16729,8 +16903,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16738,7 +16912,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16781,32 +16955,32 @@ msgstr ""
msgid "New value to be set"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr ""
@@ -16818,7 +16992,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16839,7 +17013,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr ""
@@ -16866,12 +17040,16 @@ msgstr ""
msgid "Next Action Email Template"
msgstr ""
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -16938,20 +17116,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -17021,7 +17203,7 @@ msgstr ""
msgid "No Google Calendar Event to sync."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17040,23 +17222,23 @@ msgstr ""
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr ""
@@ -17076,11 +17258,11 @@ msgstr ""
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr ""
@@ -17088,7 +17270,7 @@ msgstr ""
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17096,7 +17278,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17112,7 +17294,7 @@ msgstr ""
msgid "No Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17132,7 +17314,7 @@ msgstr ""
msgid "No changes in document"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17196,7 +17378,7 @@ msgstr ""
msgid "No file attached"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr ""
@@ -17244,11 +17426,11 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
@@ -17257,7 +17439,7 @@ msgstr ""
msgid "No permission to read {0}"
msgstr ""
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr ""
@@ -17273,7 +17455,7 @@ msgstr ""
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr ""
@@ -17281,7 +17463,7 @@ msgstr ""
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17293,11 +17475,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17309,7 +17492,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17318,7 +17501,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17361,12 +17544,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr ""
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17408,7 +17591,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17417,7 +17600,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17426,8 +17609,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17447,7 +17630,7 @@ msgstr ""
msgid "Not Sent"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr ""
@@ -17461,15 +17644,15 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr ""
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr ""
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17477,7 +17660,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17497,11 +17680,11 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr ""
@@ -17514,11 +17697,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17546,7 +17729,7 @@ msgstr ""
msgid "Note:"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17578,7 +17761,7 @@ msgstr ""
msgid "Notes:"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr ""
@@ -17590,8 +17773,8 @@ msgstr ""
msgid "Nothing left to undo"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17602,11 +17785,13 @@ msgid "Nothing to update"
msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr ""
@@ -17622,7 +17807,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17631,11 +17816,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17653,13 +17833,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -17895,7 +18077,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17935,7 +18117,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17943,7 +18125,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18010,7 +18192,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18054,7 +18236,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18070,11 +18252,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18095,7 +18277,7 @@ msgstr ""
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
@@ -18118,11 +18300,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18165,7 +18347,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18188,8 +18370,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18225,6 +18407,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18239,7 +18425,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18251,11 +18437,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18270,16 +18456,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18311,7 +18497,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18337,7 +18523,7 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18371,7 +18557,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
@@ -18380,7 +18566,7 @@ msgstr ""
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18388,7 +18574,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18396,7 +18582,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18412,7 +18598,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18432,8 +18618,12 @@ msgstr ""
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18508,18 +18698,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18543,7 +18735,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18551,11 +18743,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18714,7 +18906,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18730,7 +18922,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18741,7 +18933,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18774,11 +18966,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18792,7 +18984,7 @@ msgstr ""
msgid "Parent Label"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18817,11 +19009,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18840,7 +19032,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18877,11 +19069,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -18890,7 +19082,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18919,11 +19111,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18935,7 +19127,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18997,7 +19189,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19082,15 +19274,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19098,7 +19290,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19108,12 +19304,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19122,11 +19318,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19157,7 +19348,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19168,13 +19358,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19186,11 +19375,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19260,13 +19449,13 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
@@ -19324,7 +19513,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19340,7 +19529,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19348,11 +19537,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19364,11 +19553,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19400,7 +19589,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19430,10 +19619,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19446,7 +19635,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19520,15 +19709,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19544,7 +19733,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19564,7 +19753,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19572,7 +19761,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19622,11 +19811,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19634,7 +19823,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19654,7 +19843,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19666,7 +19855,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19694,7 +19883,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19815,11 +20004,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19871,11 +20060,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19883,7 +20072,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19901,7 +20090,7 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
@@ -19945,16 +20134,16 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20007,19 +20196,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20037,8 +20226,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20082,7 +20272,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20115,11 +20305,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20132,8 +20322,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20172,7 +20362,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20181,11 +20371,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20195,15 +20385,15 @@ msgstr ""
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20252,7 +20442,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20292,9 +20482,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20364,7 +20554,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr ""
@@ -20514,7 +20704,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20576,7 +20766,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20597,7 +20787,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20638,7 +20828,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20730,6 +20920,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20738,7 +20937,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20756,7 +20955,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20767,11 +20966,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20808,7 +21008,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20848,7 +21048,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20890,7 +21090,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20941,7 +21141,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21007,12 +21207,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21228,12 +21428,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21250,7 +21450,7 @@ msgstr ""
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21265,7 +21465,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21276,7 +21476,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21322,10 +21522,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr ""
@@ -21337,7 +21535,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21356,7 +21554,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21436,9 +21634,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21466,7 +21664,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21513,7 +21711,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21576,6 +21774,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21590,10 +21789,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21662,7 +21860,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21696,14 +21894,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21714,7 +21908,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21726,7 +21920,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21734,12 +21928,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21762,7 +21956,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21770,7 +21964,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21829,13 +22023,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -21951,7 +22145,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22009,7 +22203,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22018,7 +22212,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22040,6 +22234,11 @@ msgstr ""
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22067,8 +22266,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22115,9 +22314,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22152,8 +22357,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22168,8 +22371,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22213,7 +22415,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22221,11 +22423,9 @@ msgstr ""
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22247,7 +22447,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22366,20 +22566,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22406,7 +22606,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22425,14 +22625,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22455,7 +22655,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22535,7 +22735,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22569,7 +22769,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22641,22 +22841,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22669,7 +22870,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22677,7 +22878,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22695,20 +22896,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr ""
@@ -22717,11 +22918,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22925,7 +23126,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22945,7 +23146,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -22963,7 +23164,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -22980,12 +23181,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23057,15 +23258,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23115,24 +23316,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23148,7 +23351,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23192,13 +23395,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23207,7 +23410,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23216,19 +23419,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23253,16 +23456,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23272,7 +23475,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23308,12 +23511,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23330,11 +23527,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23360,13 +23557,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23400,7 +23597,7 @@ msgstr ""
msgid "Select {0}"
msgstr ""
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23430,6 +23627,11 @@ msgstr ""
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23482,7 +23684,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23545,7 +23747,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
@@ -23584,7 +23786,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23678,7 +23880,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23688,7 +23890,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23715,11 +23917,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23747,16 +23953,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr ""
@@ -23797,7 +24001,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -23823,7 +24027,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23866,8 +24070,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23887,12 +24091,12 @@ msgstr ""
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -23996,8 +24200,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24020,11 +24224,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24032,12 +24236,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24066,13 +24270,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24080,7 +24285,7 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
@@ -24140,16 +24345,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24195,7 +24394,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24247,7 +24446,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24367,7 +24566,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24509,7 +24708,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24632,7 +24831,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24807,15 +25006,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24846,13 +25045,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24901,7 +25100,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -24940,6 +25139,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24947,6 +25147,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25014,8 +25215,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25187,7 +25388,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25225,7 +25426,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25339,7 +25540,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25353,7 +25554,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25374,14 +25575,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25411,7 +25612,7 @@ msgstr ""
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25435,11 +25636,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25465,7 +25666,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
@@ -25500,12 +25701,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25547,7 +25748,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25572,7 +25773,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25597,7 +25798,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25638,7 +25839,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25651,7 +25852,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25720,9 +25921,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25732,7 +25931,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25859,6 +26058,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25873,7 +26073,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25949,6 +26148,11 @@ msgstr ""
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25965,6 +26169,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26000,7 +26210,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26009,7 +26219,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26027,7 +26237,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26035,11 +26245,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26059,17 +26269,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26153,7 +26363,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26249,7 +26459,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26301,7 +26511,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26449,7 +26667,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26461,6 +26679,42 @@ msgstr ""
msgid "The total number of user document types limit has been crossed."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 ""
@@ -26502,7 +26756,7 @@ msgstr ""
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr ""
@@ -26510,7 +26764,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26519,7 +26773,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26531,11 +26785,11 @@ msgstr ""
msgid "There is no data to be exported"
msgstr ""
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr ""
@@ -26543,7 +26797,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26559,7 +26813,7 @@ msgstr ""
msgid "There was an error saving filters"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr ""
@@ -26567,11 +26821,11 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr ""
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr ""
@@ -26640,11 +26894,11 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26668,7 +26922,7 @@ msgstr ""
msgid "This doctype has no orphan fields to trim"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26684,15 +26938,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26705,7 +26959,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26730,11 +26984,11 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
@@ -26753,7 +27007,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26795,15 +27049,15 @@ msgstr ""
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr ""
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr ""
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26811,7 +27065,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr ""
@@ -26835,7 +27089,7 @@ msgstr ""
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr ""
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -26879,7 +27133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr ""
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
@@ -26910,6 +27164,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26917,6 +27172,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26999,11 +27255,6 @@ msgstr ""
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
@@ -27035,11 +27286,11 @@ msgstr ""
msgid "Timeline Name"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
@@ -27110,7 +27361,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27133,7 +27384,7 @@ msgstr ""
msgid "Title Prefix"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27219,7 +27470,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -27272,31 +27523,14 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr ""
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr ""
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27332,7 +27566,7 @@ msgid "Tomorrow"
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr ""
@@ -27340,15 +27574,19 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -27404,10 +27642,10 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr ""
@@ -27422,7 +27660,7 @@ msgstr ""
msgid "Total Errors (last 1 day)"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr ""
@@ -27522,7 +27760,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27558,7 +27796,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27569,7 +27807,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr ""
@@ -27605,7 +27843,7 @@ msgstr ""
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr ""
@@ -27654,8 +27892,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27701,6 +27939,7 @@ msgstr ""
#. 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 'Event Notifications'
#. 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'
@@ -27714,6 +27953,7 @@ msgstr ""
#: 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/event_notifications/event_notifications.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
@@ -27722,7 +27962,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27889,7 +28129,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -27897,7 +28137,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr ""
@@ -27913,7 +28153,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27934,20 +28174,20 @@ msgstr ""
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr ""
@@ -28021,9 +28261,10 @@ msgstr ""
msgid "Unsafe SQL query"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr ""
@@ -28056,11 +28297,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28080,7 +28321,7 @@ msgstr ""
msgid "Unzipping files..."
msgstr ""
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr ""
@@ -28088,13 +28329,13 @@ msgstr ""
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr ""
@@ -28165,7 +28406,7 @@ msgstr ""
msgid "Update from Frappe Cloud"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr ""
@@ -28173,8 +28414,7 @@ msgstr ""
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr ""
@@ -28186,11 +28426,11 @@ msgstr ""
msgid "Updated To A New Version 🎉"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr ""
@@ -28215,11 +28455,11 @@ msgstr ""
msgid "Updating naming series options"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr ""
@@ -28227,12 +28467,12 @@ msgstr ""
msgid "Updating {0} of {1}, {2}"
msgstr ""
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28280,6 +28520,7 @@ msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr ""
@@ -28351,7 +28592,7 @@ msgstr ""
msgid "Use of sub-query or function is restricted"
msgstr ""
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr ""
@@ -28385,9 +28626,8 @@ msgstr ""
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28414,11 +28654,11 @@ msgstr ""
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28554,7 +28794,7 @@ msgstr ""
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr ""
@@ -28570,19 +28810,19 @@ msgid "User Permission"
msgstr ""
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr ""
@@ -28655,7 +28895,7 @@ msgstr ""
msgid "User can login using Email id or User Name"
msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr ""
@@ -28689,27 +28929,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr ""
@@ -28718,11 +28958,11 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr ""
@@ -28747,18 +28987,17 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr ""
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28829,7 +29068,7 @@ msgstr ""
msgid "Validate SSL Certificate"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr ""
@@ -28858,7 +29097,7 @@ msgstr ""
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28885,15 +29124,19 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28905,7 +29148,7 @@ msgstr ""
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28930,7 +29173,13 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr ""
@@ -28947,7 +29196,7 @@ msgstr ""
msgid "Value {0} must in {1} format"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr ""
@@ -28956,11 +29205,11 @@ msgstr ""
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr ""
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr ""
@@ -28968,7 +29217,7 @@ msgstr ""
msgid "Verification Link"
msgstr ""
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr ""
@@ -28982,7 +29231,7 @@ msgid "Verified"
msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr ""
@@ -29018,7 +29267,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr ""
@@ -29030,7 +29279,7 @@ msgstr ""
msgid "View File"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr ""
@@ -29067,7 +29316,7 @@ msgstr ""
msgid "View Settings"
msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29076,14 +29325,11 @@ msgstr ""
msgid "View Switcher"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29099,7 +29345,7 @@ msgstr ""
msgid "View this in your browser"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr ""
@@ -29135,7 +29381,7 @@ msgstr ""
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29183,7 +29429,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29192,7 +29438,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr ""
@@ -29276,7 +29522,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr ""
@@ -29373,7 +29619,7 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29428,7 +29674,7 @@ msgstr ""
msgid "Website Search Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr ""
@@ -29493,6 +29739,11 @@ msgstr ""
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29580,15 +29831,15 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr ""
@@ -29610,10 +29861,6 @@ msgstr ""
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29631,7 +29878,7 @@ msgstr ""
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr ""
@@ -29752,6 +29999,10 @@ msgstr ""
msgid "Workflow Document State"
msgstr ""
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -29769,11 +30020,11 @@ msgstr ""
msgid "Workflow State Field"
msgstr ""
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr ""
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr ""
@@ -29781,7 +30032,7 @@ msgstr ""
msgid "Workflow States Don't Exist"
msgstr ""
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr ""
@@ -29816,18 +30067,15 @@ msgstr ""
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29854,7 +30102,6 @@ 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 ""
@@ -29868,27 +30115,15 @@ msgstr ""
msgid "Workspace Quick List"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr ""
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr ""
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -29898,13 +30133,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr ""
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr ""
@@ -29933,11 +30162,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr ""
@@ -29955,7 +30185,7 @@ msgstr ""
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -29970,7 +30200,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr ""
@@ -30018,10 +30248,14 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30030,10 +30264,10 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -30069,7 +30303,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30077,7 +30311,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30085,11 +30319,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30112,7 +30346,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -30120,10 +30354,14 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr ""
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -30140,7 +30378,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30148,7 +30386,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -30161,7 +30399,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr ""
@@ -30185,10 +30423,6 @@ msgstr ""
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
@@ -30243,7 +30477,7 @@ msgstr ""
msgid "You can try changing the filters of your report."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr ""
@@ -30273,6 +30507,10 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -30299,7 +30537,6 @@ msgid "You changed {0} to {1}"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr ""
@@ -30308,11 +30545,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
@@ -30324,15 +30557,19 @@ msgstr ""
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
@@ -30368,7 +30605,7 @@ msgstr ""
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
@@ -30388,7 +30625,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30397,7 +30634,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr ""
@@ -30413,12 +30649,12 @@ msgstr ""
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr ""
@@ -30426,7 +30662,7 @@ msgstr ""
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr ""
@@ -30458,7 +30694,7 @@ msgstr ""
msgid "You need to have \"Share\" permission"
msgstr ""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr ""
@@ -30478,7 +30714,7 @@ msgstr ""
msgid "You need write permission on {0} {1} to rename"
msgstr ""
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
@@ -30525,7 +30761,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30602,7 +30838,7 @@ msgstr ""
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr ""
@@ -30644,7 +30880,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30666,7 +30902,7 @@ msgstr ""
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30685,7 +30921,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -30708,7 +30944,7 @@ msgstr ""
msgid "cProfile Output"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr ""
@@ -30724,7 +30960,9 @@ msgid "canceled"
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30748,7 +30986,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30806,7 +31044,7 @@ msgstr ""
msgid "descending"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr ""
@@ -30816,7 +31054,7 @@ msgstr ""
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr ""
@@ -30858,12 +31096,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr ""
@@ -30919,12 +31161,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr ""
@@ -30939,6 +31181,20 @@ msgstr ""
msgid "import"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -30978,16 +31234,11 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr ""
@@ -31006,15 +31257,15 @@ msgstr ""
msgid "mm/dd/yyyy"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr ""
@@ -31076,7 +31327,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr ""
@@ -31149,7 +31400,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -31233,11 +31484,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr ""
@@ -31335,11 +31586,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31375,11 +31628,11 @@ msgstr ""
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31396,8 +31649,8 @@ msgstr ""
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31410,13 +31663,13 @@ msgid "{0} Chart"
msgstr ""
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31450,11 +31703,11 @@ msgstr ""
msgid "{0} Map"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31462,7 +31715,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr ""
@@ -31475,11 +31728,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr ""
@@ -31541,7 +31794,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31570,16 +31823,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr ""
@@ -31596,11 +31852,19 @@ msgstr ""
msgid "{0} days ago"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
@@ -31625,7 +31889,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31646,7 +31910,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr ""
@@ -31654,7 +31922,15 @@ msgstr ""
msgid "{0} is a not a valid zip file"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr ""
@@ -31662,6 +31938,15 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31671,22 +31956,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr ""
@@ -31699,10 +31998,14 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31719,12 +32022,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31732,23 +32035,23 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr ""
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31764,6 +32067,11 @@ msgstr ""
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr ""
@@ -31772,10 +32080,12 @@ msgstr ""
msgid "{0} is not like {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr ""
@@ -31784,36 +32094,50 @@ msgstr ""
msgid "{0} is now default print format for {1} doctype"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr ""
@@ -31841,35 +32165,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31886,11 +32210,11 @@ msgid "{0} not allowed to be renamed"
msgstr ""
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31919,7 +32243,7 @@ msgstr ""
msgid "{0} records deleted"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr ""
@@ -31944,7 +32268,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr ""
@@ -31958,7 +32282,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr ""
@@ -31966,7 +32290,7 @@ msgstr ""
msgid "{0} self assigned this task: {1}"
msgstr ""
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr ""
@@ -32034,7 +32358,7 @@ msgstr ""
msgid "{0} weeks ago"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32046,7 +32370,7 @@ msgstr ""
msgid "{0} years ago"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr ""
@@ -32054,11 +32378,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32070,11 +32394,11 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr ""
@@ -32082,87 +32406,59 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr ""
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr ""
@@ -32170,15 +32466,59 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32191,15 +32531,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr ""
@@ -32219,11 +32559,11 @@ msgstr ""
msgid "{count} rows selected"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr ""
diff --git a/frappe/locale/da.po b/frappe/locale/da.po
index 0b0e044390..5cbd93209b 100644
--- a/frappe/locale/da.po
+++ b/frappe/locale/da.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr ""
msgid "\"Team Members\" or \"Management\""
msgstr "\"Teammedlemmer\" eller \"Ledelse\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr ""
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. og bidragsydere"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr ""
@@ -90,19 +90,19 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr "'Modtagere' ikke specificeret"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' er ikke et gyldigt IBAN nummer"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' er ikke gyldig URL"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' ikke tilladt for type {1} i række {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Obligatorisk)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0 er højest"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Sandt & 0 = Falsk"
@@ -159,7 +159,7 @@ msgstr "1 Dag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Kalender Begivenhed synkroniseret."
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Rapport"
@@ -190,7 +190,7 @@ msgstr "1 måned siden"
msgid "1 of 2"
msgstr "1 af 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 post vil blive eksporteret"
@@ -590,7 +590,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
@@ -604,7 +604,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "Et felt med navnet {0} findes allerede i {1}"
@@ -923,7 +923,7 @@ msgstr "Handling / Rute"
msgid "Action Complete"
msgstr "Handling Fuldført"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Handling Mislykkedes"
@@ -972,13 +972,13 @@ msgstr ""
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Handlinger"
@@ -1035,20 +1035,20 @@ msgstr "Aktivitet"
msgid "Activity Log"
msgstr "Aktivitet Log"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Tilføj"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Tilføj / Fjern Kolonner"
@@ -1056,11 +1056,11 @@ msgstr "Tilføj / Fjern Kolonner"
msgid "Add / Update"
msgstr "Tilføj / Opdater"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Tilføj Ny Regel"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Tilføj Vedhæftning"
@@ -1080,11 +1080,15 @@ msgstr "Tilføj Kant Nederst"
msgid "Add Border at Top"
msgstr "Tilføj Kant Øverst"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Tilføj kort til Oversigtspanel"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Tilføj Diagram til Oversigtspanel"
@@ -1093,8 +1097,8 @@ msgid "Add Child"
msgstr "Tilføj Underordnet"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1138,11 +1142,7 @@ msgstr "Tilføj Gruppe"
msgid "Add Indexes"
msgstr "Tilføj Indekser"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Tilføj Flere"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Tilføj Ny Tilladelsesregel"
@@ -1155,17 +1155,13 @@ msgstr "Tilføj Deltagere"
msgid "Add Query Parameters"
msgstr "Tilføj Forespørgselsparametre"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Tilføj Roller"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr "Tilføj Række"
-
#. 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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Tilføj Signatur"
@@ -1184,16 +1180,16 @@ msgstr "Tilføj plads Øverst"
msgid "Add Subscribers"
msgstr "Tilføj Abonnenter"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Tilføj Tags"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Tilføj Tags"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Tilføj Skabelon"
@@ -1243,19 +1239,19 @@ msgstr "Tilføj kommentar"
msgid "Add a new section"
msgstr "Tilføj ny sektion"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Tilføj række øverst"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr ""
@@ -1273,6 +1269,10 @@ msgstr "Tilføj kolonne"
msgid "Add field"
msgstr "Tilføj felt"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1286,6 +1286,10 @@ msgstr ""
msgid "Add page break"
msgstr "Tilføj sideskift"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Tilføj script til Underordnet Tabel"
@@ -1304,7 +1308,7 @@ msgid "Add tab"
msgstr "Tilføj fane"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Tilføj til Oversigtspanel"
@@ -1344,8 +1348,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Tilføjet {0} ({1})"
@@ -1435,7 +1439,7 @@ msgstr "Tilføjer brugerdefineret klientscript til en DocType"
msgid "Adds a custom field to a DocType"
msgstr "Tilføjer brugerdefineret felt til DocType"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Administration"
@@ -1462,15 +1466,15 @@ msgstr "Administration"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Administrator Logget Ind"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "Administrator kan ikke følge"
@@ -1487,8 +1491,8 @@ msgstr "Avanceret"
msgid "Advanced Control"
msgstr "Avanceret Kontrol"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Avanceret Søgning"
@@ -1569,7 +1573,7 @@ msgstr ""
msgid "Alert"
msgstr "Advarsel"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1593,6 +1597,15 @@ msgstr "Justér Til Højre"
msgid "Align Value"
msgstr "Juster Værdi"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1625,7 +1638,7 @@ msgstr "Alle"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Hele Dagen"
@@ -1637,11 +1650,11 @@ msgstr ""
msgid "All Records"
msgstr "Alle Poster"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr ""
@@ -1952,7 +1965,7 @@ msgstr "Tilladte Roller"
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -1986,13 +1999,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr ""
@@ -2087,7 +2148,7 @@ msgstr "Ændrer"
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr ""
@@ -2100,7 +2161,7 @@ msgstr ""
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2151,7 +2212,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr ""
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr ""
@@ -2164,7 +2225,7 @@ msgstr ""
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2214,11 +2275,11 @@ msgstr "App Navn"
msgid "App Name (Client Name)"
msgstr "Appens Navn (Klient Navn)"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr ""
@@ -2292,7 +2353,7 @@ msgstr ""
msgid "Apply"
msgstr "Anvend"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Anvend Tildelingsregel"
@@ -2301,6 +2362,10 @@ msgstr "Anvend Tildelingsregel"
msgid "Apply Filters"
msgstr "Anvend Filtre"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2340,7 +2405,7 @@ msgstr ""
msgid "Apply to all Documents Types"
msgstr ""
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Anvender: {0}"
@@ -2348,18 +2413,11 @@ msgstr "Anvender: {0}"
msgid "Approval Required"
msgstr "Godkendelse Påkrævet"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Apps"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2382,16 +2440,16 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr ""
@@ -2410,19 +2468,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
@@ -2442,7 +2500,7 @@ msgstr ""
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
@@ -2491,7 +2549,7 @@ msgstr ""
msgid "Ask"
msgstr "Spørg"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Tildel"
@@ -2504,7 +2562,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2554,7 +2612,7 @@ msgstr "Tildelt Af"
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2643,7 +2701,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2668,7 +2726,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr ""
@@ -2766,19 +2824,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr ""
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr ""
@@ -3103,11 +3168,6 @@ msgstr ""
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3213,17 +3273,12 @@ msgstr ""
msgid "Background Image"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr ""
@@ -3336,8 +3391,8 @@ msgstr ""
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "Baseret På"
@@ -3361,6 +3416,8 @@ msgstr ""
msgid "Basic Info"
msgstr ""
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3430,7 +3487,7 @@ msgstr ""
msgid "Beta"
msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr ""
@@ -3558,18 +3615,11 @@ msgstr ""
msgid "Brand Image"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr ""
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
@@ -3640,7 +3690,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr ""
@@ -3661,7 +3711,7 @@ msgstr ""
msgid "Bulk Update"
msgstr ""
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3673,7 +3723,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -3822,7 +3872,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr ""
@@ -3872,12 +3922,12 @@ msgid "Callback Title"
msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3889,11 +3939,11 @@ msgstr "Kampagne"
msgid "Campaign Description (Optional)"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -3903,7 +3953,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -3925,7 +3975,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3935,11 +3985,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr ""
@@ -3951,7 +4001,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3984,7 +4034,7 @@ msgstr ""
msgid "Cancelling documents"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr ""
@@ -3992,7 +4042,7 @@ msgstr ""
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -4000,7 +4050,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4020,11 +4070,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4036,7 +4086,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4044,10 +4094,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr ""
@@ -4056,15 +4110,15 @@ msgstr ""
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4075,11 +4129,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4107,7 +4161,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4120,7 +4174,7 @@ msgstr ""
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr ""
@@ -4136,15 +4190,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4156,7 +4210,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr ""
@@ -4181,7 +4235,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr ""
@@ -4201,7 +4255,7 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
@@ -4215,7 +4269,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr ""
@@ -4244,17 +4298,19 @@ msgstr ""
msgid "Category Name"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4342,7 +4398,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4407,6 +4463,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr ""
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr ""
@@ -4458,7 +4520,7 @@ msgstr ""
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4468,7 +4530,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4476,7 +4538,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4496,10 +4558,6 @@ msgstr ""
msgid "Choose authentication method to be used by all users"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr ""
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4516,11 +4574,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr ""
@@ -4528,7 +4586,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4554,7 +4612,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4622,7 +4680,7 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
@@ -4730,7 +4788,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Luk"
@@ -4740,7 +4798,7 @@ msgstr "Luk"
msgid "Close Condition"
msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4796,12 +4854,12 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4858,7 +4916,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4869,7 +4927,7 @@ msgstr ""
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
-#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4914,11 +4972,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -4961,7 +5019,7 @@ msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5108,12 +5166,12 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5128,7 +5186,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Udført"
@@ -5219,7 +5277,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5308,8 +5366,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5427,7 +5485,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5496,11 +5554,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5512,12 +5570,12 @@ msgstr ""
msgid "Copy embed code"
msgstr ""
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr ""
@@ -5538,7 +5596,7 @@ msgstr ""
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr ""
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr ""
@@ -5546,7 +5604,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr ""
@@ -5554,11 +5612,11 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5566,7 +5624,7 @@ msgstr ""
msgid "Could not start up:"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr ""
@@ -5618,7 +5676,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
@@ -5645,15 +5703,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Skabe"
@@ -5666,13 +5725,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr ""
@@ -5706,7 +5765,7 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
@@ -5719,7 +5778,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5735,18 +5794,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5763,7 +5822,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr ""
@@ -5782,13 +5841,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr ""
@@ -5982,7 +6049,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr ""
@@ -5993,15 +6060,15 @@ msgstr ""
msgid "Custom Field"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr ""
@@ -6027,7 +6094,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr ""
@@ -6073,7 +6140,7 @@ msgstr ""
msgid "Custom Report"
msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr ""
@@ -6098,11 +6165,11 @@ msgstr ""
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6125,26 +6192,26 @@ msgstr ""
msgid "Customization"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr ""
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr ""
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6241,7 +6308,7 @@ msgstr ""
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr ""
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr ""
@@ -6298,8 +6365,8 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr ""
@@ -6549,7 +6616,7 @@ msgstr ""
msgid "Days Before or After"
msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr ""
@@ -6746,11 +6813,11 @@ msgstr ""
msgid "Default display currency"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr ""
@@ -6807,11 +6874,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6819,7 +6887,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6833,10 +6901,6 @@ msgstr "Slet"
msgid "Delete Account"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr ""
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6866,7 +6930,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr ""
@@ -6894,6 +6966,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6908,16 +6984,20 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6948,7 +7028,7 @@ msgstr ""
msgid "Deleted all documents successfully"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr ""
@@ -7055,6 +7135,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7137,16 +7218,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7176,11 +7262,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr ""
@@ -7328,10 +7414,11 @@ msgstr "Deaktiveret"
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr ""
@@ -7345,11 +7432,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7423,11 +7510,11 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7435,7 +7522,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7490,7 +7577,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7513,7 +7599,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7526,7 +7611,7 @@ msgstr ""
msgid "DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr ""
@@ -7594,10 +7679,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr ""
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7615,15 +7696,15 @@ msgstr ""
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr ""
@@ -7637,7 +7718,7 @@ msgstr ""
msgid "Doctype"
msgstr "Doctype"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7676,7 +7757,7 @@ msgstr ""
msgid "Document Follow"
msgstr ""
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr ""
@@ -7699,19 +7780,19 @@ msgstr ""
msgid "Document Links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7730,8 +7811,8 @@ msgstr ""
msgid "Document Name"
msgstr ""
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7749,7 +7830,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr ""
@@ -7853,7 +7934,7 @@ msgstr ""
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7873,11 +7954,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr ""
@@ -7906,27 +7987,27 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr ""
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr ""
@@ -7938,11 +8019,11 @@ msgstr ""
msgid "Document not Relinked"
msgstr ""
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
@@ -7958,10 +8039,6 @@ msgstr ""
msgid "Document {0} has been set to state {1} by {2}"
msgstr ""
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr ""
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8099,7 +8176,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr ""
@@ -8183,7 +8260,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr ""
@@ -8191,19 +8268,15 @@ msgstr ""
msgid "Duplicate Entry"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr ""
@@ -8211,6 +8284,18 @@ msgstr ""
msgid "Duplicate field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8298,9 +8383,10 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8311,7 +8397,7 @@ msgstr ""
msgid "Edit"
msgstr "Redigere"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Redigere"
@@ -8321,7 +8407,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Redigere"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Redigere"
@@ -8342,15 +8428,15 @@ msgstr ""
msgid "Edit Custom Block"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8364,7 +8450,7 @@ msgstr ""
msgid "Edit Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr ""
@@ -8377,7 +8463,7 @@ msgstr ""
msgid "Edit Format"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8435,7 +8521,7 @@ msgstr ""
msgid "Edit Shortcut"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8458,11 +8544,11 @@ msgstr ""
msgid "Edit the {0} Doctype"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr ""
@@ -8518,6 +8604,7 @@ msgstr ""
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8533,12 +8620,14 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: 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 +8662,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr ""
@@ -8771,7 +8860,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8810,7 +8899,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -8818,7 +8907,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9137,11 +9226,11 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr ""
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9168,6 +9257,10 @@ msgstr ""
msgid "Enter folder name"
msgstr ""
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9198,7 +9291,7 @@ msgstr ""
msgid "Entity Type"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr ""
@@ -9232,7 +9325,7 @@ msgstr ""
msgid "Error"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr ""
@@ -9247,12 +9340,12 @@ msgstr ""
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ""
@@ -9290,15 +9383,15 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9314,15 +9407,15 @@ msgstr ""
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9332,6 +9425,12 @@ msgstr ""
msgid "Errors"
msgstr ""
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9350,6 +9449,11 @@ msgstr ""
msgid "Event Frequency"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9375,11 +9479,11 @@ msgstr ""
msgid "Event Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr ""
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr ""
@@ -9401,6 +9505,7 @@ msgid "Exact Copies"
msgstr ""
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr ""
@@ -9471,7 +9576,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9492,21 +9597,21 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr ""
@@ -9558,20 +9663,21 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr ""
@@ -9610,11 +9716,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr ""
@@ -9630,6 +9736,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9642,7 +9752,7 @@ msgstr ""
msgid "Export without main header"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr ""
@@ -9682,7 +9792,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr ""
@@ -9731,12 +9841,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr ""
@@ -9799,7 +9914,7 @@ msgstr ""
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9811,7 +9926,7 @@ msgstr ""
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr ""
@@ -9827,7 +9942,7 @@ msgstr ""
msgid "Failed to request login to Frappe Cloud"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr ""
@@ -9869,7 +9984,7 @@ msgstr ""
msgid "Fax"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr ""
@@ -9929,8 +10044,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9940,7 +10055,7 @@ msgstr ""
msgid "Field \"route\" is mandatory for Web Views"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -9948,7 +10063,7 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr ""
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -9957,7 +10072,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10005,7 +10120,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10013,11 +10128,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10039,7 +10154,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10048,7 +10163,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10056,7 +10171,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10072,7 +10187,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10120,7 +10235,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10144,7 +10259,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10220,12 +10335,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10252,12 +10367,17 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10276,7 +10396,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr ""
@@ -10285,11 +10405,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10308,10 +10428,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10335,7 +10459,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10366,10 +10490,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10387,14 +10507,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10482,11 +10602,11 @@ msgstr ""
msgid "Fold"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10515,12 +10635,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10528,7 +10648,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10536,7 +10656,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10544,7 +10664,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10613,7 +10733,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10650,7 +10770,7 @@ msgstr ""
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10683,15 +10803,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10715,20 +10826,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10756,7 +10863,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10806,7 +10913,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -10985,7 +11093,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11006,7 +11114,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11047,7 +11155,7 @@ msgstr ""
msgid "Full Name"
msgstr ""
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11060,7 +11168,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11069,11 +11177,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11138,11 +11246,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11152,8 +11260,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11264,7 +11372,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11324,7 +11432,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11550,7 +11658,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11630,6 +11738,10 @@ msgstr ""
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11718,7 +11830,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11754,7 +11866,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11791,7 +11903,7 @@ msgstr ""
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11846,7 +11958,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11882,8 +11994,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12049,7 +12161,7 @@ msgstr ""
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12132,18 +12244,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12194,7 +12306,6 @@ msgid "IP Address"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12215,11 +12326,16 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr ""
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12230,6 +12346,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12261,13 +12381,13 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr ""
@@ -12394,12 +12514,20 @@ msgstr ""
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
@@ -12499,7 +12627,7 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr ""
@@ -12565,11 +12693,11 @@ msgstr ""
msgid "Image Width"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr ""
@@ -12603,7 +12731,7 @@ msgstr ""
msgid "Impersonated by {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12621,11 +12749,12 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12848,15 +12977,15 @@ msgid "Include Web View Link in Email"
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr ""
@@ -12923,11 +13052,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr ""
@@ -12979,7 +13108,7 @@ msgstr ""
msgid "Indicator Color"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr ""
@@ -13026,15 +13155,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr ""
@@ -13064,8 +13193,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr ""
@@ -13091,15 +13220,15 @@ msgstr ""
msgid "Instructions"
msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13167,7 +13296,7 @@ msgstr ""
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr ""
@@ -13176,6 +13305,11 @@ msgstr ""
msgid "Internal record of document shares"
msgstr ""
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13215,13 +13349,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13261,7 +13395,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13269,7 +13403,8 @@ msgstr ""
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr ""
@@ -13277,8 +13412,8 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13302,7 +13437,7 @@ msgstr ""
msgid "Invalid Login Token"
msgstr ""
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr ""
@@ -13310,7 +13445,7 @@ msgstr ""
msgid "Invalid Mail Server. Please rectify and try again."
msgstr ""
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr ""
@@ -13321,8 +13456,8 @@ msgstr ""
msgid "Invalid Operation"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr ""
@@ -13334,7 +13469,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr ""
@@ -13347,11 +13482,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13360,7 +13495,7 @@ msgstr ""
msgid "Invalid Search Field {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr ""
@@ -13379,7 +13514,7 @@ msgstr ""
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr ""
@@ -13391,7 +13526,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13399,19 +13534,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13419,18 +13554,22 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr ""
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr ""
@@ -13439,11 +13578,11 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13451,11 +13590,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13463,11 +13602,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13475,7 +13614,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13492,19 +13631,19 @@ msgstr ""
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13528,11 +13667,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13549,24 +13688,24 @@ msgstr ""
msgid "Invalid username or password"
msgstr ""
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr ""
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13694,7 +13833,7 @@ msgstr ""
msgid "Is Folder"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr ""
@@ -13765,7 +13904,7 @@ msgstr ""
msgid "Is Published Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr ""
@@ -14010,8 +14149,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr ""
@@ -14334,7 +14473,7 @@ msgstr ""
msgid "Label and Type"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr ""
@@ -14357,7 +14496,7 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14403,6 +14542,14 @@ msgstr ""
msgid "Last Active"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14527,6 +14674,11 @@ msgstr ""
msgid "Last synced {0}"
msgstr ""
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
@@ -14554,9 +14706,15 @@ msgstr ""
msgid "Ledger"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14650,7 +14808,7 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14679,7 +14837,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14701,7 +14859,7 @@ msgstr ""
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr ""
@@ -14742,7 +14900,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr ""
@@ -14766,7 +14924,7 @@ msgstr ""
msgid "Limit"
msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr ""
@@ -14892,7 +15050,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -14910,7 +15068,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
@@ -14953,6 +15111,7 @@ msgstr ""
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14974,8 +15133,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr ""
@@ -15005,7 +15164,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -15019,7 +15178,7 @@ msgstr ""
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr ""
@@ -15046,7 +15205,7 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
@@ -15055,7 +15214,7 @@ msgstr ""
msgid "Load Balancing"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15073,10 +15232,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr ""
@@ -15093,8 +15252,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15104,7 +15263,8 @@ msgid "Loading..."
msgstr ""
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
@@ -15177,6 +15337,11 @@ msgstr ""
msgid "Login"
msgstr ""
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15252,7 +15417,7 @@ msgstr ""
msgid "Login to {0}"
msgstr ""
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr ""
@@ -15319,8 +15484,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr ""
@@ -15351,7 +15515,7 @@ msgstr ""
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr ""
@@ -15501,7 +15665,7 @@ msgstr ""
msgid "Mandatory fields required in {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
@@ -15563,7 +15727,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15615,9 +15779,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15679,7 +15846,7 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr ""
@@ -15700,20 +15867,27 @@ msgstr ""
msgid "Maximum {0} rows allowed"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15757,12 +15931,12 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15796,13 +15970,13 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr ""
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
@@ -15833,7 +16007,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr ""
@@ -15930,7 +16104,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -16019,7 +16193,7 @@ msgstr ""
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16039,7 +16213,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16104,7 +16278,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16151,9 +16325,8 @@ msgstr ""
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16170,7 +16343,7 @@ msgstr ""
msgid "Module to Export"
msgstr ""
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16285,7 +16458,7 @@ msgstr ""
msgid "More content for the bottom of the page."
msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr ""
@@ -16300,7 +16473,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr ""
@@ -16312,19 +16485,19 @@ msgstr ""
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16336,7 +16509,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr ""
@@ -16454,7 +16627,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr ""
@@ -16466,7 +16639,7 @@ msgstr ""
msgid "Name of the new Print Format"
msgstr ""
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr ""
@@ -16505,7 +16678,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr ""
@@ -16529,11 +16702,6 @@ msgstr ""
msgid "Navbar Settings"
msgstr ""
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16547,39 +16715,44 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16601,6 +16774,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16617,7 +16791,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16633,8 +16807,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr ""
@@ -16683,7 +16857,7 @@ msgstr ""
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16704,8 +16878,8 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr ""
@@ -16732,8 +16906,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16741,7 +16915,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16784,32 +16958,32 @@ msgstr ""
msgid "New value to be set"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr ""
@@ -16821,7 +16995,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16842,7 +17016,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr ""
@@ -16869,12 +17043,16 @@ msgstr ""
msgid "Next Action Email Template"
msgstr ""
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -16941,20 +17119,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -17024,7 +17206,7 @@ msgstr ""
msgid "No Google Calendar Event to sync."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17043,23 +17225,23 @@ msgstr ""
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr ""
@@ -17079,11 +17261,11 @@ msgstr ""
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr ""
@@ -17091,7 +17273,7 @@ msgstr ""
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17099,7 +17281,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17115,7 +17297,7 @@ msgstr ""
msgid "No Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17135,7 +17317,7 @@ msgstr ""
msgid "No changes in document"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17199,7 +17381,7 @@ msgstr ""
msgid "No file attached"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr ""
@@ -17247,11 +17429,11 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
@@ -17260,7 +17442,7 @@ msgstr ""
msgid "No permission to read {0}"
msgstr ""
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr ""
@@ -17276,7 +17458,7 @@ msgstr ""
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr ""
@@ -17284,7 +17466,7 @@ msgstr ""
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17296,11 +17478,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17312,7 +17495,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17321,7 +17504,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17364,12 +17547,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr ""
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17411,7 +17594,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17420,7 +17603,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17429,8 +17612,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17450,7 +17633,7 @@ msgstr ""
msgid "Not Sent"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr ""
@@ -17464,15 +17647,15 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr ""
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr ""
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17480,7 +17663,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17500,11 +17683,11 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr ""
@@ -17517,11 +17700,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17549,7 +17732,7 @@ msgstr ""
msgid "Note:"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17581,7 +17764,7 @@ msgstr ""
msgid "Notes:"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr ""
@@ -17593,8 +17776,8 @@ msgstr ""
msgid "Nothing left to undo"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17605,11 +17788,13 @@ msgid "Nothing to update"
msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr ""
@@ -17625,7 +17810,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17634,11 +17819,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17656,13 +17836,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -17898,7 +18080,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17938,7 +18120,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17946,7 +18128,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18013,7 +18195,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18057,7 +18239,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18073,11 +18255,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18098,7 +18280,7 @@ msgstr ""
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
@@ -18121,11 +18303,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18168,7 +18350,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18191,8 +18373,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18228,6 +18410,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18242,7 +18428,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18254,11 +18440,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18273,16 +18459,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18314,7 +18500,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18340,7 +18526,7 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18374,7 +18560,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
@@ -18383,7 +18569,7 @@ msgstr ""
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18391,7 +18577,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18399,7 +18585,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18415,7 +18601,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18435,8 +18621,12 @@ msgstr ""
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18511,18 +18701,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18546,7 +18738,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18554,11 +18746,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18717,7 +18909,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18733,7 +18925,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18744,7 +18936,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18777,11 +18969,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18795,7 +18987,7 @@ msgstr ""
msgid "Parent Label"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18820,11 +19012,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18843,7 +19035,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18880,11 +19072,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -18893,7 +19085,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18922,11 +19114,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18938,7 +19130,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -19000,7 +19192,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19085,15 +19277,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19101,7 +19293,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19111,12 +19307,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19125,11 +19321,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19160,7 +19351,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19171,13 +19361,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19189,11 +19378,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19263,13 +19452,13 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
@@ -19327,7 +19516,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19343,7 +19532,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19351,11 +19540,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19367,11 +19556,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19403,7 +19592,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19433,10 +19622,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19449,7 +19638,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19523,15 +19712,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19547,7 +19736,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19567,7 +19756,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19575,7 +19764,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19625,11 +19814,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19637,7 +19826,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19657,7 +19846,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19669,7 +19858,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19697,7 +19886,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19818,11 +20007,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19874,11 +20063,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19886,7 +20075,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19904,7 +20093,7 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
@@ -19948,16 +20137,16 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20010,19 +20199,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20040,8 +20229,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20085,7 +20275,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20118,11 +20308,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20135,8 +20325,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20175,7 +20365,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20184,11 +20374,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20198,15 +20388,15 @@ msgstr ""
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20255,7 +20445,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20295,9 +20485,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20367,7 +20557,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr ""
@@ -20517,7 +20707,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20579,7 +20769,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20600,7 +20790,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20641,7 +20831,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20733,6 +20923,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20741,7 +20940,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20759,7 +20958,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20770,11 +20969,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20811,7 +21011,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20851,7 +21051,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20893,7 +21093,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20944,7 +21144,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21010,12 +21210,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21231,12 +21431,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21253,7 +21453,7 @@ msgstr ""
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21268,7 +21468,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21279,7 +21479,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21325,10 +21525,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr ""
@@ -21340,7 +21538,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21359,7 +21557,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21439,9 +21637,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21469,7 +21667,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21516,7 +21714,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21579,6 +21777,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21593,10 +21792,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21665,7 +21863,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21699,14 +21897,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21717,7 +21911,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21729,7 +21923,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21737,12 +21931,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21765,7 +21959,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21773,7 +21967,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21832,13 +22026,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -21954,7 +22148,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22012,7 +22206,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22021,7 +22215,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22043,6 +22237,11 @@ msgstr ""
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22070,8 +22269,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22118,9 +22317,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22155,8 +22360,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22171,8 +22374,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22216,7 +22418,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22224,11 +22426,9 @@ msgstr ""
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22250,7 +22450,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22369,20 +22569,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22409,7 +22609,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22428,14 +22628,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22458,7 +22658,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22538,7 +22738,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22572,7 +22772,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22644,22 +22844,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22672,7 +22873,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22680,7 +22881,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22698,20 +22899,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr ""
@@ -22720,11 +22921,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22928,7 +23129,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22948,7 +23149,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -22966,7 +23167,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -22983,12 +23184,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23060,15 +23261,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23118,24 +23319,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23151,7 +23354,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23195,13 +23398,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23210,7 +23413,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23219,19 +23422,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23256,16 +23459,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23275,7 +23478,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23311,12 +23514,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23333,11 +23530,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23363,13 +23560,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23403,7 +23600,7 @@ msgstr ""
msgid "Select {0}"
msgstr ""
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23433,6 +23630,11 @@ msgstr ""
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23485,7 +23687,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23548,7 +23750,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
@@ -23587,7 +23789,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23681,7 +23883,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23691,7 +23893,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23718,11 +23920,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23750,16 +23956,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr ""
@@ -23800,7 +24004,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -23826,7 +24030,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23869,8 +24073,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23890,12 +24094,12 @@ msgstr ""
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -23999,8 +24203,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24023,11 +24227,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24035,12 +24239,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24069,13 +24273,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24083,7 +24288,7 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
@@ -24143,16 +24348,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24198,7 +24397,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24250,7 +24449,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24370,7 +24569,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24512,7 +24711,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24635,7 +24834,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24810,15 +25009,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24849,13 +25048,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24904,7 +25103,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -24943,6 +25142,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24950,6 +25150,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25017,8 +25218,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25190,7 +25391,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25228,7 +25429,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25342,7 +25543,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25356,7 +25557,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25377,14 +25578,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25414,7 +25615,7 @@ msgstr ""
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25438,11 +25639,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25468,7 +25669,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
@@ -25503,12 +25704,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25550,7 +25751,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25575,7 +25776,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25600,7 +25801,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25641,7 +25842,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25654,7 +25855,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25723,9 +25924,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25735,7 +25934,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25862,6 +26061,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25876,7 +26076,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25952,6 +26151,11 @@ msgstr ""
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25968,6 +26172,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26003,7 +26213,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26012,7 +26222,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26030,7 +26240,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26038,11 +26248,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26062,17 +26272,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26156,7 +26366,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26252,7 +26462,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26304,7 +26514,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26452,7 +26670,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26464,6 +26682,42 @@ msgstr ""
msgid "The total number of user document types limit has been crossed."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 ""
@@ -26505,7 +26759,7 @@ msgstr ""
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr ""
@@ -26513,7 +26767,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26522,7 +26776,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26534,11 +26788,11 @@ msgstr ""
msgid "There is no data to be exported"
msgstr ""
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr ""
@@ -26546,7 +26800,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26562,7 +26816,7 @@ msgstr ""
msgid "There was an error saving filters"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr ""
@@ -26570,11 +26824,11 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr ""
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr ""
@@ -26643,11 +26897,11 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26671,7 +26925,7 @@ msgstr ""
msgid "This doctype has no orphan fields to trim"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26687,15 +26941,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26708,7 +26962,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26733,11 +26987,11 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
@@ -26756,7 +27010,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26798,15 +27052,15 @@ msgstr ""
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr ""
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr ""
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26814,7 +27068,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr ""
@@ -26838,7 +27092,7 @@ msgstr ""
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr ""
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -26882,7 +27136,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr ""
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
@@ -26913,6 +27167,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26920,6 +27175,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -27002,11 +27258,6 @@ msgstr ""
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
@@ -27038,11 +27289,11 @@ msgstr ""
msgid "Timeline Name"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
@@ -27113,7 +27364,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27136,7 +27387,7 @@ msgstr ""
msgid "Title Prefix"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27222,7 +27473,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -27275,31 +27526,14 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr ""
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr ""
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27335,7 +27569,7 @@ msgid "Tomorrow"
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr ""
@@ -27343,15 +27577,19 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -27407,10 +27645,10 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr ""
@@ -27425,7 +27663,7 @@ msgstr ""
msgid "Total Errors (last 1 day)"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr ""
@@ -27525,7 +27763,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27561,7 +27799,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27572,7 +27810,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr ""
@@ -27608,7 +27846,7 @@ msgstr ""
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr ""
@@ -27657,8 +27895,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27704,6 +27942,7 @@ msgstr ""
#. 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 'Event Notifications'
#. 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'
@@ -27717,6 +27956,7 @@ msgstr ""
#: 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/event_notifications/event_notifications.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
@@ -27725,7 +27965,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27892,7 +28132,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -27900,7 +28140,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr ""
@@ -27916,7 +28156,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27937,20 +28177,20 @@ msgstr ""
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr ""
@@ -28024,9 +28264,10 @@ msgstr ""
msgid "Unsafe SQL query"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr ""
@@ -28059,11 +28300,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28083,7 +28324,7 @@ msgstr ""
msgid "Unzipping files..."
msgstr ""
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr ""
@@ -28091,13 +28332,13 @@ msgstr ""
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr ""
@@ -28168,7 +28409,7 @@ msgstr ""
msgid "Update from Frappe Cloud"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr ""
@@ -28176,8 +28417,7 @@ msgstr ""
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr ""
@@ -28189,11 +28429,11 @@ msgstr ""
msgid "Updated To A New Version 🎉"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr ""
@@ -28218,11 +28458,11 @@ msgstr ""
msgid "Updating naming series options"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr ""
@@ -28230,12 +28470,12 @@ msgstr ""
msgid "Updating {0} of {1}, {2}"
msgstr ""
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28283,6 +28523,7 @@ msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr ""
@@ -28354,7 +28595,7 @@ msgstr ""
msgid "Use of sub-query or function is restricted"
msgstr ""
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr ""
@@ -28388,9 +28629,8 @@ msgstr ""
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28417,11 +28657,11 @@ msgstr ""
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28557,7 +28797,7 @@ msgstr ""
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr ""
@@ -28573,19 +28813,19 @@ msgid "User Permission"
msgstr ""
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr ""
@@ -28658,7 +28898,7 @@ msgstr ""
msgid "User can login using Email id or User Name"
msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr ""
@@ -28692,27 +28932,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr ""
@@ -28721,11 +28961,11 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr ""
@@ -28750,18 +28990,17 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr ""
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28832,7 +29071,7 @@ msgstr ""
msgid "Validate SSL Certificate"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr ""
@@ -28861,7 +29100,7 @@ msgstr ""
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28888,15 +29127,19 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28908,7 +29151,7 @@ msgstr ""
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28933,7 +29176,13 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr ""
@@ -28950,7 +29199,7 @@ msgstr ""
msgid "Value {0} must in {1} format"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr ""
@@ -28959,11 +29208,11 @@ msgstr ""
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr ""
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr ""
@@ -28971,7 +29220,7 @@ msgstr ""
msgid "Verification Link"
msgstr ""
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr ""
@@ -28985,7 +29234,7 @@ msgid "Verified"
msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr ""
@@ -29021,7 +29270,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr ""
@@ -29033,7 +29282,7 @@ msgstr ""
msgid "View File"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr ""
@@ -29070,7 +29319,7 @@ msgstr ""
msgid "View Settings"
msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29079,14 +29328,11 @@ msgstr ""
msgid "View Switcher"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29102,7 +29348,7 @@ msgstr ""
msgid "View this in your browser"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr ""
@@ -29138,7 +29384,7 @@ msgstr ""
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29186,7 +29432,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29195,7 +29441,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr ""
@@ -29279,7 +29525,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr ""
@@ -29376,7 +29622,7 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29431,7 +29677,7 @@ msgstr ""
msgid "Website Search Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr ""
@@ -29496,6 +29742,11 @@ msgstr ""
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29583,15 +29834,15 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr ""
@@ -29613,10 +29864,6 @@ msgstr ""
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29634,7 +29881,7 @@ msgstr ""
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr ""
@@ -29755,6 +30002,10 @@ msgstr ""
msgid "Workflow Document State"
msgstr ""
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -29772,11 +30023,11 @@ msgstr ""
msgid "Workflow State Field"
msgstr ""
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr ""
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr ""
@@ -29784,7 +30035,7 @@ msgstr ""
msgid "Workflow States Don't Exist"
msgstr ""
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr ""
@@ -29819,18 +30070,15 @@ msgstr ""
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29857,7 +30105,6 @@ 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 ""
@@ -29871,27 +30118,15 @@ msgstr ""
msgid "Workspace Quick List"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr ""
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr ""
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -29901,13 +30136,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr ""
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr ""
@@ -29936,11 +30165,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr ""
@@ -29958,7 +30188,7 @@ msgstr ""
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -29973,7 +30203,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr ""
@@ -30021,10 +30251,14 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30033,10 +30267,10 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -30072,7 +30306,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30080,7 +30314,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30088,11 +30322,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30115,7 +30349,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -30123,10 +30357,14 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr ""
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -30143,7 +30381,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30151,7 +30389,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -30164,7 +30402,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr ""
@@ -30188,10 +30426,6 @@ msgstr ""
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
@@ -30246,7 +30480,7 @@ msgstr ""
msgid "You can try changing the filters of your report."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr ""
@@ -30276,6 +30510,10 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -30302,7 +30540,6 @@ msgid "You changed {0} to {1}"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr ""
@@ -30311,11 +30548,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
@@ -30327,15 +30560,19 @@ msgstr ""
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
@@ -30371,7 +30608,7 @@ msgstr ""
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
@@ -30391,7 +30628,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30400,7 +30637,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr ""
@@ -30416,12 +30652,12 @@ msgstr ""
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr ""
@@ -30429,7 +30665,7 @@ msgstr ""
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr ""
@@ -30461,7 +30697,7 @@ msgstr ""
msgid "You need to have \"Share\" permission"
msgstr ""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr ""
@@ -30481,7 +30717,7 @@ msgstr ""
msgid "You need write permission on {0} {1} to rename"
msgstr ""
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
@@ -30528,7 +30764,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30605,7 +30841,7 @@ msgstr ""
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr ""
@@ -30647,7 +30883,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30669,7 +30905,7 @@ msgstr ""
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30688,7 +30924,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -30711,7 +30947,7 @@ msgstr ""
msgid "cProfile Output"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr ""
@@ -30727,7 +30963,9 @@ msgid "canceled"
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30751,7 +30989,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30809,7 +31047,7 @@ msgstr ""
msgid "descending"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr ""
@@ -30819,7 +31057,7 @@ msgstr ""
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr ""
@@ -30861,12 +31099,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr ""
@@ -30922,12 +31164,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr ""
@@ -30942,6 +31184,20 @@ msgstr ""
msgid "import"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -30981,16 +31237,11 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr ""
@@ -31009,15 +31260,15 @@ msgstr ""
msgid "mm/dd/yyyy"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr ""
@@ -31079,7 +31330,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr ""
@@ -31152,7 +31403,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -31236,11 +31487,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr ""
@@ -31338,11 +31589,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31378,11 +31631,11 @@ msgstr ""
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31399,8 +31652,8 @@ msgstr ""
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31413,13 +31666,13 @@ msgid "{0} Chart"
msgstr ""
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31453,11 +31706,11 @@ msgstr ""
msgid "{0} Map"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31465,7 +31718,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr ""
@@ -31478,11 +31731,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr ""
@@ -31544,7 +31797,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31573,16 +31826,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr ""
@@ -31599,11 +31855,19 @@ msgstr ""
msgid "{0} days ago"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
@@ -31628,7 +31892,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31649,7 +31913,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr ""
@@ -31657,7 +31925,15 @@ msgstr ""
msgid "{0} is a not a valid zip file"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr ""
@@ -31665,6 +31941,15 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31674,22 +31959,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr ""
@@ -31702,10 +32001,14 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31722,12 +32025,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31735,23 +32038,23 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr ""
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31767,6 +32070,11 @@ msgstr ""
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr ""
@@ -31775,10 +32083,12 @@ msgstr ""
msgid "{0} is not like {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr ""
@@ -31787,36 +32097,50 @@ msgstr ""
msgid "{0} is now default print format for {1} doctype"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr ""
@@ -31844,35 +32168,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31889,11 +32213,11 @@ msgid "{0} not allowed to be renamed"
msgstr ""
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31922,7 +32246,7 @@ msgstr ""
msgid "{0} records deleted"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr ""
@@ -31947,7 +32271,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr ""
@@ -31961,7 +32285,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr ""
@@ -31969,7 +32293,7 @@ msgstr ""
msgid "{0} self assigned this task: {1}"
msgstr ""
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr ""
@@ -32037,7 +32361,7 @@ msgstr ""
msgid "{0} weeks ago"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32049,7 +32373,7 @@ msgstr ""
msgid "{0} years ago"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr ""
@@ -32057,11 +32381,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32073,11 +32397,11 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr ""
@@ -32085,87 +32409,59 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr ""
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr ""
@@ -32173,15 +32469,59 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32194,15 +32534,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr ""
@@ -32222,11 +32562,11 @@ msgstr ""
msgid "{count} rows selected"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr ""
diff --git a/frappe/locale/de.po b/frappe/locale/de.po
index 01c665afe1..8c1082af55 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2026-01-02 22:29\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "\"Übergeordnet\" bezeichnet die übergeordnete Tabelle, in der diese Ze
msgid "\"Team Members\" or \"Management\""
msgstr "\"Teammitglieder\" oder \"Management\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "Das Feld \"amended_from\" muss vorhanden sein, um eine Änderung vorzunehmen."
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. und Mitwirkende"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "'In der globalen Suche' ist für Feld {0} des Typs {1} nicht erlaubt"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "'In der globalen Suche' nicht zulässig für Typ {0} in Zeile {1}"
@@ -90,19 +90,19 @@ msgstr "'In Listenansicht' nicht erlaubt für Typ {0} in Zeile {1}"
msgid "'Recipients' not specified"
msgstr "Keine \"Empfänger\" angegeben"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' ist keine gültige IBAN"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' ist keine gültige URL"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' ist für Typ {1} in Zeile {2} nicht zulässig"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Pflichtfeld)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0 ist am höchsten"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Wahr & 0 = Falsch"
@@ -159,7 +159,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:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Bericht"
@@ -190,7 +190,7 @@ msgstr "vor 1 Monat"
msgid "1 of 2"
msgstr "1 von 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 Datensatz wird exportiert"
@@ -773,7 +773,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
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"
@@ -787,7 +787,7 @@ msgstr "Eine Frappe Framework-Instanz kann als OAuth-Client, Ressource oder Auto
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "Ein Download-Link mit Ihren Daten wird an die E-Mail-Adresse gesendet, die mit Ihrem Konto verbunden ist."
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "Ein Feld mit dem Namen {0} existiert bereits in {1}"
@@ -1108,7 +1108,7 @@ msgstr "Aktion / Route"
msgid "Action Complete"
msgstr "Aktion abgeschlossen"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Aktion fehlgeschlagen"
@@ -1157,13 +1157,13 @@ msgstr "Aktion {0} ist auf {1} {2} fehlgeschlagen. {3} ansehen."
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Aktionen"
@@ -1220,20 +1220,20 @@ msgstr "Aktivität"
msgid "Activity Log"
msgstr "Aktivitätsprotokoll"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Hinzufügen"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Spalten hinzufügen / entfernen"
@@ -1241,11 +1241,11 @@ msgstr "Spalten hinzufügen / entfernen"
msgid "Add / Update"
msgstr "Hinzufügen / Aktualisieren"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Neue Regel hinzufügen"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Anhang hinzufügen"
@@ -1265,11 +1265,15 @@ msgstr "Rand unten hinzufügen"
msgid "Add Border at Top"
msgstr "Rand oben hinzufügen"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Karte zum Dashboard hinzufügen"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Diagramm zum Dashboard hinzufügen"
@@ -1278,8 +1282,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:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1323,11 +1327,7 @@ msgstr "Gruppe hinzufügen"
msgid "Add Indexes"
msgstr "Indizes hinzufügen"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Mehrere hinzufügen"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Neue Berechtigungsregel anlegen"
@@ -1340,17 +1340,13 @@ msgstr "Teilnehmer hinzufügen"
msgid "Add Query Parameters"
msgstr "Abfrageparameter hinzufügen"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Rollen hinzufügen"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Signatur hinzufügen"
@@ -1369,16 +1365,16 @@ msgstr "Freiraum darüber hinzufügen"
msgid "Add Subscribers"
msgstr "Abonnenten hinzufügen"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Schlagworte hinzufügen"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Schlagworte hinzufügen"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Vorlage hinzufügen"
@@ -1428,19 +1424,19 @@ msgstr "Einen Kommentar hinzufügen"
msgid "Add a new section"
msgstr "Neuen Abschnitt hinzufügen"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Zeile über der aktuellen Zeile hinzufügen"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Füge eine Zeile unten hinzu"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Füge eine Zeile oben hinzu"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Zeile unter der aktuellen Zeile hinzufügen"
@@ -1458,6 +1454,10 @@ msgstr "Spalte hinzufügen"
msgid "Add field"
msgstr "Feld hinzufügen"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1471,6 +1471,10 @@ msgstr ""
msgid "Add page break"
msgstr "Seitenumbruch hinzufügen"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Skript für Child Table hinzufügen"
@@ -1489,7 +1493,7 @@ msgid "Add tab"
msgstr "Tab hinzufügen"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Zum Dashboard hinzufügen"
@@ -1529,8 +1533,8 @@ msgstr "HTML im Bereich <head> der Webseite, hauptsächlich zur Überprüf
msgid "Added default log doctypes: {}"
msgstr "Standard Log-DocTypes hinzugefügt: {}"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "{0} ({1}) hinzugefügt"
@@ -1620,7 +1624,7 @@ msgstr "Fügt ein benutzerdefiniertes Client-Skript zu einem DocType hinzu"
msgid "Adds a custom field to a DocType"
msgstr "Fügt einem DocType ein benutzerdefiniertes Feld hinzu"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Verwaltung"
@@ -1647,15 +1651,15 @@ msgstr "Verwaltung"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Administrator hat sich angemeldet"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator hat auf {0} am {1} über die IP-Adresse {2} zugegriffen."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "Administrator kann nicht folgen"
@@ -1672,8 +1676,8 @@ msgstr "Fortgeschritten"
msgid "Advanced Control"
msgstr "Erweiterte Kontrolle"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Erweiterte Suche"
@@ -1754,7 +1758,7 @@ msgstr "Das Feld Aggregatfunktion ist erforderlich, um ein Dashboard-Diagramm zu
msgid "Alert"
msgstr "Hinweis"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr "Alias muss ein String sein"
@@ -1778,6 +1782,15 @@ msgstr "Rechtsbündig ausrichten"
msgid "Align Value"
msgstr "Wert anordnen"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1810,7 +1823,7 @@ msgstr "Alle"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Ganzer Tag"
@@ -1822,11 +1835,11 @@ msgstr "Alle Bilder, die an die Website-Slideshow angehängt werden, sollten öf
msgid "All Records"
msgstr "Alle Datensätze"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "Alle Buchungen"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "Alle Anpassungen werden entfernt. Bitte bestätigen."
@@ -2138,7 +2151,7 @@ msgstr "Erlaubte Rollen"
msgid "Allowed embedding domains"
msgstr "Erlaubte Einbettungsdomänen"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "DocType, DocType zulassen. Achtung!"
@@ -2172,13 +2185,61 @@ msgstr "Ermöglicht Clients, dies als Autorisierungsserver anzuzeigen, wenn der
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr "Ermöglicht, dass die aktivierte Social Login Key Basis-URL als Autorisierungsserver angezeigt wird."
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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 "Ermöglicht das Überspringen der Autorisierung, wenn ein Benutzer über aktive Tokens verfügt."
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Bereits registriert"
@@ -2273,7 +2334,7 @@ msgstr "Änderung"
msgid "Amendment Naming Override"
msgstr "Überschreibung der Berichtigungsbenennung"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Berichtigung nicht erlaubt"
@@ -2286,7 +2347,7 @@ msgstr "Benennungsregeln für Berichtigungen aktualisiert."
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr "Eine E-Mail zur Bestätigung Ihrer Anfrage wurde an Ihre E-Mail-Adresse gesendet. Bitte bestätigen Sie Ihre Anfrage, um den Prozess abzuschließen."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Beim Festlegen der Sitzungsstandards ist ein Fehler aufgetreten"
@@ -2337,7 +2398,7 @@ msgstr "Anonymisierungsmatrix"
msgid "Anonymous responses"
msgstr "Anonyme Antworten"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "Eine andere Transaktion blockiert die aktuelle. Bitte versuchen Sie es in ein paar Sekunden noch einmal."
@@ -2350,7 +2411,7 @@ msgstr "Ein weiterer {0} mit dem Namen {1} existiert. Bitte einen anderen Namen
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 "Es können alle stringbasierten Druckersprachen verwendet werden. Das Schreiben von Rohbefehlen erfordert Kenntnisse der vom Druckerhersteller bereitgestellten Druckersprache. Informationen zum Schreiben der nativen Befehle finden Sie im Entwicklerhandbuch des Druckerherstellers. Diese Befehle werden serverseitig mit der Jinja-Templating-Sprache gerendert."
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr "Abgesehen vom Systemmanager können Rollen mit der Berechtigung „Benutzerberechtigungen festlegen“ Berechtigungen für andere Benutzer für diesen Dokumenttyp festlegen."
@@ -2400,11 +2461,11 @@ msgstr "App-Name"
msgid "App Name (Client Name)"
msgstr "App-Name (Client-Name)"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "App nicht gefunden für Modul: {0}"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "App {0} ist nicht installiert"
@@ -2478,7 +2539,7 @@ msgstr ""
msgid "Apply"
msgstr "Anwenden"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Zuweisungsregel anwenden"
@@ -2487,6 +2548,10 @@ msgstr "Zuweisungsregel anwenden"
msgid "Apply Filters"
msgstr "Filter anwenden"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2526,7 +2591,7 @@ msgstr "Diese Regel anwenden, wenn der Benutzer gleich dem Besitzer ist"
msgid "Apply to all Documents Types"
msgstr "Auf alle Dokumenttypen anwenden"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Bewerbung: {0}"
@@ -2534,18 +2599,11 @@ msgstr "Bewerbung: {0}"
msgid "Approval Required"
msgstr "Genehmigung erforderlich"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Apps"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2568,16 +2626,16 @@ msgstr "Archivierte Spalten"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Möchten Sie wirklich die Einladung abbrechen?"
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?"
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Möchten Sie wirklich alle Zeilen löschen?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Soll die Anlage wirklich gelöscht werden?"
@@ -2596,19 +2654,19 @@ 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 "Sind Sie sicher, dass Sie die Registerkarte löschen möchten? Alle Abschnitte und Felder der Registerkarte werden auf die vorherige Registerkarte verschoben."
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr "Möchten Sie wirklich diesen Datensatz löschen?"
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
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:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Möchten Sie {0} wirklich mit {1} zusammenführen?"
@@ -2628,7 +2686,7 @@ msgstr "Sind Sie sicher, dass Sie diese Mitteilung an {0} neu verknüpfen wollen
msgid "Are you sure you want to remove all failed jobs?"
msgstr "Sind Sie sicher, dass Sie alle fehlgeschlagenen Jobs entfernen möchten?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "Sind Sie sicher, dass Sie den Filter {0} entfernen möchten?"
@@ -2677,7 +2735,7 @@ msgstr "Wie von Ihnen gewünscht, wurden Ihr Konto und alle mit der E-Mail {1} v
msgid "Ask"
msgstr "Nachfragen"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Zuweisen"
@@ -2690,7 +2748,7 @@ msgstr "Zuweisungsbedingung"
msgid "Assign To"
msgstr "Zuweisen zu"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Zuweisen"
@@ -2740,7 +2798,7 @@ msgstr "Zugewiesen von"
msgid "Assigned By Full Name"
msgstr "Zugewiesen von (Vollständiger Name)"
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2829,7 +2887,7 @@ msgstr "Zuweisungen"
msgid "Asynchronous"
msgstr "Asynchron"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "Mindestens eine Spalte muss im Raster angezeigt werden."
@@ -2854,7 +2912,7 @@ msgstr "Mindestens ein Feld des übergeordneten Dokumenttyps ist obligatorisch"
msgid "Attach"
msgstr "Anhängen"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Dokumentendruck anhängen"
@@ -2952,19 +3010,26 @@ msgstr "Anhang-Einstellungen"
#. 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:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Anhänge"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "Es wird versucht, eine Verbindung zum QZ-Fach herzustellen ..."
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "Es wird versucht, QZ Tray zu starten ..."
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "Namensnennung"
@@ -3289,11 +3354,6 @@ msgstr "Großartige Arbeit"
msgid "Awesome, now try making an entry yourself"
msgstr "Super, versuchen Sie jetzt selbst einen Eintrag zu erstellen"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3399,17 +3459,12 @@ msgstr "Hintergrundfarbe"
msgid "Background Image"
msgstr "Hintergrundbild"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Hintergrundprozesse"
@@ -3522,8 +3577,8 @@ msgstr "Basis-URL"
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "Basiert auf"
@@ -3547,6 +3602,8 @@ msgstr "Basic"
msgid "Basic Info"
msgstr "Grundlegende Informationen"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3616,7 +3673,7 @@ msgstr "Beginnend mit"
msgid "Beta"
msgstr "Beta"
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "Fügen Sie noch mehr Buchstaben oder ein anderes Wort hinzu"
@@ -3744,18 +3801,11 @@ msgstr "Marke HTML"
msgid "Brand Image"
msgstr "Markenbild"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr "Markenlogo"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr ""
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
@@ -3827,7 +3877,7 @@ msgstr "Stapel löschen"
msgid "Bulk Edit"
msgstr "Stapel bearbeiten"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Stapel-Bearbeitung {0}"
@@ -3848,7 +3898,7 @@ msgstr "Stapel-PDF-Export"
msgid "Bulk Update"
msgstr "Stapeländerung"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr "Stapelgenehmigung unterstützt nur bis zu 500 Dokumente."
@@ -3860,7 +3910,7 @@ msgstr "Stapelverarbeitung wird im Hintergrund eingereiht."
msgid "Bulk operations only support up to 500 documents."
msgstr "Stapelverarbeitung unterstützt nur bis zu 500 Dokumente."
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr "Stapel-{0} ist im Hintergrund eingereiht."
@@ -4009,7 +4059,7 @@ msgstr "Cache"
msgid "Cache Cleared"
msgstr "Cache gelöscht"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Berechnen"
@@ -4059,12 +4109,12 @@ msgid "Callback Title"
msgstr "Rückruftitel"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4076,11 +4126,11 @@ msgstr "Kampagne"
msgid "Campaign Description (Optional)"
msgstr "Kampagnenbeschreibung (optional)"
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr "Kann nicht umbenannt werden, da Spalte {0} bereits im DocType vorhanden ist."
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr "Kann nur zu/von der Benennungsregel Autoincrement wechseln, wenn keine Daten im Doctype vorhanden sind"
@@ -4090,7 +4140,7 @@ msgstr "Kann nur zu/von der Benennungsregel Autoincrement wechseln, wenn keine D
msgid "Can only list down the document types which has been linked to the User document type."
msgstr "Kann nur die Dokumenttypen auflisten, die mit dem Dokumenttyp Benutzer verknüpft sind."
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr "Folgen nicht möglich, da das Änderungsprotokoll für diesen DocType deaktiviert ist."
@@ -4112,7 +4162,7 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert."
msgid "Cancel"
msgstr "Abbrechen"
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Stornieren"
@@ -4122,11 +4172,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Abbrechen"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "Alle stornieren"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "Alle Dokumente abbrechen"
@@ -4138,7 +4188,7 @@ msgstr "Import abbrechen"
msgid "Cancel Prepared Report"
msgstr "Vorbereiteten Bericht abbrechen"
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Abbrechen von {0} Dokumenten?"
@@ -4171,7 +4221,7 @@ msgstr "Stornierung"
msgid "Cancelling documents"
msgstr "Dokumente stornieren"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "{0} wird storniert"
@@ -4179,7 +4229,7 @@ msgstr "{0} wird storniert"
msgid "Cannot Download Report due to insufficient permissions"
msgstr "Bericht kann wegen unzureichender Berechtigungen nicht heruntergeladen werden"
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr "Werte können nicht abgerufen werden"
@@ -4187,7 +4237,7 @@ msgstr "Werte können nicht abgerufen werden"
msgid "Cannot Remove"
msgstr "Kann nicht entfernt werden."
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr "Kann nach dem Buchen nicht mehr geändert werden"
@@ -4207,11 +4257,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:1062
+#: frappe/model/document.py:1061
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:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Der Dokumentstatus kann nicht von 1 (Gebucht) auf 0 (Entwurf) geändert werden"
@@ -4223,7 +4273,7 @@ msgstr "Der Status des abgebrochenen Dokuments kann nicht geändert werden (S
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "Zustand des aufgehobenen Dokumentes kann nicht geändert werden. Übergangszeile {0}"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "In „Formular anpassen“ kann nicht von/zu Benennungsschema „Autoinkrementierung“ gewechselt werden"
@@ -4231,10 +4281,14 @@ msgstr "In „Formular anpassen“ kann nicht von/zu Benennungsschema „Autoink
msgid "Cannot create a {0} against a child document: {1}"
msgstr "Kann {0} nicht gegen ein Kind Dokument erstellen: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "Privater Arbeitsbereich für andere Benutzer kann nicht erstellt werden"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "Die Ordner \"Startseite\" und \"Anlagen\" können nicht gelöscht werden"
@@ -4243,15 +4297,15 @@ msgstr "Die Ordner \"Startseite\" und \"Anlagen\" können nicht gelöscht werden
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"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "Standardaktion kann nicht gelöscht werden. Sie können es ausblenden, wenn Sie möchten"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "Standarddokumentstatus kann nicht gelöscht werden."
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "Das Standardfeld {0}kann nicht gelöscht werden. Sie können es stattdessen ausblenden."
@@ -4262,11 +4316,11 @@ msgstr "Das Standardfeld {0}kann nicht gelöscht werden. Sie k
msgid "Cannot delete standard field. You can hide it if you want"
msgstr "Das Standardfeld kann nicht gelöscht werden. Sie können es stattdessen ausblenden"
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "Standardlink kann nicht gelöscht werden. Sie können es ausblenden, wenn Sie möchten"
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr "Das vom System generierte Feld {0}kann nicht gelöscht werden. Sie können es stattdessen ausblenden."
@@ -4294,7 +4348,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:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "Aufgehobenes Dokument kann nicht bearbeitet werden"
@@ -4307,7 +4361,7 @@ msgstr "Filter für Standarddiagramme können nicht bearbeitet werden"
msgid "Cannot edit filters for standard number cards"
msgstr "Filter für Standardnummernkarten können nicht bearbeitet werden"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "Standardfelder können nicht bearbeitet werden"
@@ -4323,15 +4377,15 @@ msgstr "Kann Datei {} auf der Festplatte nicht finden"
msgid "Cannot get file contents of a Folder"
msgstr "Dateiinhalt eines Ordners kann nicht abgerufen werden"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Es können nicht mehrere Drucker einem Druckformat zugeordnet werden."
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr "Tabelle mit mehr als 5000 Zeilen kann nicht importiert werden."
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "Aufgehobenes Dokument kann nicht verknüpft werden: {0}"
@@ -4343,7 +4397,7 @@ msgstr "Zuordnung nicht möglich, da folgende Bedingung nicht erfüllt ist:"
msgid "Cannot match column {0} with any field"
msgstr "Die Spalte {0} kann keinem Feld zugeordnet werden"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "Zeile kann nicht verschoben werden"
@@ -4368,7 +4422,7 @@ msgid "Cannot submit {0}."
msgstr "Kann {0} nicht buchen."
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "Kann {0} nicht aktualisieren"
@@ -4388,7 +4442,7 @@ msgstr "Kann {1} nicht {0}."
msgid "Capitalization doesn't help very much."
msgstr "Großschreibung hilft nicht besonders viel."
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "Erfassen"
@@ -4402,7 +4456,7 @@ msgstr "Karte"
msgid "Card Break"
msgstr "Neue Karte"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "Kartenetikett"
@@ -4431,17 +4485,19 @@ msgstr "Kategoriebeschreibung"
msgid "Category Name"
msgstr "Kategoriename"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr "Mittig"
-#: 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 "Bestimmte Dokumente, wie z. B. eine Rechnung, sollten nach ihrer Fertigstellung nicht mehr geändert werden. Der endgültige Status für solche Dokumente wird als Gebucht bezeichnet. Sie können einschränken, welche Rollen buchen können."
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4530,7 +4586,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Diagrammname"
@@ -4595,6 +4651,12 @@ msgstr "Markieren Sie Spalten, um sie auszuwählen, ziehen Sie sie, um die Reihe
msgid "Check the Error Log for more information: {0}"
msgstr "Überprüfen Sie das Fehlerprotokoll auf weitere Informationen: {0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr "Aktivieren Sie diese Option, wenn Benutzer sich nicht für ein Konto auf Ihrer Website registrieren sollen. Benutzer erhalten keinen Zugriff auf die Anwendung, es sei denn, Sie geben dies ausdrücklich frei."
@@ -4646,7 +4708,7 @@ msgstr "Untergeordneter DocType"
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr "Untertabelle {0} für Feld {1} muss virtuell sein"
@@ -4656,7 +4718,7 @@ msgstr "Untertabelle {0} für Feld {1} muss virtuell sein"
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:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "Untergeordnete Abfragefelder für '{0}' müssen eine Liste oder ein Tupel sein."
@@ -4664,7 +4726,7 @@ msgstr "Untergeordnete Abfragefelder für '{0}' müssen eine Liste oder ein Tupe
msgid "Choose Existing Card or create New Card"
msgstr "Wählen Sie Vorhandene Karte oder erstellen Sie eine neue Karte"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "Wählen Sie einen Block oder tippen Sie weiter"
@@ -4684,10 +4746,6 @@ msgstr "Symbol auswählen"
msgid "Choose authentication method to be used by all users"
msgstr "Wählen Sie die Authentifizierungsmethode, die von allen Benutzern verwendet werden soll"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr "Chromium wurde nicht heruntergeladen. Bitte führen Sie zuerst die Einrichtung durch."
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4704,11 +4762,11 @@ msgstr "Ort/Stadt"
msgid "Clear"
msgstr "Löschen"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "Leeren und Vorlage einfügen"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "Leeren und Vorlage einfügen"
@@ -4716,7 +4774,7 @@ msgstr "Leeren und Vorlage einfügen"
msgid "Clear All"
msgstr "Alles leeren"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Zuweisung löschen"
@@ -4742,7 +4800,7 @@ msgstr "Protokolle löschen nach (in Tagen)"
msgid "Clear User Permissions"
msgstr "Benutzerrechte löschen"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "Email-Feld leeren und Vorlage einfügen"
@@ -4810,7 +4868,7 @@ msgstr "Klicken Sie hier, um dynamische Filter einzustellen"
msgid "Click to Set Filters"
msgstr "Klicken Sie, um Filter einzustellen"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "Klicken, um nach {0} zu sortieren"
@@ -4918,7 +4976,7 @@ msgstr "Client-Skript"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Schließen"
@@ -4928,7 +4986,7 @@ msgstr "Schließen"
msgid "Close Condition"
msgstr "Schließ-Bedingung"
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr "Eigenschaften schließen"
@@ -4984,12 +5042,12 @@ msgstr "Code-Challenge-Methode"
msgid "Collapse"
msgstr "Zuklappen"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Zuklappen"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Alle zuklappen"
@@ -5046,7 +5104,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5057,7 +5115,7 @@ msgstr "Farbe"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5102,11 +5160,11 @@ msgstr "Spaltenname"
msgid "Column Name cannot be empty"
msgstr "Spaltenname darf nicht leer sein"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "Spaltenbreite"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "Spaltenbreite darf nicht null sein."
@@ -5149,7 +5207,7 @@ msgstr "Comm10E"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5296,12 +5354,12 @@ msgstr "Vollständig"
msgid "Complete By"
msgstr "Fertigstellen bis"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Registrierung abschliessen"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "Einrichtung abschließen"
@@ -5316,7 +5374,7 @@ msgstr "Einrichtung abschließen"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Abgeschlossen"
@@ -5407,7 +5465,7 @@ msgstr "Konfiguration"
msgid "Configure Chart"
msgstr "Diagramm konfigurieren"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "Spalten konfigurieren"
@@ -5498,8 +5556,8 @@ msgstr "Verbundene Anwendung"
msgid "Connected User"
msgstr "Verbundener Benutzer"
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "Verbunden mit QZ Tray!"
@@ -5617,7 +5675,7 @@ msgstr "Enthält {0} Sicherheitsfixes"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5686,11 +5744,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "In die Zwischenablage kopiert."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5702,12 +5760,12 @@ msgstr "Link kopieren"
msgid "Copy embed code"
msgstr "Einbettungscode kopieren"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "Fehler in die Zwischenablage kopieren"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "In die Zwischenablage kopieren"
@@ -5728,7 +5786,7 @@ msgstr "Core DocTypes können nicht angepasst werden."
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "Kernmodule {0} können in der globalen Suche nicht durchsucht werden."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "Korrekte Version :"
@@ -5736,7 +5794,7 @@ msgstr "Korrekte Version :"
msgid "Could not connect to outgoing email server"
msgstr "Konnte keine Verbindung zum Postausgangsserver herstellen"
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "{0} konnte nicht gefunden werden"
@@ -5744,11 +5802,11 @@ 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:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr "Feld konnte nicht geparst werden: {0}"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr "Chromium konnte nicht gestartet werden. Prüfen Sie die Protokolle für Details."
@@ -5756,7 +5814,7 @@ msgstr "Chromium konnte nicht gestartet werden. Prüfen Sie die Protokolle für
msgid "Could not start up:"
msgstr "Konnte nicht gestartet werden:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "Konnte nicht speichern, überprüfen Sie bitte die eingegebenen Daten"
@@ -5808,7 +5866,7 @@ msgstr "Zähler"
msgid "Country"
msgstr "Land"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "Landesvorwahl erforderlich"
@@ -5835,15 +5893,16 @@ msgstr "H"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Erstellen"
@@ -5856,13 +5915,13 @@ msgstr "Erstellen & Fortfahren"
msgid "Create Address"
msgstr "Adresse erstellen"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "Karte erstellen"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "Diagramm erstellen"
@@ -5896,7 +5955,7 @@ msgstr "Protokoll erstellen"
msgid "Create New"
msgstr "Neuen Eintrag erstellen"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Neuen Eintrag erstellen"
@@ -5909,7 +5968,7 @@ msgstr "Neuen DocType erstellen"
msgid "Create New Kanban Board"
msgstr "Neue Kanban-Tafel erstellen"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5925,18 +5984,18 @@ msgstr "Ein neues Format erstellen"
msgid "Create a Reminder"
msgstr "Erinnerung erstellen"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "Neuen Eintrag erstellen ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "Erstelle einen neuen Datensatz"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Neu erstellen: {0}"
@@ -5953,7 +6012,7 @@ msgstr "Druckformat erstellen oder bearbeiten"
msgid "Create or Edit Workflow"
msgstr "Workflow erstellen oder bearbeiten"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "Erstellen Sie Ihren ersten {0}"
@@ -5972,13 +6031,21 @@ msgstr "Erstellt"
msgid "Created At"
msgstr "Erstellt am"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Erstellt von"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "benutzerdefiniertes Feld {0} in {1} erstellt"
@@ -6172,7 +6239,7 @@ msgstr "Benutzerdefinierte DocTypes (nur \"Auswahl\"-Berechtigung)"
msgid "Custom Document Types Limit Exceeded"
msgstr "Limit für benutzerdefinierte DocTypes wurde überschritten"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "Benutzerdefinierte Dokumente"
@@ -6183,15 +6250,15 @@ msgstr "Benutzerdefinierte Dokumente"
msgid "Custom Field"
msgstr "Benutzerdefiniertes Feld"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "Das benutzerdefinierte Feld {0} wird vom Administrator erstellt und kann nur über das Administratorkonto gelöscht werden."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Benutzerdefinierte Felder können nur zu einem Standard-DocType hinzugefügt werden."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Benutzerdefinierte Felder können nicht zu zentralen DocTypes hinzugefügt werden."
@@ -6217,7 +6284,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr "Die benutzerdefinierte Gruppensuche muss den Benutzerplatzhalter {0} enthalten, z.B. 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/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "Benutzerdefiniertes HTML"
@@ -6263,7 +6330,7 @@ msgstr "Benutzerdefinierte Überschreibungen"
msgid "Custom Report"
msgstr "Benutzerdefinierter Bericht"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "Benutzerdefinierte Berichte"
@@ -6288,11 +6355,11 @@ msgstr "Benutzerdefiniertes Seitenleistenmenü"
msgid "Custom Translation"
msgstr "Benutzerdefinierte Übersetzung"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "Benutzerdefiniertes Feld erfolgreich in {0} umbenannt."
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr "Benutzerdefinierte get_list-Methode für {0} muss ein QueryBuilder-Objekt oder None zurückgeben. Es erhielt {1}"
@@ -6315,26 +6382,26 @@ msgstr "Benutzerdefiniert?"
msgid "Customization"
msgstr "Anpassung"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "Anpassungen verworfen"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "Anpassungen zurückgesetzt"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "Anpassungen für {0} exportiert nach:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Anpassen"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Anpassen"
@@ -6431,7 +6498,7 @@ msgstr "Täglich"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "Ein täglicher Ereignisbericht wird für alle Kalenderereignisse gesendet, bei denen Erinnerungen aktiviert sind."
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "Tägliche Ereignisse sollten am selben Tag enden."
@@ -6488,8 +6555,8 @@ msgstr "Dunkles Design"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "Dashboard"
@@ -6739,7 +6806,7 @@ msgstr "Tage vor"
msgid "Days Before or After"
msgstr "Tage davor oder danach"
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "Deadlock aufgetreten"
@@ -6936,11 +7003,11 @@ msgstr "Standardarbeitsbereich"
msgid "Default display currency"
msgstr "Standard-Anzeigewährung"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "Die Standardeinstellung für den Feldtyp 'Check' {0} muss entweder '0' oder '1' sein."
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "Der Standardwert für {0} muss in der Liste der Optionen enthalten sein."
@@ -6997,11 +7064,12 @@ msgstr "Verzögert"
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -7009,7 +7077,7 @@ msgstr "Verzögert"
msgid "Delete"
msgstr "Löschen"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Löschen"
@@ -7023,10 +7091,6 @@ msgstr "Löschen"
msgid "Delete Account"
msgstr "Konto löschen"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "Alle löschen"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7056,7 +7120,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Registerkarte löschen"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr "Alles löschen"
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "Löschen und neu generieren"
@@ -7084,6 +7156,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "Gesamte Registerkarte mit Feldern löschen"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7098,16 +7174,20 @@ 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:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
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:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "{0} Elemente dauerhaft löschen?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7138,7 +7218,7 @@ msgstr "Gelöschter Name"
msgid "Deleted all documents successfully"
msgstr "Alle Dokumente erfolgreich gelöscht"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Gelöscht!"
@@ -7245,6 +7325,7 @@ msgstr "Nachkommen von (einschließlich)"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7327,16 +7408,21 @@ msgstr "Schreibtisch-Design"
msgid "Desk User"
msgstr "Schreibtisch-Benutzer"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "Desktopsymbol"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7366,11 +7452,11 @@ msgstr "Details"
msgid "Detect CSV type"
msgstr "CSV-Typ erkennen"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "Wurde nicht hinzugefügt"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "Wurde nicht entfernt"
@@ -7518,10 +7604,11 @@ msgstr "Deaktiviert"
msgid "Disabled Auto Reply"
msgstr "Automatische Antwort deaktiviert"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Verwerfen"
@@ -7535,11 +7622,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Verwerfen"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "{0} verwerfen"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "Verwerfen?"
@@ -7613,11 +7700,11 @@ msgstr "Keinen neuen Benutzer anlegen"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Keinen neuen Benutzer anlegen, wenn der Benutzer mit E-Mail nicht im System vorhanden ist"
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr "Keine Warnung erneut anzeigen über {0}"
@@ -7625,7 +7712,7 @@ msgstr "Keine Warnung erneut anzeigen über {0}"
msgid "Do you still want to proceed?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "Möchten Sie alle verknüpften Dokumente stornieren?"
@@ -7682,7 +7769,6 @@ msgstr "Der DocStatus der folgenden Zustände hat sich geändert:
{0}
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7705,7 +7791,6 @@ msgstr "Der DocStatus der folgenden Zustände hat sich geändert:
{0}
#: 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/desktop_icon/desktop_icon.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
@@ -7718,7 +7803,7 @@ msgstr "Der DocStatus der folgenden Zustände hat sich geändert:
{0}
msgid "DocType"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr "Der für das Feld {1} angegebene DocType {0} muss mindestens ein Link-Feld enthalten"
@@ -7786,10 +7871,6 @@ msgstr "DocType ist eine Tabelle / ein Formular in der Anwendung."
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "DocType muss für das ausgewählte Doc-Ereignis buchbar sein"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "DocType muss eine Zeichenfolge sein"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "DocType muss mindestens ein Feld enthalten"
@@ -7807,15 +7888,15 @@ msgstr "DocType, auf den dieser Workflow anzuwenden ist."
msgid "DocType required"
msgstr "DocType erforderlich"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "DocType {0} existiert nicht."
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "DocType {} nicht gefunden"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "Der Name von DocType sollte nicht mit Leerzeichen beginnen oder enden"
@@ -7829,7 +7910,7 @@ msgstr "DocTypes können nicht geändert werden, bitte verwenden Sie stattdessen
msgid "Doctype"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "Der DocType-Name ist auf {0} Zeichen begrenzt ({1})"
@@ -7868,7 +7949,7 @@ msgstr "Dokumentaktionen"
msgid "Document Follow"
msgstr "Dokumentenverfolgung"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "Dokumentenverfolgungsbenachrichtigung"
@@ -7891,19 +7972,19 @@ msgstr "Dokumenten-Verknüpfung"
msgid "Document Links"
msgstr "Dokumentverknüpfungen"
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "Dokumentenverknüpfungen Zeile #{0}: Feld {1} konnte nicht in DocType {2} gefunden werden"
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "Dokumentenverknüpfungen Zeile #{0}: Ungültiger DocType oder Feldname."
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "Dokumentenverknüpfungen Zeile #{0}: Übergeordneter DocType ist obligatorisch für interne Links"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr "Dokumentverknüpfungen Zeile #{0}: Tabellenfeldname ist obligatorisch für interne Links"
@@ -7922,9 +8003,9 @@ msgstr "Dokumentverknüpfungen Zeile #{0}: Tabellenfeldname ist obligatorisch f
msgid "Document Name"
msgstr "Dokumentenname"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "Dokumentname muss eine Zeichenkette sein"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7941,7 +8022,7 @@ msgstr "Dokumentbenennungsregel-Bedingung"
msgid "Document Naming Settings"
msgstr "Dokumentenbenennungseinstellungen"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "Dokument in Warteschlange"
@@ -8045,7 +8126,7 @@ msgstr "Dokumenttitel"
#: 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:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8065,11 +8146,11 @@ msgstr "Dokumententyp"
msgid "Document Type and Function are required to create a number card"
msgstr "Dokumententyp und Funktion werden benötigt, um eine Nummernkarte zu erstellen"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "Der Dokumenttyp kann nicht importiert werden"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "Der Dokumenttyp kann nicht gebucht werden"
@@ -8098,27 +8179,27 @@ msgid "Document Types and Permissions"
msgstr "Dokumenttypen und Berechtigungen"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "Dokument entsperrt"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "Folgen von Dokumenten ist für diesen Benutzer nicht aktiviert."
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "Dokument wurde storniert"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "Dokument wurde gebucht"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "Das Dokument befindet sich im Entwurfsstatus"
@@ -8130,11 +8211,11 @@ msgstr "Das Dokument kann nur von Benutzern mit der folgenden Rolle bearbeitet w
msgid "Document not Relinked"
msgstr "Dokument nicht erneut verknüpft"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "Dokument von {0} in {1} umbenannt"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "Die Umbenennung des Dokuments von {0} in {1} wurde in die Warteschlange gestellt"
@@ -8150,10 +8231,6 @@ msgstr "Dokument {0} bereits wiederhergestellt"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "Das Dokument {0} wurde von {2} auf den Status {1} festgelegt."
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "Dokument {0} {1} existiert nicht"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8291,7 +8368,7 @@ msgstr "Download-Link"
msgid "Download PDF"
msgstr "PDF Herunterladen"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "Bericht herunterladen"
@@ -8375,7 +8452,7 @@ msgid "Due Date Based On"
msgstr "Fälligkeitsdatum basiert auf"
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "Duplizieren"
@@ -8383,19 +8460,15 @@ msgstr "Duplizieren"
msgid "Duplicate Entry"
msgstr "Duplizierter Eintrag"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "Doppelter Filtername"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Doppelter Name"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "Zeile duplizieren"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "Aktuelle Zeile duplizieren"
@@ -8403,6 +8476,18 @@ msgstr "Aktuelle Zeile duplizieren"
msgid "Duplicate field"
msgstr "Feld duplizieren"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8490,9 +8575,10 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8503,7 +8589,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Bearbeiten"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Bearbeiten"
@@ -8513,7 +8599,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Bearbeiten"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Bearbeiten"
@@ -8534,15 +8620,15 @@ msgstr "Diagramm bearbeiten"
msgid "Edit Custom Block"
msgstr "Benutzerdefinierten Block bearbeiten"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "Benutzerdefiniertes HTML bearbeiten"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "DocType bearbeiten"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "DocType bearbeiten"
@@ -8556,7 +8642,7 @@ msgstr "Bestehende bearbeiten"
msgid "Edit Filters"
msgstr "Filter bearbeiten"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "Filter bearbeiten"
@@ -8569,7 +8655,7 @@ msgstr "Fußzeile bearbeiten"
msgid "Edit Format"
msgstr "Format bearbeiten"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr "Vollständiges Formular bearbeiten"
@@ -8627,7 +8713,7 @@ msgstr "Schnellliste bearbeiten"
msgid "Edit Shortcut"
msgstr "Verknüpfung bearbeiten"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8650,11 +8736,11 @@ msgstr "Bearbeitungsmodus"
msgid "Edit the {0} Doctype"
msgstr "DocType {0} bearbeiten"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "Bearbeiten um Inhalte hinzuzufügen"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "Antwort bearbeiten"
@@ -8710,6 +8796,7 @@ msgstr "Element Selektor"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8725,12 +8812,14 @@ msgstr "Element Selektor"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8765,7 +8854,7 @@ msgstr "E-Mail-Konto deaktiviert."
msgid "Email Account Name"
msgstr "E-Mail-Konten-Name"
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "E-Mail-Konto wurde mehrmals hinzugefügt"
@@ -8963,7 +9052,7 @@ msgstr "E-Mail wurde in den Papierkorb verschoben"
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:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert)"
@@ -9002,7 +9091,7 @@ msgstr "E-Mails werden mit den nächsten möglichen Workflow-Aktionen gesendet"
msgid "Embed code copied"
msgstr "Einbettungscode kopiert"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr "Leerer Alias ist nicht erlaubt"
@@ -9010,7 +9099,7 @@ msgstr "Leerer Alias ist nicht erlaubt"
msgid "Empty column"
msgstr "Leere Spalte"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr "Leere String-Argumente sind nicht zulässig"
@@ -9330,11 +9419,11 @@ msgstr "Stellen Sie sicher, dass die Suchpfade für Benutzer und Gruppen korrekt
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Geben Sie in den Google-Einstellungen die Client ID und das Client Secret ein."
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
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:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9361,6 +9450,10 @@ msgstr "Vorgabewertfelder (Schlüssel) und Werte eingeben. Wenn mehrere Werte f
msgid "Enter folder name"
msgstr "Ordnernamen eingeben"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9391,7 +9484,7 @@ msgstr "Entitätsname"
msgid "Entity Type"
msgstr "Entitätstyp"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "ist gleich"
@@ -9425,7 +9518,7 @@ msgstr "ist gleich"
msgid "Error"
msgstr "Fehler"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Fehler"
@@ -9440,12 +9533,12 @@ msgstr "Fehlerprotokoll"
msgid "Error Logs"
msgstr "Fehlerprotokolle"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr "Fehlermeldung"
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 Rohdruck-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."
@@ -9483,15 +9576,15 @@ 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
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr "Fehler in {0}.get_list: {1}"
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9507,15 +9600,15 @@ msgstr "Fehler beim Auswerten der Benachrichtigung {0}. Bitte korrigieren Sie Ih
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "Fehler: Daten fehlen in Tabelle {0}"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "Fehler: Wert fehlt für {0}: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Fehler: {0} Zeile #{1}: Wert fehlt für: {2}"
@@ -9525,6 +9618,12 @@ msgstr "Fehler: {0} Zeile #{1}: Wert fehlt für: {2}"
msgid "Errors"
msgstr "Fehler"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9543,6 +9642,11 @@ msgstr "Ereigniskategorie"
msgid "Event Frequency"
msgstr "Ereignishäufigkeit"
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9568,11 +9672,11 @@ msgstr "Ereignis mit Google Kalender synchronisiert."
msgid "Event Type"
msgstr "Ereignistyp"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "Ereignisse"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "Ereignisse im heutigen Kalender"
@@ -9594,6 +9698,7 @@ msgid "Exact Copies"
msgstr "Exakte Kopien"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr "Beispiel"
@@ -9664,7 +9769,7 @@ msgstr "Code wird ausgeführt"
msgid "Executing..."
msgstr "Wird ausgeführt..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "Ausführungszeit: {0} Sek"
@@ -9685,21 +9790,21 @@ msgstr "Bestehende Rolle"
msgid "Expand"
msgstr "Erweitern"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Erweitern"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Alle ausklappen"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Erwartet 'and' oder 'or' Operator, gefunden: {0}"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "Experimentell"
@@ -9751,20 +9856,21 @@ msgstr "Ablaufzeit der QR-Code-Bildseite"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportieren"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportieren"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "1 Datensatz exportieren"
@@ -9803,11 +9909,11 @@ msgstr "Bericht exportieren: {0}"
msgid "Export Type"
msgstr "Exporttyp"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "Alle übereinstimmenden Zeilen exportieren?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "Alle {0} Zeilen exportieren?"
@@ -9823,6 +9929,10 @@ msgstr "Im Hintergrund exportieren"
msgid "Export not allowed. You need {0} role to export."
msgstr "Export nicht erlaubt. Sie benötigen die Rolle {0} zum Exportieren."
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9835,7 +9945,7 @@ msgstr "Die Daten ohne Kopfnoten und Spaltenbeschreibungen exportieren"
msgid "Export without main header"
msgstr "Export ohne Hauptkopfzeile"
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "{0} Datensätze exportieren"
@@ -9875,7 +9985,7 @@ msgstr "Extern"
#. Label of the external_link (Data) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "Externer Link"
@@ -9924,12 +10034,17 @@ msgstr "Anzahl fehlgeschlagener Jobs"
msgid "Failed Jobs"
msgstr "Fehlgeschlagene Aufträge"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+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 "Fehlgeschlagene Anmeldungen (Letzte 30 Tage)"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "Fehlgeschlagene Transaktionen"
@@ -9992,7 +10107,7 @@ msgstr "Vorschau des Nummernkreises konnte nicht erstellt werden"
msgid "Failed to get method for command {0} with {1}"
msgstr "Methode für den Befehl {0} mit {1} konnte nicht abgerufen werden"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "Die Methode {0} mit {1} konnte nicht abgerufen werden"
@@ -10004,7 +10119,7 @@ msgstr "Fehler beim Abrufen der Instanz-Informationen"
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "Fehler beim Importieren des virtuellen Doctype {}, ist die Controller-Datei vorhanden?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "Fehler beim Optimieren des Bilds: {0}"
@@ -10020,7 +10135,7 @@ msgstr "Betreff konnte nicht dargestellt werden: {}"
msgid "Failed to request login to Frappe Cloud"
msgstr "Die Anmeldung bei Frappe Cloud konnte nicht angefordert werden"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "Fehler beim Senden der E-Mail mit dem Betreff:"
@@ -10062,7 +10177,7 @@ msgstr "FavIcon"
msgid "Fax"
msgstr "Fax"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "Rückmeldung"
@@ -10122,8 +10237,8 @@ msgstr "Felder aus {0} werden abgerufen ..."
#: 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:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10133,7 +10248,7 @@ msgstr "Feld"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "Das Feld \"route\" ist für Web-Ansichten obligatorisch"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "Das Feld \"Titel\" ist obligatorisch, wenn \"Website-Suchfeld\" eingestellt ist."
@@ -10141,7 +10256,7 @@ msgstr "Das Feld \"Titel\" ist obligatorisch, wenn \"Website-Suchfeld\" eingeste
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "Das Feld \"Wert\" ist obligatorisch. Bitte geben Sie den zu aktualisierenden Wert an"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -10150,7 +10265,7 @@ msgstr ""
msgid "Field Description"
msgstr "Feldbeschreibung"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Feld fehlt"
@@ -10198,7 +10313,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:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "Das Feld {0} existiert nicht in {1}"
@@ -10206,11 +10321,11 @@ msgstr "Das Feld {0} existiert nicht in {1}"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Das Feld {0} bezieht sich auf einen nicht existierenden Doctype {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "Feld {0} muss ein virtuelles Feld sein, um virtuelle Doctypes zu unterstützen."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Feld {0} nicht gefunden"
@@ -10232,7 +10347,7 @@ msgstr "Feld {0} im Dokument {1} ist weder ein Feld für eine Handynummer noch e
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Feldname"
@@ -10241,7 +10356,7 @@ msgstr "Feldname"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "Feldname '{0}' im Konflikt mit einem {1} mit dem Namen {2} in {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Der Feldname {0} muss existieren, um die automatische Benennung zu ermöglichen"
@@ -10249,7 +10364,7 @@ msgstr "Der Feldname {0} muss existieren, um die automatische Benennung zu ermö
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Der Feldname ist auf 64 Zeichen begrenzt ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Feldname für benutzerdefiniertes Feld nicht gesetzt"
@@ -10265,7 +10380,7 @@ msgstr "Feldname {0} erscheint mehrfach"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Feldname {0} im Konflikt mit Meta-Objekt"
@@ -10313,7 +10428,7 @@ msgstr "Felder `file_name` oder `file_url` müssen für die Datei gesetzt sein"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Felder müssen eine Liste oder ein Tupel sein, wenn as_list aktiviert ist"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Felder müssen eine Zeichenkette, Liste, Tupel, pypika Field oder pypika Function sein"
@@ -10337,7 +10452,7 @@ msgstr "Felder, die durch Komma (,) getrennt sind, sind in der \"Suchen nach\"-L
msgid "Fieldtype"
msgstr "Feldtyp"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Feldtyp kann nicht von {0} auf {1} geändert werden"
@@ -10413,12 +10528,12 @@ msgstr "Der Dateiname darf nicht {0} haben"
msgid "File not attached"
msgstr "Datei nicht angehängt"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Dateigröße hat die maximal zulässige Größe von {0} MB überschritten"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Datei zu groß"
@@ -10445,12 +10560,17 @@ msgstr "Dateien"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filter"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10469,7 +10589,7 @@ msgstr "Meta filtern"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Name des Filters"
@@ -10478,11 +10598,11 @@ msgstr "Name des Filters"
msgid "Filter Values"
msgstr "Werte filtern"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "Filterbedingung fehlt nach Operator: {0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10501,10 +10621,14 @@ msgid "Filtered Records"
msgstr "Gefilterte Datensätze"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Gefiltert nach \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10528,7 +10652,7 @@ msgstr "Gefiltert nach \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Filter"
@@ -10559,10 +10683,6 @@ msgstr "Filter JSON"
msgid "Filters Section"
msgstr "Filterbereich"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Filter angewendet für {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filter gespeichert"
@@ -10580,14 +10700,14 @@ msgstr "Filter {0}"
msgid "Filters:"
msgstr "Filter:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Finde '{0}' in ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "{0} in {1} finden"
@@ -10675,11 +10795,11 @@ msgstr "Gleitkommapräzision"
msgid "Fold"
msgstr "Falz"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Falz kann nicht am Ende eines Formulars sein"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Falz muss vor einem Bereichsumbruch kommen"
@@ -10708,12 +10828,12 @@ msgstr "Ordner {0} ist nicht leer"
msgid "Folio"
msgstr "Folio"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Folgen"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Gefolgt von"
@@ -10721,7 +10841,7 @@ msgstr "Gefolgt von"
msgid "Following Report Filters have missing values:"
msgstr "Die folgenden Berichtsfilter haben fehlende Werte:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Dokument {0} wird nun gefolgt"
@@ -10729,7 +10849,7 @@ msgstr "Dokument {0} wird nun gefolgt"
msgid "Following fields are missing:"
msgstr "Die folgenden Felder fehlen:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Folgende Felder haben ungültige Werte:"
@@ -10737,7 +10857,7 @@ msgstr "Folgende Felder haben ungültige Werte:"
msgid "Following fields have missing values"
msgstr "Folgenden Feldern fehlen Werte"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Folgenden Feldern fehlen Werte:"
@@ -10806,7 +10926,7 @@ msgstr "Fußzeile Details"
msgid "Footer HTML"
msgstr "Fußzeile HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "Fußzeilen-HTML aus Anhang {0} festgelegt"
@@ -10843,7 +10963,7 @@ msgstr "Fußzeilenvorlage"
msgid "Footer Template Values"
msgstr "Werte der Fußzeilenvorlage"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "Die Fußzeile ist möglicherweise nicht sichtbar, da die Option {0} deaktiviert ist"
@@ -10876,16 +10996,6 @@ msgstr "Für Dokumenttyp"
msgid "For Example: {} Open"
msgstr "Zum Beispiel: {} Öffnen"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "Für ein Verknüpfungsfeld, geben Sie hier den jeweiligen DocType an.\n"
-"Für Auswahlfeld geben Sie eine Liste von Optionen ein, jede in einer neuen Zeile."
-
#. 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'
@@ -10909,20 +11019,16 @@ msgstr "Für Wert"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "Für einen dynamischen Betreff verwenden Sie Jinja-Tags wie folgt: {{ doc.name }} Geliefert"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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)."
-#: 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 "Wenn Sie zum Beispiel INV004 stornieren und berichtigen, wird daraus ein neues Dokument INV004-1. So behalten Sie den Überblick über jede berichtigte Änderung."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "Zum Beispiel:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Beispiel: Wenn Sie die Dokumenten-ID mit einschliessen möchten, verwenden Sie {0}"
@@ -10950,7 +11056,7 @@ msgstr "Bei mehreren Adressen geben Sie bitte jede Adresse in einer neuen Zeile
msgid "For updating, you can update only selective columns."
msgstr "Nur ausgewählte Spalten können aktualisiert werden"
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Für {0} auf der Ebene {1} in {2} in Zeile {3}"
@@ -11000,7 +11106,8 @@ msgstr "Passwort vergessen?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Formular"
@@ -11179,7 +11286,7 @@ msgstr "Freitag"
msgid "From"
msgstr "Von"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "Von"
@@ -11200,7 +11307,7 @@ msgstr "Von-Datum"
msgid "From Date Field"
msgstr "Von-Datum-Feld"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Vom Dokumenttyp"
@@ -11241,7 +11348,7 @@ msgstr "Voll"
msgid "Full Name"
msgstr "Vollständiger Name"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Ganze Seite"
@@ -11254,7 +11361,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funktion"
@@ -11263,11 +11370,11 @@ msgstr "Funktion"
msgid "Function Based On"
msgstr "Funktion basiert auf"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} ist nicht freigegeben."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "Funktion {0} benötigt Argumente, aber keine wurden bereitgestellt"
@@ -11332,11 +11439,11 @@ msgstr "Allgemein"
msgid "Generate Keys"
msgstr "Schlüssel generieren"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Neuen Bericht erstellen"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Zufälliges Passwort generieren"
@@ -11346,8 +11453,8 @@ msgstr "Zufälliges Passwort generieren"
msgid "Generate Separate Documents For Each Assignee"
msgstr "Für jeden Beauftragten separate Dokumente generieren"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Tracking-URL generieren"
@@ -11458,7 +11565,7 @@ msgstr "Globale Verknüpfungen"
msgid "Global Unsubscribe"
msgstr "Global abbestellen"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Gehen"
@@ -11518,7 +11625,7 @@ msgstr "Listenansicht für {0} öffnen"
msgid "Go to {0} Page"
msgstr "Gehen Sie zur Seite {0}"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Ziel"
@@ -11744,7 +11851,7 @@ 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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "Gruppieren nach muss eine Zeichenkette sein"
@@ -11824,6 +11931,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "HTML-Editor"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11912,7 +12023,7 @@ msgstr "Kopfzeile"
msgid "Header HTML"
msgstr "HTML-Header"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "Header-HTML-Satz aus Anhang {0}"
@@ -11948,7 +12059,7 @@ msgstr "Kopf-/Fußzeilen-Skripte können verwendet werden, um dynamische Verhalt
msgid "Headers"
msgstr "Headers"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "Headers müssen ein Dictionary sein"
@@ -11985,7 +12096,7 @@ msgstr "Hallo,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12040,7 +12151,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Hier ist Ihre Tracking-URL"
@@ -12076,9 +12187,9 @@ msgstr "Versteckt"
msgid "Hidden Fields"
msgstr "Versteckte Felder"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "Versteckte Spalten enthalten: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+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
@@ -12243,7 +12354,7 @@ msgstr "Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort e
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12326,18 +12437,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
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.
"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12388,7 +12499,6 @@ msgid "IP Address"
msgstr "IP-Adresse"
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12409,11 +12519,16 @@ msgstr "IP-Adresse"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Symbol"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12424,6 +12539,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12455,13 +12574,13 @@ msgstr "Wenn eine strikte Benutzerberechtigung aktiviert ist und die Benutzerber
msgid "If Checked workflow status will not override status in list view"
msgstr "Falls diese Option aktiviert ist, wird der Workflow-Status nicht den Status in der Listenansicht überschreiben"
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Wenn Inhaber"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "Wenn eine Rolle auf Stufe 0 keinen Zugriff hat, sind höhere Stufen bedeutungslos."
@@ -12588,12 +12707,20 @@ msgstr "Wenn nicht festgelegt, hängt die Genauigkeit der Währung vom Zahlenfor
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr "Wenn diese Option gesetzt ist, können nur Benutzer mit diesen Rollen auf dieses Diagramm zugreifen. Wenn nicht festgelegt, werden die Berechtigungen für den zugehörigen DocType oder Report verwendet."
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+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 "Wenn der Benutzer eine Rolle aktiviert hat, wird er zum „Systembenutzer“. Der „Systembenutzer“ hat Zugriff auf den Desktop"
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "Wenn diese Anweisungen nicht hilfreich waren, fügen Sie bitte Ihre Vorschläge als Issue auf GitHub hinzu."
@@ -12693,7 +12820,7 @@ msgstr "Anhänge mit einer Größe über diesem Wert ignorieren"
msgid "Ignored Apps"
msgstr "Ignorierte Apps"
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "Ungültiger Dokumentstatus für {0}"
@@ -12759,11 +12886,11 @@ msgstr "Bildansicht"
msgid "Image Width"
msgstr "Bildbreite"
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "Bildfeld muss ein gültiger Feldname sein"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "Bildfeld muss Typ anhängen Bild"
@@ -12797,7 +12924,7 @@ msgstr "Sich als {0} ausgeben"
msgid "Impersonated by {0}"
msgstr "Ausgegeben als {0}"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "Imitiere {0}"
@@ -12815,11 +12942,12 @@ msgstr "Implizit"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "Importieren"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importieren"
@@ -13042,15 +13170,15 @@ msgid "Include Web View Link in Email"
msgstr "Web-View-Link in E-Mail einbeziehen"
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "Filter einbeziehen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr "Versteckte Spalten einbeziehen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "Einrückung einbeziehen"
@@ -13117,11 +13245,11 @@ msgstr "Falscher Benutzer oder Passwort"
msgid "Incorrect Verification code"
msgstr "Falscher Bestätigungscode"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "Falscher Wert in Zeile {0}:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "Falscher Wert:"
@@ -13173,7 +13301,7 @@ msgstr "Indikator"
msgid "Indicator Color"
msgstr "Indikatorfarbe"
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "Indikatorfarbe"
@@ -13220,15 +13348,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "Einfügen nach"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "'{0}' kann nicht als 'Einfügen nach' verwendet werden"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "Feld '{0}' existiert nicht. Angegeben als 'Einfügen nach' in benutzerdefinierten Feld '{1}' (Label: '{2}')"
@@ -13258,8 +13386,8 @@ msgstr "Stil einfügen"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "{0} aus Marketplace installieren"
@@ -13285,15 +13413,15 @@ msgstr "Installierte Apps"
msgid "Instructions"
msgstr "Anweisungen"
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "Anweisungen per E-Mail gesendet"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "Unzureichende Berechtigungsstufe für {0}"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "Unzureichende Berechtigung für {0}"
@@ -13361,7 +13489,7 @@ msgstr "Interessen"
msgid "Intermediate"
msgstr "Fortgeschritten"
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "interner Serverfehler"
@@ -13370,6 +13498,11 @@ msgstr "interner Serverfehler"
msgid "Internal record of document shares"
msgstr "Interne Aufzeichnung von Dokumentfreigaben"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13409,13 +13542,13 @@ msgid "Invalid"
msgstr "Ungültig"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "Ungültiger \"depends_on\" Ausdruck"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ungültiger "abhängiger_on" -Ausdruck im Filter {0}"
@@ -13455,7 +13588,7 @@ msgstr "Ungültiges Datum"
msgid "Invalid DocType"
msgstr "Ungültiger DocType"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "Ungültiger DocType: {0}"
@@ -13463,7 +13596,8 @@ msgstr "Ungültiger DocType: {0}"
msgid "Invalid Doctype"
msgstr "Ungültiger DocType"
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "Ungültiger Feldname"
@@ -13471,8 +13605,8 @@ msgstr "Ungültiger Feldname"
msgid "Invalid File URL"
msgstr "Ungültige Datei-URL"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr "Ungültiger Filter"
@@ -13496,7 +13630,7 @@ msgstr "Ungültige Verknüpfung"
msgid "Invalid Login Token"
msgstr "Ungültiges Login-Token"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "Ungültiger Login. Versuchen Sie es erneut."
@@ -13504,7 +13638,7 @@ msgstr "Ungültiger Login. Versuchen Sie es erneut."
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Ungültiger E-Mail-Server. Bitte Angaben korrigieren und erneut versuchen."
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "Ungültiger Nummernkreis: {}"
@@ -13515,8 +13649,8 @@ msgstr "Ungültiger Nummernkreis: {}"
msgid "Invalid Operation"
msgstr "Ungültige Operation"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "Ungültige Option"
@@ -13528,7 +13662,7 @@ msgstr "Ungültiger Postausgang Server oder Port: {0}"
msgid "Invalid Output Format"
msgstr "Ungültiges Ausgabeformat"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "Ungültige Überschreibung"
@@ -13541,11 +13675,11 @@ msgstr "Ungültige Parameter."
msgid "Invalid Password"
msgstr "Ungültiges Passwort"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "Ungültige Telefonnummer"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Ungültige Anfrage"
@@ -13554,7 +13688,7 @@ msgstr "Ungültige Anfrage"
msgid "Invalid Search Field {0}"
msgstr "Ungültiges Suchfeld {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "Ungültiger Tabellenfeldname"
@@ -13573,7 +13707,7 @@ msgstr "Ungültige URL"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Ungültiger Benutzername oder fehlendes Passwort. Bitte Angaben korrigieren und erneut versuchen."
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "Ungültige Werte"
@@ -13585,7 +13719,7 @@ msgstr "Ungültiges Webhook Geheimnis"
msgid "Invalid aggregate function"
msgstr "Ungültige Aggregatfunktion"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Ungültiges Alias-Format: {0}. Alias muss ein einfacher Bezeichner sein."
@@ -13593,19 +13727,19 @@ msgstr "Ungültiges Alias-Format: {0}. Alias muss ein einfacher Bezeichner sein.
msgid "Invalid app"
msgstr "Ungültige App"
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Ungültiges Argumentformat: {0}. Nur in Anführungszeichen gesetzte Zeichenfolgenliterale oder einfache Feldnamen sind zulässig."
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Ungültige Zeichen im Feldnamen: {0}. Nur Buchstaben, Zahlen und Unterstriche sind zulässig."
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr "Ungültige Zeichen im Tabellenname: {0}"
@@ -13613,18 +13747,22 @@ msgstr "Ungültige Zeichen im Tabellenname: {0}"
msgid "Invalid column"
msgstr "Ungültige Spalte"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr "Ungültiger Bedingungstyp in verschachtelten Filtern: {0}"
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Ungültige Richtung in „Sortieren nach“: {0}. Muss „ASC“ oder „DESC“ sein."
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "Ungültiger Status"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "Ungültiger Ausdruck in Filter {0} festgelegt"
@@ -13633,11 +13771,11 @@ msgstr "Ungültiger Ausdruck in Filter {0} festgelegt"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Ungültiger Ausdruck im Filter {0} ({1}) gesetzt"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
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:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "Ungültiges Feldformat in {0}: {1}. Verwenden Sie 'field', 'link_field.field', oder 'child_table.field'."
@@ -13645,11 +13783,11 @@ msgstr "Ungültiges Feldformat in {0}: {1}. Verwenden Sie 'field', 'link_field.f
msgid "Invalid field name {0}"
msgstr "Ungültiger Feldname {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr "Ungültiger Feldtyp: {0}"
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Ungültiger Feldname '{0}' in autoname"
@@ -13657,11 +13795,11 @@ msgstr "Ungültiger Feldname '{0}' in autoname"
msgid "Invalid file path: {0}"
msgstr "Ungültiger Dateipfad: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Ungültige Filterbedingung: {0}. Eine Liste oder ein Tupel erwartet."
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Ungültiges Filterfeldformat: {0}. Verwenden Sie 'fieldname' oder 'link_fieldname.target_fieldname'."
@@ -13669,7 +13807,7 @@ msgstr "Ungültiges Filterfeldformat: {0}. Verwenden Sie 'fieldname' oder 'link_
msgid "Invalid filter: {0}"
msgstr "Ungültiger Filter: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "Ungültiger Funktionsargumenttyp: {0}. Nur Zeichenfolgen, Zahlen, Listen und None sind erlaubt."
@@ -13686,19 +13824,19 @@ msgstr "Ungültiger JSON in den benutzerdefinierten Optionen hinzugefügt: {0}"
msgid "Invalid key"
msgstr "Ungültiger Schlüssel"
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "Ungültiger Namenstyp (Ganzzahl) für die Varchar-Namensspalte"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "Ungültiger Nummernkreis {}: Punkt (.) fehlt"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr "Ungültiger Nummernkreis {}: Punkt (.) fehlt vor den numerischen Platzhaltern. Bitte verwenden Sie ein Format wie ABCD.#####."
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13722,11 +13860,11 @@ msgstr "Ungültiger Anfragekörper"
msgid "Invalid role"
msgstr "Ungültige Rolle"
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr "Ungültiges einfaches Filterformat: {0}"
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Ungültiger Start für Filterbedingung: {0}. Eine Liste oder ein Tupel erwartet."
@@ -13743,24 +13881,24 @@ msgstr "Ungültiger Tokenstatus! Überprüfen Sie, ob das Token vom OAuth-Benutz
msgid "Invalid username or password"
msgstr "Ungültiger Benutzername oder ungültiges Passwort"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "Ungültiger Wert für UUID angegeben: {}"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "Ungültige Werte für Felder:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "Ungültige wkhtmltopdf-Version"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "Ungültige {0} Bedingung"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13888,7 +14026,7 @@ msgstr "Ist dynamische URL?"
msgid "Is Folder"
msgstr "Ist Ordner"
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Ist global"
@@ -13959,7 +14097,7 @@ msgstr "Ist öffentlich"
msgid "Is Published Field"
msgstr "Veröffentlichungsfeld"
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "Veröffentlichungsfeld muss ein gültiger Feldname sein"
@@ -14204,8 +14342,8 @@ msgstr "Job erfolgreich gestoppt"
msgid "Join video conference with {0}"
msgstr "Videokonferenz mit {0} beitreten"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "Zum Feld springen"
@@ -14528,7 +14666,7 @@ msgstr "Hilfe zu Bezeichnung"
msgid "Label and Type"
msgstr "Bezeichnung und Typ"
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "Bezeichnung ist erforderlich"
@@ -14551,7 +14689,7 @@ msgstr "Querformat"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Sprache"
@@ -14597,6 +14735,14 @@ msgstr "Letzte 90 Tage"
msgid "Last Active"
msgstr "Letzte Aktivität"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14721,6 +14867,11 @@ msgstr "Letztes Jahr"
msgid "Last synced {0}"
msgstr "Zuletzt synchronisiert {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "Layout"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "Layout zurücksetzen"
@@ -14748,9 +14899,15 @@ msgstr "Diese Unterhaltung beenden"
msgid "Ledger"
msgstr "Ledger"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14844,7 +15001,7 @@ msgstr "Letter"
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14873,7 +15030,7 @@ msgstr "Briefkopf Name"
msgid "Letter Head Scripts"
msgstr "Briefkopf-Skripte"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "Briefkopf kann nicht gleichzeitig deaktiviert und Standard sein"
@@ -14895,7 +15052,7 @@ msgstr "Briefkopf in HTML"
msgid "Level"
msgstr "Ebene"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "Stufe 0 gilt für Berechtigungen auf Dokumentebene, höhere Stufen für Berechtigungen auf Feldebene."
@@ -14936,7 +15093,7 @@ msgstr "Helles Design"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Enthält"
@@ -14960,7 +15117,7 @@ msgstr "Likes"
msgid "Limit"
msgstr "Limit"
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr "Limit muss eine nicht negative Ganzzahl sein"
@@ -15086,7 +15243,7 @@ msgstr "Bezeichnung des Dokuments"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -15104,7 +15261,7 @@ msgstr "„Link zu“ in Zeile"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr "Linktyp"
@@ -15147,6 +15304,7 @@ msgstr "LinkedIn"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15168,8 +15326,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr "Liste"
@@ -15199,7 +15357,7 @@ msgstr "Listenfilter"
msgid "List Settings"
msgstr "Listeneinstellungen"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Listeneinstellungen"
@@ -15213,7 +15371,7 @@ msgstr "Listenansicht"
msgid "List View Settings"
msgstr "Einstellungen für die Listenansicht"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "Einen Dokumenttyp auflisten"
@@ -15240,7 +15398,7 @@ msgstr "Liste der ausgeführten Patches"
msgid "List setting message"
msgstr "Meldung zur Listeneinstellung"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "Listen"
@@ -15249,7 +15407,7 @@ msgstr "Listen"
msgid "Load Balancing"
msgstr "Lastverteilung"
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15267,10 +15425,10 @@ msgstr "Mehr laden"
#: 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "Laden"
@@ -15287,8 +15445,8 @@ msgid "Loading versions..."
msgstr "Versionen laden..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15298,7 +15456,8 @@ msgid "Loading..."
msgstr "Laden ..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr "Ort"
@@ -15371,6 +15530,11 @@ msgstr "Abgemeldet"
msgid "Login"
msgstr "Anmelden"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15446,7 +15610,7 @@ msgstr "Anmelden, um eine neue Unterhaltung zu beginnen"
msgid "Login to {0}"
msgstr "Anmelden bei {0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "Anmeldetoken erforderlich"
@@ -15513,8 +15677,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr "Nach der Kennwortänderung von allen Geräten abmelden"
#. 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
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Protokolle"
@@ -15545,7 +15708,7 @@ msgstr "Sieht so aus, als hätten Sie den Wert nicht geändert"
msgid "Looks like you haven’t added any third party apps."
msgstr "Wie es aussieht haben Sie keine Drittanbieter-Apps hinzugefügt."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "Sieht aus, als hätten Sie keine Benachrichtigungen erhalten."
@@ -15695,7 +15858,7 @@ msgstr "Pflichtfelder in der Tabelle erforderlich {0}, Reihe {1}"
msgid "Mandatory fields required in {0}"
msgstr "Für {0} benötigte Pflichtfelder:"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "Pflichtfelder erforderlich:"
@@ -15757,7 +15920,7 @@ msgstr "Abstand oben"
msgid "MariaDB Variables"
msgstr "MariaDB-Variablen"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "Alle als gelesen markieren"
@@ -15809,9 +15972,12 @@ msgstr "Marketing-Leiter"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "Maske"
@@ -15873,7 +16039,7 @@ msgstr "Höchstzahl automatischer E-Mail-Berichte pro Benutzer"
msgid "Max signups allowed per hour"
msgstr "Maximale Anmeldungen pro Stunde"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "Max Breite für Typ Währung ist 100px in Zeile {0}"
@@ -15894,20 +16060,27 @@ msgstr "Die Höchstgrenze für Anhänge von {0} wurde erreicht."
msgid "Maximum {0} rows allowed"
msgstr "Maximum von {0} Zeilen erlaubt"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Mir"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "Bedeutung von Buchen, Stornieren, Berichtigen"
+msgid "Meaning of Different Permission Types"
+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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15951,12 +16124,12 @@ msgstr "Erwähnung"
msgid "Mentions"
msgstr "Erwähnungen"
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "Menü"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Mit Existierenden zusammenführen"
@@ -15990,13 +16163,13 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder zwischen Blattkn
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Nachricht"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Nachricht"
@@ -16027,7 +16200,7 @@ msgstr "Nachricht gesendet"
msgid "Message Type"
msgstr "Nachrichtentyp"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Nachricht abgeschnitten"
@@ -16124,7 +16297,7 @@ msgstr "Metadaten"
msgid "Method"
msgstr "Methode"
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "Methode nicht erlaubt"
@@ -16213,7 +16386,7 @@ msgstr "Frau"
msgid "Missing DocType"
msgstr "Fehlender DocType"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "Fehlendes Feld"
@@ -16233,7 +16406,7 @@ msgstr "Fehlende Berechtigung"
msgid "Missing Value"
msgstr "Fehlender Wert"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16298,7 +16471,7 @@ msgstr "Modal-Auslöser"
#: 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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16345,9 +16518,8 @@ msgstr "Modul-Onboarding"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "Modulprofil"
@@ -16364,7 +16536,7 @@ msgstr "Modul Onboarding-Fortschritt zurücksetzen"
msgid "Module to Export"
msgstr "In dieses Modul exportieren"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "Modul {} nicht gefunden"
@@ -16479,7 +16651,7 @@ msgstr "Weitere Artikel zu {0}"
msgid "More content for the bottom of the page."
msgstr "Zusätzlicher Inhalt für den unteren Teil der Seite."
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "Am häufigsten verwendet"
@@ -16494,7 +16666,7 @@ msgstr "Wahrscheinlich ist Ihr Passwort zu lang."
msgid "Move"
msgstr "Verschieben"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Bewegen nach"
@@ -16506,19 +16678,19 @@ msgstr "In den Papierkorb verschieben"
msgid "Move current and all subsequent sections to a new tab"
msgstr "Verschieben Sie den aktuellen und alle folgenden Abschnitte in eine neue Registerkarte"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "Cursor zur Zeile darüber bewegen"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "Cursor zur Zeile darunter bewegen"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "Cursor zur nächsten Spalte bewegen"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "Cursor zur vorherigen Spalte bewegen"
@@ -16530,7 +16702,7 @@ msgstr "Abschnitte in neue Registerkarte verschieben"
msgid "Move the current field and the following fields to a new column"
msgstr "Aktuelles und folgende Felder in eine neue Spalte verschieben"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Zeile verschieben nach"
@@ -16648,7 +16820,7 @@ msgstr "Name (Dokumentname)"
msgid "Name already taken, please set a new name"
msgstr "Name bereits vergeben, bitte einen neuen Namen festlegen"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "Der Name darf keine Sonderzeichen wie {0} enthalten"
@@ -16660,7 +16832,7 @@ msgstr "Name des Dokumenttyps (DocType) mit dem dieses Feld verknüpft sein soll
msgid "Name of the new Print Format"
msgstr "Name des neuen Druckformats"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "Name von {0} kann nicht {1} sein"
@@ -16701,7 +16873,7 @@ msgstr "Benennungsregel"
msgid "Naming Series"
msgstr "Nummernkreis"
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Nummernkreis zwingend erforderlich"
@@ -16725,11 +16897,6 @@ msgstr "Navigationsleisten-Element"
msgid "Navbar Settings"
msgstr "Navigationsleisten-Einstellungen"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16743,39 +16910,44 @@ msgstr "Vorlage für Navigationsleiste"
msgid "Navbar Template Values"
msgstr "Navigationsleiste-Vorlagenwerte"
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Liste nach unten navigieren"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Liste nach oben navigieren"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "Zum Hauptinhalt navigieren"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr "Navigationseinstellungen"
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "Benötigen Sie Hilfe?"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
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:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Negativer Wert"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr "Verschachtelte Filter müssen als Liste oder Tupel angegeben werden."
@@ -16797,6 +16969,7 @@ msgstr "Nie"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16813,7 +16986,7 @@ msgstr "Neue Aktivität"
#: 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "Neue Adresse"
@@ -16829,8 +17002,8 @@ msgstr "Neuer Kontakt"
msgid "New Custom Block"
msgstr "Neuer benutzerdefinierter Block"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "Neues benutzerdefiniertes Druckformat"
@@ -16879,7 +17052,7 @@ msgstr "Neue Nachricht von der Webseite Kontaktseite"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Neuer Name"
@@ -16900,8 +17073,8 @@ msgstr "Neues Onboarding"
msgid "New Password"
msgstr "Neues Passwort"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Name des neuen Druckformats"
@@ -16928,8 +17101,8 @@ msgstr "Neue Verknüpfung"
msgid "New Users (Last 30 days)"
msgstr "Neue Benutzer (Letzte 30 Tage)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "Neuer Wert"
@@ -16937,7 +17110,7 @@ msgstr "Neuer Wert"
msgid "New Workflow Name"
msgstr "Neuer Workflow-Name"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "Neuer Arbeitsbereich"
@@ -16982,32 +17155,32 @@ msgstr "Neue Benutzer müssen von den Systemmanagern manuell angelegt werden."
msgid "New value to be set"
msgstr "Neuer Wert muss gesetzt werden"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Neu {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Neu {0} erstellt"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
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:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "Neue {0} {1} erstellt"
@@ -17019,7 +17192,7 @@ msgstr "Neu {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Neue {} Versionen für die folgenden Apps sind verfügbar"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "Der neu erstellte Benutzer {0} hat keine aktivierten Rollen."
@@ -17040,7 +17213,7 @@ msgstr "Newsletter-Manager"
msgid "Next"
msgstr "Weiter"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "Weiter"
@@ -17067,12 +17240,16 @@ msgstr "Nächste 7 Tage"
msgid "Next Action Email Template"
msgstr "Nächste Aktion E-Mail-Vorlage"
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 "Nächste Aktionen HTML"
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr "Nächstes Dokument"
@@ -17139,20 +17316,24 @@ msgstr "Weiter bei Klick"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nein"
@@ -17222,7 +17403,7 @@ msgstr "Keine Filter eingestellt"
msgid "No Google Calendar Event to sync."
msgstr "Kein zu synchronisierendes Google Kalender-Ereignis."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "Keine Bilder"
@@ -17241,23 +17422,23 @@ msgstr "Kein LDAP-Benutzer für E-Mail gefunden: {0}"
msgid "No Label"
msgstr "Keine Bezeichnung"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: 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 "Kein Briefkopf"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "Kein Name für {0} angegeben"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "Keine neuen Benachrichtigungen"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "Keine Berechtigungen angegeben"
@@ -17277,11 +17458,11 @@ msgstr "Keine zulässigen Diagramme in diesem Dashboard"
msgid "No Preview"
msgstr "Keine Vorschau"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "Keine Vorschau verfügbar"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "Es ist kein Drucker verfügbar."
@@ -17289,7 +17470,7 @@ msgstr "Es ist kein Drucker verfügbar."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "Keine RQ-Worker verbunden. Versuchen Sie, die Bench neu zu starten."
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "Keine Ergebnisse"
@@ -17297,7 +17478,7 @@ msgstr "Keine Ergebnisse"
msgid "No Results found"
msgstr "Keine Ergebnisse gefunden"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "Keine Rollen festgelegt"
@@ -17313,7 +17494,7 @@ msgstr "Keine Vorschläge"
msgid "No Tags"
msgstr "Keine Schlagworte"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "Keine anstehenden Termine"
@@ -17333,7 +17514,7 @@ msgstr "Keine automatischen Optimierungsvorschläge verfügbar."
msgid "No changes in document"
msgstr "Keine Änderungen im Dokument"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "Keine Änderungen vorgenommen"
@@ -17397,7 +17578,7 @@ msgstr "Keine Felder gefunden, die als Kanban-Spalte verwendet werden können. V
msgid "No file attached"
msgstr "Keine Datei angehängt"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "Keine Filter gefunden"
@@ -17445,11 +17626,11 @@ msgstr "Anzahl der Zeilen (Max 500)"
msgid "No of Sent SMS"
msgstr "Anzahl der gesendeten SMS"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "Keine Berechtigung für {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Keine Berechtigung um '{0}' {1}"
@@ -17458,7 +17639,7 @@ msgstr "Keine Berechtigung um '{0}' {1}"
msgid "No permission to read {0}"
msgstr "Keine Berechtigung zum Lesen {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "Keine Berechtigung um {0} {1} {2}"
@@ -17474,7 +17655,7 @@ msgstr "Keine Datensätze in {0} vorhanden"
msgid "No records tagged."
msgstr "Keine Datensätze getaggt."
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "Es werden keine Datensätze exportiert"
@@ -17482,7 +17663,7 @@ msgstr "Es werden keine Datensätze exportiert"
msgid "No rows"
msgstr "Keine Zeilen"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17494,11 +17675,12 @@ msgstr "Kein Betreff"
msgid "No template found at path: {0}"
msgstr "Keine Vorlage im Pfad: {0} gefunden"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "Keine Werte anzuzeigen"
@@ -17510,7 +17692,7 @@ msgstr "Keine {0}"
msgid "No {0} found"
msgstr "Kein {0} gefunden"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Keine {0} mit passenden Filtern gefunden. Löschen Sie Filter, um alle {0} -Einträge zu sehen."
@@ -17519,7 +17701,7 @@ msgid "No {0} mail"
msgstr "Keine {0}-E-Mails"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Nr."
@@ -17562,12 +17744,12 @@ msgstr "Normalisierte Kopien"
msgid "Normalized Query"
msgstr "Normalisierte Abfrage"
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "Nicht Erlaubt"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "Nicht erlaubt: Deaktivierter Benutzer"
@@ -17609,7 +17791,7 @@ msgstr "Nicht mit jedem Datensatz verknüpft"
msgid "Not Nullable"
msgstr "Nicht nullbar"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17618,7 +17800,7 @@ msgstr "Nicht nullbar"
msgid "Not Permitted"
msgstr "Nicht zulässig"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "Keine Berechtigung zum Lesen von {0}"
@@ -17627,8 +17809,8 @@ msgstr "Keine Berechtigung zum Lesen von {0}"
msgid "Not Published"
msgstr "Nicht veröffentlicht"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17648,7 +17830,7 @@ msgstr "ungelesen"
msgid "Not Sent"
msgstr "Nicht versendet"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "Nicht eingetragen"
@@ -17662,15 +17844,15 @@ msgstr "Nicht eingetragen"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Keine gültige .csv-Datei"
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "Kein gültiges Benutzerbild."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "Keine gültige Workflow-Aktion"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "Kein gültiger Benutzer"
@@ -17678,7 +17860,7 @@ msgstr "Kein gültiger Benutzer"
msgid "Not active"
msgstr "Nicht aktiv"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "Nicht zulässig für {0}: {1}"
@@ -17698,11 +17880,11 @@ msgstr "Das Drucken von abgebrochen Dokumenten ist nicht erlaubt."
msgid "Not allowed to print draft documents"
msgstr "Das Drucken von Entwürfen ist nicht erlaubt."
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "Nicht erlaubt über Controller-Berechtigungsprüfung"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Nicht gefunden"
@@ -17715,11 +17897,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Nicht im Entwicklungsmodus! In site_config.json erstellen oder \"Benutzerdefiniertes\" DocType erstellen."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nicht gestattet"
@@ -17747,7 +17929,7 @@ msgstr "Hinweis gesehen von"
msgid "Note:"
msgstr "Hinweis:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Hinweis: Wenn Sie den Seitennamen ändern, funktioniert die bisherige URL nicht mehr."
@@ -17779,7 +17961,7 @@ msgstr "Hinweis: Ihr Antrag auf Kontolöschung wird innerhalb von {0} Stunden be
msgid "Notes:"
msgstr "Anmerkungen:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "Keine Neuigkeiten"
@@ -17791,8 +17973,8 @@ msgstr "Nichts mehr zu wiederholen"
msgid "Nothing left to undo"
msgstr "Nichts mehr rückgängig zu machen"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17803,11 +17985,13 @@ msgid "Nothing to update"
msgstr "Nichts zu aktualisieren"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "Benachrichtigung"
@@ -17823,7 +18007,7 @@ msgstr "Benachrichtigungsempfänger"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
@@ -17832,11 +18016,6 @@ msgstr "Benachrichtigungseinstellungen"
msgid "Notification Subscribed Document"
msgstr "Benachrichtigungsdokument abonniert"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "Benachrichtigung gesendet an"
@@ -17854,13 +18033,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "Benachrichtigung: Benutzer {0} hat keine Mobiltelefonnummer festgelegt"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Benachrichtigungen"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "Benachrichtigungen deaktiviert"
@@ -18096,7 +18277,7 @@ msgstr "OTP Secret wurde zurückgesetzt. Bei der Anmeldung ist eine erneute Anme
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr "Der OTP-Platzhalter sollte als {{ otp }} definiert werden "
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "Die OTP-Einrichtung mit der OTP-App wurde nicht abgeschlossen. Bitte kontaktieren Sie den Administrator."
@@ -18136,7 +18317,7 @@ msgstr "Versatz X"
msgid "Offset Y"
msgstr "Versatz Y"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "Offset muss eine nicht-negative Ganzzahl sein"
@@ -18144,7 +18325,7 @@ msgstr "Offset muss eine nicht-negative Ganzzahl sein"
msgid "Old Password"
msgstr "Altes Passwort"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Alte und neue Feldnamen sind gleich."
@@ -18211,7 +18392,7 @@ msgstr "Am oder nach"
msgid "On or Before"
msgstr "Am oder vor"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "Am {0}, schrieb {1}:"
@@ -18255,7 +18436,7 @@ msgstr "Onboarding abgeschlossen"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Einmal gebuchte Dokumente können nicht mehr geändert werden. Sie können nur storniert oder berichtigt werden."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "Sobald Sie dies festgelegt haben, können die Benutzer nur noch auf solche Dokumente (z.B. vom Typ Blog Post) zugreifen, die mit dem erlaubten Dokument (z.B. Blogger) verknüpft sind."
@@ -18271,11 +18452,11 @@ msgstr "Einmal-Passwort (OTP) Registrierungscode von {}"
msgid "One of"
msgstr "Einer von"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Nur 200 Einfügungen in einer Anfrage erlaubt"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Nur Administrator kann E-Mail-Queue löschen"
@@ -18296,7 +18477,7 @@ msgstr "Nur der Administrator darf den Recorder verwenden"
msgid "Only Allow Edit For"
msgstr "Änderungen nur zulassen für"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Für das Datenfeld sind nur folgende Optionen zulässig:"
@@ -18319,11 +18500,11 @@ msgstr "Nur der Workspace Manager kann öffentliche Arbeitsbereiche bearbeiten"
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "Anpassungen können nur im Entwicklermodus exportiert werden"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Nur Dokumente im Entwurfsstatus können verworfen werden"
@@ -18366,7 +18547,7 @@ msgstr "Nur der zugewiesene Benutzer kann diese Aufgabe abschließen."
msgid "Only {0} emailed reports are allowed per user."
msgstr "Pro Benutzer sind nur {0} per E-Mail versandte Berichte erlaubt."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Hoppla! Etwas ist schief gelaufen."
@@ -18389,8 +18570,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Öffnen"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18426,6 +18607,10 @@ msgstr "Referenzdokument öffnen"
msgid "Open Settings"
msgstr "Einstellungen öffnen"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Open-Source-Anwendungen für das Web"
@@ -18440,7 +18625,7 @@ msgstr "URL in einem neuen Tab öffnen"
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 "Öffnen Sie ein Dialogfeld mit Pflichtfeldern, um schnell einen neuen Datensatz zu erstellen. Es muss mindestens ein Pflichtfeld vorhanden sein, um im Dialog angezeigt zu werden."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Modul oder Werkzeug öffnen"
@@ -18452,11 +18637,11 @@ msgstr "Konsole öffnen"
msgid "Open in a new tab"
msgstr "In einer neuen Registerkarte öffnen"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Listenelement öffnen"
@@ -18471,16 +18656,16 @@ msgstr "Öffnen Sie Ihre Authentifizierungs-App auf Ihrem Mobiltelefon."
#: 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:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "{0} öffnen"
@@ -18512,7 +18697,7 @@ msgstr "Arbeitsgang"
msgid "Operator must be one of {0}"
msgstr "Betreiber muss einer von {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18538,7 +18723,7 @@ msgstr "Option 2"
msgid "Option 3"
msgstr "Option 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "Option {0} für Feld {1} ist keine untergeordnete Tabelle"
@@ -18572,7 +18757,7 @@ msgstr "Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist"
msgid "Options"
msgstr "Optionen"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "\"Dynamic Link\"-Feldtyp aus \"Optionen\" muss auf ein anderes Verknüpfungsfeld mit Optionen wie \"DocType\" zeigen"
@@ -18581,7 +18766,7 @@ msgstr "\"Dynamic Link\"-Feldtyp aus \"Optionen\" muss auf ein anderes Verknüpf
msgid "Options Help"
msgstr "Hilfe zu Optionen"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Optionen für Bewertungsfeld können zwischen 3 und 10 liegen"
@@ -18589,7 +18774,7 @@ msgstr "Optionen für Bewertungsfeld können zwischen 3 und 10 liegen"
msgid "Options for select. Each option on a new line."
msgstr "Optionen zum Auswählen. Jede Option in einer neuen Zeile."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Optionen für {0} müssen festgelegt werden, bevor der Standardwert festgelegt wird."
@@ -18597,7 +18782,7 @@ msgstr "Optionen für {0} müssen festgelegt werden, bevor der Standardwert fest
msgid "Options is required for field {0} of type {1}"
msgstr "Optionen sind erforderlich für Feld {0} des Typs {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Optionen nicht für das Verknüpfungs-Feld {0} gesetzt"
@@ -18613,7 +18798,7 @@ msgstr "Orange"
msgid "Order"
msgstr "Auftrag"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "Order By muss eine Zeichenkette sein"
@@ -18633,8 +18818,12 @@ msgstr "Überschrift zur Unternehmensgeschichte"
msgid "Orientation"
msgstr "Ausrichtung"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Ursprünglicher Wert"
@@ -18709,18 +18898,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF-Erzeugung in Arbeit"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF-Generator"
@@ -18744,7 +18935,7 @@ msgstr "PDF-Seitenbreite (in mm)"
msgid "PDF Settings"
msgstr "PDF-Einstellungen"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "Die PDF-Erstellung ist fehlgeschlagen"
@@ -18752,11 +18943,11 @@ msgstr "Die PDF-Erstellung ist fehlgeschlagen"
msgid "PDF generation failed because of broken image links"
msgstr "PDF-Generierung ist aufgrund fehlerhafter Verknüpfungen für Bilddateien fehlgeschlagen"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "Die PDF-Erstellung funktioniert möglicherweise nicht wie erwartet."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "Der PDF-Druck über „Raw Print“ wird nicht unterstützt."
@@ -18915,7 +19106,7 @@ msgstr "Seitenbreite (in mm)"
msgid "Page has expired!"
msgstr "Seite ist abgelaufen!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Seitenhöhe und -Breite können nicht Null sein"
@@ -18931,7 +19122,7 @@ msgstr "Auf der Website anzuzeigende Seite\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:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Seite {0} von {1}"
@@ -18942,7 +19133,7 @@ msgid "Parameter"
msgstr "Parameter"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Übergeordnetes Element"
@@ -18975,11 +19166,11 @@ msgstr "Übergeordnetes Feld"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Übergeordnetes Feld (Baum)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Das übergeordnete Feld muss ein gültiger Feldname sein"
@@ -18993,7 +19184,7 @@ msgstr ""
msgid "Parent Label"
msgstr "Übergeordnete Bezeichnung"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "Stammeintrag fehlt"
@@ -19018,11 +19209,11 @@ msgstr "Parent ist der Name des Dokuments, zu dem die Daten hinzugefügt werden.
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr "Gruppierung von Übergeordnet-zu-Untergeordnet oder Untergeordnet-zu-anderem-Untergeordnet ist nicht erlaubt."
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "Das übergeordnete Feld wurde in {0}: {1} nicht angegeben"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "Übergeordneter Typ, übergeordnetes Element und übergeordnetes Feld sind erforderlich, um einen untergeordneten Datensatz einzufügen"
@@ -19041,7 +19232,7 @@ msgstr "Teilerfolg"
msgid "Partially Sent"
msgstr "Teilweise gesendet"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Teilnehmer"
@@ -19078,11 +19269,11 @@ msgstr "Passiv"
msgid "Password"
msgstr "Passwort"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "Passwort E-Mail gesendet"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
@@ -19091,7 +19282,7 @@ msgstr "Passwort zurücksetzen"
msgid "Password Reset Link Generation Limit"
msgstr "Limit zum Generieren von Kennwort-Reset-Links"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "Passwort kann nicht gefiltert werden"
@@ -19120,11 +19311,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:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {} gesendet"
@@ -19136,7 +19327,7 @@ msgstr "Passwort gesetzt"
msgid "Password size exceeded the maximum allowed size"
msgstr "Passwort überschreitet die maximal zulässige Länge"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "Passwort überschreitet die maximal zulässige Länge."
@@ -19198,7 +19389,7 @@ msgstr "Pfad zum Server-Zertifikat"
msgid "Path to private Key File"
msgstr "Pfad zur privaten Schlüsseldatei"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "Pfad {0} befindet sich nicht innerhalb des Moduls {1}"
@@ -19283,15 +19474,15 @@ msgstr "Berechtigungsebene"
msgid "Permanent"
msgstr "Dauerhaft"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "{0} endgültig abbrechen?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "{0} dauerhaft verwerfen?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "{0} endgültig übertragen?"
@@ -19299,7 +19490,11 @@ msgstr "{0} endgültig übertragen?"
msgid "Permanently delete {0}?"
msgstr "{0} endgültig löschen?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Berechtigungsfehler"
@@ -19309,12 +19504,12 @@ msgid "Permission Inspector"
msgstr "Berechtigungsinspektor"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Berechtigungsebene"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Berechtigungsstufen"
@@ -19323,11 +19518,6 @@ msgstr "Berechtigungsstufen"
msgid "Permission Log"
msgstr "Berechtigungsprotokoll"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "Berechtigungs-Manager"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19358,7 +19548,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19369,13 +19558,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Berechtigungen"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Berechtigungsfehler"
@@ -19387,11 +19575,11 @@ msgstr "Berechtigungen werden automatisch auf Standardberichte und Suchen angewe
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 "Berechtigungen werden für Rollen und Dokumenttypen (DocTypes genannt) festgelegt, indem Rechte wie Lesen, Schreiben, Erstellen, Löschen, Buchen, Stornieren, Berichtigen, Berichte ansehen, Importieren, Exportieren, Drucken, E-Mails versenden und Benutzerberechtigungen setzen festgelegt werden."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "Berechtigungen auf höheren Ebenen sind Berechtigungen auf Feldebene. Für alle Felder ist eine Berechtigungsebene festgelegt und die für diese Berechtigungen definierten Regeln gelten für das Feld. Dies ist nützlich, wenn Sie bestimmte Felder für bestimmte Rollen ausblenden oder schreibgeschützt machen möchten."
-#: frappe/core/page/permission_manager/permission_manager_help.html:24
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Berechtigungen auf Ebene 0 sind Berechtigungen auf Dokumentenebene, d.h. sie gelten primär für den Zugriff auf das Dokument."
@@ -19461,13 +19649,13 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefonnr."
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
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:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Spalten auswählen"
@@ -19525,7 +19713,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Bitte Diagramm einstellen"
@@ -19541,7 +19729,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:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen"
@@ -19549,11 +19737,11 @@ msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen
msgid "Please attach a file first."
msgstr "Bitte zuerst eine Datei anhängen."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Bitte fügen Sie eine Bilddatei an, um HTML für die Fußzeile festzulegen."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Bitte fügen Sie eine Bilddatei an, um HTML für den Briefkopf festzulegen."
@@ -19565,11 +19753,11 @@ msgstr "Bitte das Paket anhängen"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Bitte überprüfen Sie die für das Dashboard-Diagramm festgelegten Filterwerte: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
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:1121
+#: frappe/core/doctype/user/user.py:1124
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."
@@ -19601,7 +19789,7 @@ msgstr "Bitte auf die folgende Verknüpfung klicken um ein neues Passwort zu set
msgid "Please confirm your action to {0} this document."
msgstr "Bitte bestätigen Sie Ihre Aktion für {0} dieses Dokument."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Bitte wenden Sie sich an Ihren Systemmanager, um die richtige Version zu installieren."
@@ -19631,10 +19819,10 @@ msgstr "Bitte aktivieren Sie mindestens eines der Anmeldeverfahren Social Login
#: 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Bitte Pop-ups aktivieren"
@@ -19647,7 +19835,7 @@ msgstr "Bitte aktivieren Sie Popups in Ihrem Browser"
msgid "Please enable {} before continuing."
msgstr "Bitte aktivieren Sie {} bevor Sie fortfahren."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Bitte stellen Sie sicher, dass Ihr Profil eine E-Mail-Adresse hat"
@@ -19721,15 +19909,15 @@ 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:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Bitte aktualisieren, um das neueste Dokument zu erhalten."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Bitte entfernen Sie die Druckerzuordnung in den Druckereinstellungen und versuchen Sie es erneut."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Bitte vor dem Anhängen speichern"
@@ -19745,7 +19933,7 @@ msgstr "Bitte das Dokument vor dem Entfernen einer Zuordnung abspeichern"
msgid "Please save the form before previewing the message"
msgstr "Bitte speichern Sie das Formular, bevor Sie die Nachricht in der Vorschau anzeigen"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Bitte speichern Sie den Bericht zuerst"
@@ -19765,7 +19953,7 @@ msgstr "Bitte wählen Sie zunächst Entitätstyp"
msgid "Please select Minimum Password Score"
msgstr "Bitte wählen Sie einen Mindest-Passwort-Score aus"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Bitte wählen Sie X- und Y-Felder aus"
@@ -19773,7 +19961,7 @@ msgstr "Bitte wählen Sie X- und Y-Felder aus"
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Bitte wählen Sie einen Ländercode für das Feld {1} aus."
@@ -19823,11 +20011,11 @@ msgstr "Bitte {0} auswählen"
msgid "Please set Email Address"
msgstr "Bitte geben Sie eine E-Mail-Adresse an"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
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:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Bitte Filter einstellen"
@@ -19835,7 +20023,7 @@ msgstr "Bitte Filter einstellen"
msgid "Please set filters value in Report Filter table."
msgstr "Bitte legen Sie Filterwerte in der Berichtsfiltertabelle fest."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Bitte geben Sie den Dokumentnamen ein"
@@ -19855,7 +20043,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:462
+#: frappe/core/doctype/user/user.py:465
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"
@@ -19867,7 +20055,7 @@ msgstr "Bitte richten Sie das Standardkonto für ausgehende E-Mails unter Extras
msgid "Please specify"
msgstr "Bitte angeben"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Bitte geben Sie einen gültigen übergeordneten DocType für {0} an"
@@ -19895,7 +20083,7 @@ msgstr "Bitte geben Sie an, welches Datumsfeld überprüft werden muss"
msgid "Please specify which value field must be checked"
msgstr "Bitte angeben, welches Wertefeld überprüft werden muss"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
@@ -20016,11 +20204,11 @@ msgstr "Zeitstempel der Buchung"
msgid "Precision"
msgstr "Genauigkeit"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "Die Genauigkeit ({0}) für {1} darf nicht größer als die Länge ({2}) sein."
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Genauigkeit sollte zwischen 1 und 6 liegen"
@@ -20072,11 +20260,11 @@ msgstr "Vorbereiteter Berichtsbenutzer"
msgid "Prepared report render failed"
msgstr "Das Rendern des vorbereiteten Berichts ist fehlgeschlagen"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Bericht vorbereiten"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Vorlage oberhalb der Email-Nachricht einfügen"
@@ -20084,7 +20272,7 @@ msgstr "Vorlage oberhalb der Email-Nachricht einfügen"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Drücken Sie die Alt-Taste, um zusätzliche Verknüpfungen im Menü und in der Seitenleiste auszulösen"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Drücken Sie zum Speichern die Eingabetaste"
@@ -20102,7 +20290,7 @@ msgstr "Drücken Sie zum Speichern die Eingabetaste"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Vorschau"
@@ -20146,16 +20334,16 @@ msgstr "Vorschau:"
msgid "Previous"
msgstr "Zurück"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Vorhergehende"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Vorheriges Dokument"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Vorherige Buchungen"
@@ -20208,19 +20396,19 @@ msgstr "Der Primärschlüssel von doctype {0} kann nicht geändert werden, da es
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Drucken"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Drucken"
@@ -20238,8 +20426,9 @@ msgstr "Dokumente drucken"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20283,7 +20472,7 @@ msgstr "Hilfe zu Druckformaten"
msgid "Print Format Type"
msgstr "Druckformattyp"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "Druckformat nicht gefunden"
@@ -20316,11 +20505,11 @@ msgstr "Drucken ausblenden"
msgid "Print Hide If No Value"
msgstr "Drucken ausblenden wenn kein Wert"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Drucksprache"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Drucken an den Drucker gesendet!"
@@ -20333,8 +20522,8 @@ msgstr "Druck Server"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Druckeinstellungen"
@@ -20373,7 +20562,7 @@ msgstr "Druckbreite"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "Druckbreite des Feldes, wenn das Feld eine Spalte aus einer Tabelle ist"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Dokument ausdrucken"
@@ -20382,11 +20571,11 @@ msgstr "Dokument ausdrucken"
msgid "Print with letterhead"
msgstr "Drucken mit Briefkopf"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Drucker"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Druckerzuordnung"
@@ -20396,15 +20585,15 @@ msgstr "Druckerzuordnung"
msgid "Printer Name"
msgstr "Druckername"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Druckereinstellungen"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Druckerzuordnung nicht gesetzt."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Der Druck ist fehlgeschlagen"
@@ -20453,7 +20642,7 @@ msgstr "Tipp: Fügen Sie Referenz: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr "Fortfahren"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Fahre dennoch fort"
@@ -20493,9 +20682,9 @@ msgid "Project"
msgstr "Projekt"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "Eigenschaft"
@@ -20565,7 +20754,7 @@ msgstr "Anbietername"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Öffentlich"
@@ -20715,7 +20904,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:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ Tray fehlgeschlagen:"
@@ -20777,7 +20966,7 @@ msgstr "Die Abfrage muss vom Typ SELECT oder Read-Only WITH sein."
msgid "Queue"
msgstr "Warteschlange"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "Warteschlange überlastet"
@@ -20798,7 +20987,7 @@ msgstr "Warteschlange Typ(en)"
msgid "Queue in Background (BETA)"
msgstr "Warteschlange im Hintergrund (BETA)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Warteschlange sollte eine von {0}"
@@ -20839,7 +21028,7 @@ msgstr "Warteschlange für Backup. Sie erhalten eine E-Mail mit dem Download-Lin
msgid "Queues"
msgstr "Warteschlangen"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "Einreihen von {0} zur Buchung"
@@ -20931,6 +21120,15 @@ msgstr "Raw-Befehle"
msgid "Raw Email"
msgstr "Rohe E-Mail"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20939,7 +21137,7 @@ msgstr "Rohe E-Mail"
msgid "Raw Printing"
msgstr "Rohdruck"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Einstellung für Rohdruck"
@@ -20957,7 +21155,7 @@ msgstr "AW:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "AW: {0}"
@@ -20968,11 +21166,12 @@ msgstr "AW: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21009,7 +21208,7 @@ msgstr "Nur lesen hängt von ab"
msgid "Read Only Depends On (JS)"
msgstr "Bedingungen für Schreibschutz (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Nur Lese-Modus"
@@ -21049,7 +21248,7 @@ msgstr "Echtzeit (SocketIO)"
msgid "Reason"
msgstr "Grund"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Wiederaufbau"
@@ -21091,7 +21290,7 @@ msgstr "Empfängerparameter"
msgid "Recent years are easy to guess."
msgstr "Die letzten Jahre sind leicht zu erraten."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Kürzlich aufgerufen"
@@ -21142,7 +21341,7 @@ msgstr "Empfohlener Index für Rekorder"
msgid "Records for following doctypes will be filtered"
msgstr "Datensätze für folgende Dokumenttypen werden gefiltert"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Rekursives Abrufen von"
@@ -21208,12 +21407,12 @@ msgstr "Weiterleitungen"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis Cache-Server läuft nicht. Bitte wenden Sie sich an den Administrator oder Technischen Support"
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Wiederholen"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Letzte Aktion wiederholen"
@@ -21429,12 +21628,12 @@ msgstr "Referenz: {0} {1}"
msgid "Referrer"
msgstr "Verweiser"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21451,7 +21650,7 @@ msgstr "Alle erfrischen"
msgid "Refresh Google Sheet"
msgstr "Google Sheet aktualisieren"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "Druckvorschau aktualisieren"
@@ -21466,7 +21665,7 @@ msgstr "Druckvorschau aktualisieren"
msgid "Refresh Token"
msgstr "Aktualisierungstoken"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Aktualisiere"
@@ -21477,7 +21676,7 @@ msgstr "Aktualisiere"
msgid "Refreshing..."
msgstr "Aktualisiere..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Registrierte aber deaktiviert"
@@ -21523,10 +21722,8 @@ msgstr "Kommunikation neu verknüpfen"
msgid "Relinked"
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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Neu laden"
@@ -21538,7 +21735,7 @@ msgstr "Datei neu laden"
msgid "Reload List"
msgstr "Liste neu laden"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Bericht neu laden"
@@ -21557,7 +21754,7 @@ msgstr "Zuletzt gewählten Wert merken"
msgid "Remind At"
msgstr "Erinnern am"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Erinnere mich"
@@ -21637,9 +21834,9 @@ msgid "Removed"
msgstr "Entfernt"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21667,7 +21864,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:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Wiederholen"
@@ -21714,7 +21911,7 @@ msgstr "Wiederholt wie "aaa" sind leicht zu erraten"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Wiederholungen wie "abcabcabc" sind nur etwas schwieriger zu erraten als "abc""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Wiederholt {0}"
@@ -21777,6 +21974,7 @@ msgstr "Allen antworten"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21791,10 +21989,9 @@ msgstr "Allen antworten"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Bericht"
@@ -21863,7 +22060,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Berichtsname"
@@ -21897,14 +22094,10 @@ msgstr "Berichtstyp"
msgid "Report View"
msgstr "Berichtsansicht"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Fehler melden"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Bericht kann nicht für Einzel-Typen festgelegt werden"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21915,7 +22108,7 @@ msgstr "Der Bericht enthält keine Daten. Ändern Sie die Filter oder den Berich
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Der Bericht enthält keine numerischen Felder. Bitte ändern Sie den Berichtsnamen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Bericht initiiert. Klicken Sie hier, um den Status anzuzeigen"
@@ -21927,7 +22120,7 @@ msgstr "Berichtsgrenze erreicht"
msgid "Report timed out."
msgstr "Zeitüberschreitung des Berichts."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Bericht erfolgreich aktualisiert"
@@ -21935,12 +22128,12 @@ 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:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Berichte mit mehr als 10 Spalten sehen im Querformat besser aus."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Bericht {0}"
@@ -21963,7 +22156,7 @@ msgstr "Bericht:"
#. 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Berichte"
@@ -21971,7 +22164,7 @@ msgstr "Berichte"
msgid "Reports & Masters"
msgstr "Berichte & Stammdaten"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Berichtet bereits in der Warteschlange"
@@ -22030,13 +22223,13 @@ msgstr "Anfragemethode"
msgid "Request Structure"
msgstr "Anfragestruktur"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "Zeitüberschreitung der Anfrage"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Zeitüberschreitung der Anfrage"
@@ -22152,7 +22345,7 @@ msgstr "Auf Standardwerte zurücksetzen"
msgid "Reset sorting"
msgstr "Sortierung zurücksetzen"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Auf Standard zurücksetzen"
@@ -22210,7 +22403,7 @@ msgstr ""
msgid "Response Type"
msgstr "Antworttyp"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Rest des Tages"
@@ -22219,7 +22412,7 @@ msgstr "Rest des Tages"
msgid "Restore"
msgstr "Wiederherstellen"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Ursprüngliche Benutzerrechte wiederherstellen"
@@ -22241,6 +22434,11 @@ msgstr "Gelöschtes Dokument wiederherstellen"
msgid "Restrict IP"
msgstr "IP-Adressen einschränken"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22268,8 +22466,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Beschränkungen"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Ergebnis"
@@ -22316,9 +22514,15 @@ msgstr "Widerrufen"
msgid "Rich Text"
msgstr "Rich-Text"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22353,8 +22557,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22369,8 +22571,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22414,7 +22615,7 @@ msgstr "Rollenberechtigungen"
msgid "Role Permissions Manager"
msgstr "Rollenberechtigungen-Manager"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Rollenberechtigungen-Manager"
@@ -22422,11 +22623,9 @@ msgstr "Rollenberechtigungen-Manager"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Rollenprofil"
@@ -22448,7 +22647,7 @@ msgstr "Rollenreplikation"
msgid "Role and Level"
msgstr "Rolle und Ebene"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Die Rolle wurde gemäß Benutzertyp {0} festgelegt"
@@ -22567,20 +22766,20 @@ msgstr "Routenumleitungen"
msgid "Route: Example \"/app\""
msgstr "Route: Beispiel \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Zeile"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "Zeile #"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Zeile # {0}: Nicht-Administrator-Benutzer können die Rolle {1} nicht auf den benutzerdefinierten Doctype einstellen"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Zeile #{0}:"
@@ -22607,7 +22806,7 @@ msgstr "Zeilenname"
msgid "Row Number"
msgstr "Zeilennummer"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Zeilenwerte geändert"
@@ -22626,14 +22825,14 @@ msgstr "Zeile {0}: Keine Berechtigung die Option \"Beim Übertragen erlauben\" f
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Zeilen hinzugefügt"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Zeilen entfernt"
@@ -22656,7 +22855,7 @@ msgstr "Regel"
msgid "Rule Conditions"
msgstr "Regelbedingungen"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
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."
@@ -22736,7 +22935,7 @@ msgstr "SMS-Einstellungen"
msgid "SMS sent successfully"
msgstr "SMS erfolgreich versendet"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS wurde nicht gesendet. Bitte wenden Sie sich an den Administrator."
@@ -22770,7 +22969,7 @@ msgstr "SQL-Ausgabe"
msgid "SQL Queries"
msgstr "SQL-Abfragen"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22842,22 +23041,23 @@ msgstr "Samstag"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22870,7 +23070,7 @@ msgid "Save Anyway"
msgstr "Auf jeden Fall speichern"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Speichern als"
@@ -22878,7 +23078,7 @@ msgstr "Speichern als"
msgid "Save Customizations"
msgstr "Anpassungen speichern"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Bericht speichern"
@@ -22896,20 +23096,20 @@ msgid "Save the document."
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:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Gespeichert"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Gespeicherte Filter"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Speichere"
@@ -22918,11 +23118,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Speichere"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Speichere Anpassung..."
@@ -23126,7 +23326,7 @@ msgstr "Skripte"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23146,7 +23346,7 @@ msgstr "Suchleiste"
msgid "Search Fields"
msgstr "Suchfelder"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Hilfe suchen"
@@ -23164,7 +23364,7 @@ msgstr "Suchergebnisse"
msgid "Search by filename or extension"
msgstr "Nach Dateiname oder Endung suchen"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Suchfeld {0} ist nicht gültig"
@@ -23181,12 +23381,12 @@ msgstr "Feldtypen durchsuchen..."
msgid "Search for anything"
msgstr "Suchen Sie nach etwas"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "Suche nach {0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Suche in einem Dokumenttyp"
@@ -23258,15 +23458,15 @@ msgstr "Abschnitt muss mindestens eine Spalte enthalten"
msgid "Security Settings"
msgstr "Sicherheitseinstellungen"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Alle Aktivitäten anzeigen"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Alle früheren Berichte anzeigen."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Auf der Webseite ansehen"
@@ -23316,24 +23516,26 @@ msgstr "Gesehen von Tabelle"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Auswählen"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Alle auswählen"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23349,7 +23551,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Spalten auswählen"
@@ -23393,13 +23595,13 @@ msgstr "Dokumenttyp auswählen"
msgid "Select Document Type or Role to start."
msgstr "Dokumententyp oder Rolle auswählen, um zu beginnen."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
msgstr "Wählen Sie Dokumenttypen, um festzulegen, welche Benutzerberechtigungen zur Einschränkung des Zugriffs verwendet werden sollen."
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Feld auswählen"
@@ -23408,7 +23610,7 @@ msgstr "Feld auswählen"
msgid "Select Field..."
msgstr "Feld auswählen..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Felder auswählen"
@@ -23417,19 +23619,19 @@ msgstr "Felder auswählen"
msgid "Select Fields (Up to {0})"
msgstr "Felder auswählen (bis zu {0})"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Wählen Sie die einzufügenden Felder aus"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Wählen Sie zu aktualisierende Felder aus"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Wählen Sie Filter"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Wählen Sie Google Kalender aus, mit dem das Ereignis synchronisiert werden soll."
@@ -23454,16 +23656,16 @@ msgstr "Sprache auswählen"
msgid "Select List View"
msgstr "Listenansicht auswählen"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Verpflichtende auswählen"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Modul auswählen"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Netzwerkdrucker auswählen"
@@ -23473,7 +23675,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Druckformat auswählen"
@@ -23509,12 +23711,6 @@ msgstr "Workflow auswählen"
msgid "Select Workspace"
msgstr "Arbeitsbereich auswählen"
-#. 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 "Arbeitsbereiche auswählen"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Wählen Sie eine Marke Bild zuerst."
@@ -23531,11 +23727,11 @@ msgstr "Wählen Sie ein Feld aus, um seine Eigenschaften zu bearbeiten."
msgid "Select a group {0} first."
msgstr "Wählen Sie zuerst ein Gruppe {0} aus."
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Wählen Sie ein gültiges Absenderfeld zum Erstellen von Dokumenten aus E-Mail"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Wählen Sie ein gültiges Betrefffeld zum Erstellen von Dokumenten aus E-Mail"
@@ -23561,13 +23757,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:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Listenelement auswählen"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Wählen Sie mehrere Listenelemente aus"
@@ -23601,7 +23797,7 @@ msgstr "Wählen Sie zwei Versionen aus, um den Unterschied anzuzeigen."
msgid "Select {0}"
msgstr "{0} auswählen"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Selbstgenehmigung ist nicht erlaubt"
@@ -23631,6 +23827,11 @@ msgstr "Versenden nach"
msgid "Send Alert On"
msgstr "Benachrichtigung senden bei"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23683,7 +23884,7 @@ msgstr "Jetzt senden"
msgid "Send Print as PDF"
msgstr "Ausdruck als PDF senden"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Lesebestätigung senden"
@@ -23746,7 +23947,7 @@ msgstr "Anfragen an diese E-Mail-Adresse senden"
msgid "Send login link"
msgstr "Anmelde-Link senden"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Kopie an mich senden"
@@ -23785,7 +23986,7 @@ msgstr "Absender E-Mail"
msgid "Sender Email Field"
msgstr "Absender-E-Mail-Feld"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Das Absenderfeld sollte E-Mail-Optionen enthalten"
@@ -23879,7 +24080,7 @@ msgstr "Nummernkreis aktualisiert für {}"
msgid "Series counter for {} updated to {} successfully"
msgstr "Nummernkreis-Zähler für {} erfolgreich auf {} aktualisiert"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Serie {0} bereits verwendet in {1}"
@@ -23889,7 +24090,7 @@ msgstr "Serie {0} bereits verwendet in {1}"
msgid "Server Action"
msgstr "Serveraktion"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverfehler"
@@ -23916,11 +24117,15 @@ msgstr "Serverskripte sind deaktiviert. Bitte aktivieren Sie Server-Skripte in d
msgid "Server Scripts feature is not available on this site."
msgstr "Server-Skript-Funktion ist auf dieser Seite nicht verfügbar."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "Server konnte diese Anfrage nicht verarbeiten, weil eine andere Anfrage konkurrierend ist. Bitte versuchen Sie es erneut."
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "Server war zu beschäftigt, um diese Anfrage zu bearbeiten. Bitte versuchen Sie es erneut."
@@ -23948,16 +24153,14 @@ msgstr "Sitzungsstandard"
msgid "Session Default Settings"
msgstr "Sitzungsstandardeinstellungen"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Sitzungsstandards"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Sitzungsstandards gespeichert"
@@ -23998,7 +24201,7 @@ msgstr "Eingetragen"
msgid "Set Banner from Image"
msgstr "Banner aus Bild einrichten"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Diagramm setzen"
@@ -24024,7 +24227,7 @@ msgstr "Filter setzen"
msgid "Set Filters for {0}"
msgstr "Setze Filter für {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Ebenen einstellen"
@@ -24067,8 +24270,8 @@ msgstr "Eigenschaften festlegen"
msgid "Set Property After Alert"
msgstr "Setzen Sie die Eigenschaft nach Alert"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Anzahl festlegen"
@@ -24088,12 +24291,12 @@ msgstr "Nutzer-Berechtigungen setzen"
msgid "Set Value"
msgstr "Wert festlegen"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Alle als privat setzen"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Alle als öffentlich setzen"
@@ -24221,8 +24424,8 @@ msgstr "Einrichten Ihres Systems"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24245,11 +24448,11 @@ msgstr "Einstellungen für die „Über uns“-Seite"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Einrichtung"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Einrichtung > Formular anpassen"
@@ -24257,12 +24460,12 @@ msgstr "Einrichtung > Formular anpassen"
msgid "Setup > User"
msgstr "Einrichtung > Benutzer"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Einrichtung > Benutzerberechtigungen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Einrichtung Auto E-Mail"
@@ -24291,13 +24494,14 @@ msgstr "Einrichtung fehlgeschlagen"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Freigeben"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Freigeben für"
@@ -24305,7 +24509,7 @@ msgstr "Freigeben für"
msgid "Share this document with"
msgstr "Teilen Sie dieses Dokument mit"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "{0} teilen mit"
@@ -24365,16 +24569,10 @@ msgstr "Zeitstempel in der Zeitachse anzeigen"
msgid "Show Absolute Values"
msgstr "Absolutwerte anzeigen"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Alle anzeigen"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24420,7 +24618,7 @@ msgstr "Fehler anzeigen"
msgid "Show External Link Warning"
msgstr "Warnung bei externen Links anzeigen"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Feldname anzeigen (klicken um in Zwischenablage zu kopieren)"
@@ -24472,7 +24670,7 @@ msgstr "Sprachauswahl anzeigen"
msgid "Show Line Breaks after Sections"
msgstr "Zeilenumbrüche nach Abschnitten anzeigen"
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Verknüpfungen anzeigen"
@@ -24592,7 +24790,7 @@ msgstr "Wochenenden anzeigen"
msgid "Show account deletion link in My Account page"
msgstr "Link zum Löschen des Kontos auf der Seite „Mein Konto“ anzeigen"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Alle Versionen"
@@ -24734,7 +24932,7 @@ msgstr "Abmelden"
msgid "Sign Up and Confirmation"
msgstr "Registrierung und Bestätigung"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Die Registrierung ist deaktiviert"
@@ -24857,7 +25055,7 @@ msgstr "Spalte ohne Titel überspringen"
msgid "Skipping column {0}"
msgstr "Spalte {0} wird übersprungen"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "Überspringe Synchronisierung von Fixtures für den Doctype {0} aus der Datei {1}"
@@ -25032,15 +25230,15 @@ msgstr "Etwas ist schief gelaufen"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Während der Token-Generierung ist ein Fehler aufgetreten. Klicken Sie auf {0}, um eine neue zu erstellen."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Etwas ist schief gelaufen."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Verzeihung! Suche konnte nicht gefunden werden."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Verzeihung! Sie sind nicht berechtigt, diese Seite zu sehen."
@@ -25071,13 +25269,13 @@ msgstr "Optionen sortieren"
msgid "Sort Order"
msgstr "Sortierung"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "Sortierfeld {0} muss ein gültiger Feldname sein"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25126,7 +25324,7 @@ msgstr "Aktionen in einem Hintergrunddienst ausführen"
msgid "Special Characters are not allowed"
msgstr "Sonderzeichen sind nicht erlaubt"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Sonderzeichen außer "-", "#", ".", "/", "{{" Und "}}" sind bei der Benennung von Serien nicht zulässig {0}"
@@ -25165,6 +25363,7 @@ msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25172,6 +25371,7 @@ msgstr "Stack Trace"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25239,8 +25439,8 @@ msgstr "Standard-Benutzertyp {0} kann nicht gelöscht werden."
#: 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:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Starten"
@@ -25412,7 +25612,7 @@ msgstr "Statistik Zeitintervall"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25450,7 +25650,7 @@ msgstr "Schritte, um Ihre Anmeldung zu überprüfen"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "Fixiert"
@@ -25564,7 +25764,7 @@ msgstr "Unterdomäne"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Betreff"
@@ -25578,7 +25778,7 @@ msgstr "Betreff"
msgid "Subject Field"
msgstr "Themenfeld"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Betreff Der Feldtyp sollte Daten, Text, Langtext, Kleiner Text, Texteditor sein"
@@ -25599,14 +25799,14 @@ msgstr "Buchungs-Warteschlange"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Buchen"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Buchen"
@@ -25636,7 +25836,7 @@ msgstr "Absenden"
msgid "Submit After Import"
msgstr "Nach dem Import buchen"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Ein Problem melden"
@@ -25660,11 +25860,11 @@ msgstr "Nach Erstellung buchen"
msgid "Submit this document to complete this step."
msgstr "Senden Sie dieses Dokument, um diesen Schritt abzuschließen."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Buchen Sie dieses Dokument, um zu bestätigen"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "{0} Dokumente einreichen?"
@@ -25690,7 +25890,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Buche"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Übermitteln von {0}"
@@ -25725,12 +25925,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25772,7 +25972,7 @@ msgstr "Erfolgstitel"
msgid "Successful Job Count"
msgstr "Anzahl erfolgreich"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Erfolgreiche Transaktionen"
@@ -25797,7 +25997,7 @@ msgstr "{0} von {1} Datensätzen erfolgreich importiert."
msgid "Successfully reset onboarding status for all users."
msgstr "Onboarding-Status für alle Benutzer erfolgreich zurückgesetzt."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr "Erfolgreich abgemeldet"
@@ -25822,7 +26022,7 @@ msgstr "Optimierungen vorschlagen"
msgid "Suggested Indexes"
msgstr "Vorgeschlagene Indizes"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Empfohlener Benutzername: {0}"
@@ -25863,7 +26063,7 @@ msgstr "Sonntag"
msgid "Suspend Sending"
msgstr "Senden unterbrechen"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Kamera wechseln"
@@ -25876,7 +26076,7 @@ msgstr "Design wechseln"
msgid "Switch To Desk"
msgstr "Zum Desk wechseln"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Kamera wird gewechselt"
@@ -25945,9 +26145,7 @@ msgid "Syntax Error"
msgstr "Syntaxfehler"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "System"
@@ -25957,7 +26155,7 @@ msgstr "System"
msgid "System Console"
msgstr "Systemkonsole"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "Systemgenerierte Felder können nicht umbenannt werden"
@@ -26084,6 +26282,7 @@ msgstr "Systemprotokolle"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26098,7 +26297,6 @@ msgstr "Systemprotokolle"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26174,6 +26372,11 @@ msgstr "Systemseite"
msgid "System Settings"
msgstr "Systemeinstellungen"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26190,6 +26393,12 @@ msgstr "Bio"
msgid "TOS URI"
msgstr "Nutzungsbedingungen-URI"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26225,7 +26434,7 @@ msgstr "Tabelle"
msgid "Table Break"
msgstr "Tabellenumbruch"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Tabellenfeld"
@@ -26234,7 +26443,7 @@ msgstr "Tabellenfeld"
msgid "Table Fieldname"
msgstr "Tabellenfeldname"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Tabellenfeldname fehlt"
@@ -26252,7 +26461,7 @@ msgstr "HTML-Tabelle"
msgid "Table MultiSelect"
msgstr "Tabelle MultiSelect"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26260,11 +26469,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr "Tabelle gekürzt"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Tabelle aktualisiert"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Tabelle {0} darf nicht leer sein"
@@ -26284,17 +26493,17 @@ msgid "Tag Link"
msgstr "Schlagwortverknüpfung"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Schlagworte"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Foto machen"
@@ -26378,7 +26587,7 @@ msgstr "Vorlagenwarnungen"
msgid "Templates"
msgstr "Vorlagen"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Zeitweise nicht verfügbar"
@@ -26476,7 +26685,7 @@ msgstr "Danke"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Die automatische Wiederholung für dieses Dokument wurde deaktiviert."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung"
@@ -26532,7 +26741,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:481
msgid "The changes have been reverted."
msgstr "Die Änderungen wurden rückgängig gemacht."
@@ -26548,7 +26757,7 @@ msgstr "Der Kommentar darf nicht leer sein"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "Der Inhalt dieser E-Mail ist streng vertraulich. Bitte leiten Sie diese E-Mail nicht an Dritte weiter."
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Die angezeigte Anzahl ist eine Schätzung. Klicken Sie hier, um die genaue Anzahl anzuzeigen."
@@ -26574,11 +26783,15 @@ msgstr "Das Dokument wurde {0} zugewiesen"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "Der ausgewählte Dokumenttyp ist eine untergeordnete Tabelle, daher ist der übergeordnete Dokumenttyp erforderlich."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr ""
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr ""
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr ""
@@ -26645,6 +26858,10 @@ msgstr "Die Anzahl der Sekunden bis die Anfrage abläuft"
msgid "The password of your account has expired."
msgstr "Das Passwort Ihres Kontos ist abgelaufen."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+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 "Der Löschvorgang für {0} Daten, die mit {1} verknüpft sind, wurde eingeleitet."
@@ -26662,15 +26879,15 @@ msgstr "Die Projektnummer aus der Google Cloud Console unter
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "Der von Ihnen angeforderte Bericht wurde generiert.
Klicken Sie hier, um ihn herunterzuladen:
{0}
Dieser Link läuft in {1} Stunden ab."
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
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:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Die von Ihnen gesuchte Ressource ist nicht verfügbar"
@@ -26682,7 +26899,7 @@ msgstr "Die Rolle {0} sollte eine benutzerdefinierte Rolle sein."
msgid "The selected document {0} is not a {1}."
msgstr "Das ausgewählte Dokument {0} ist nicht vom Typ {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
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."
@@ -26694,6 +26911,42 @@ msgstr "Das System bietet viele vordefinierte Rollen. Sie können neue Rollen hi
msgid "The total number of user document types limit has been crossed."
msgstr "Das Limit für die Gesamtzahl der Benutzerdokumenttypen wurde überschritten."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 "Der Wert, den Sie eingefügt haben, war {0} Zeichen lang. Die maximal erlaubten Zeichen sind {1}."
@@ -26735,7 +26988,7 @@ msgstr "Design-URL"
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 "Es gibt Dokumente mit Workflow-Status, die in diesem Workflow nicht vorhanden sind. Es wird empfohlen, diese Status zum Workflow hinzuzufügen oder ihre Status zu ändern, bevor Sie diese aus dem Workflow entfernen."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Für Sie stehen keine Veranstaltungen an."
@@ -26743,7 +26996,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:"
@@ -26752,7 +27005,7 @@ msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "Es dürfen höchstens 9 Seitenumbrüche in einem Webformular vorkommen"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "Es darf nur einen Falz in einem Formular geben"
@@ -26764,11 +27017,11 @@ msgstr "Es gibt einen Fehler in der Adressvorlage {0}"
msgid "There is no data to be exported"
msgstr "Es gibt keine zu exportierenden Daten"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "Es gibt keine Aufgabe mit dem Namen \"{}\""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Es gibt im Moment nichts Neues zu sehen."
@@ -26776,7 +27029,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:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "In der Warteschlange befindet sich bereits {0} mit denselben Filtern:"
@@ -26792,7 +27045,7 @@ msgstr "Beim Erstellen dieser Seite ist ein Fehler aufgetreten"
msgid "There was an error saving filters"
msgstr "Beim Speichern der Filter ist ein Fehler aufgetreten"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Es gab Fehler"
@@ -26800,11 +27053,11 @@ 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:834
+#: frappe/public/js/frappe/views/communication.js:903
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."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Beim Setzen des Namens hat es einige Fehler gegeben. Kontaktieren Sie bitte Ihren Administrator"
@@ -26873,11 +27126,11 @@ msgstr "Dieses Jahr"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Diese Aktion ist unumkehrbar. Möchten Sie fortfahren?"
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Diese Aktion ist nur für {} zulässig"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Das kann nicht rückgängig gemacht werden"
@@ -26901,7 +27154,7 @@ msgstr "Dieses Diagramm steht allen Benutzern zur Verfügung, wenn diese Option
msgid "This doctype has no orphan fields to trim"
msgstr "Dieser Doctype hat keine verwaisten Felder zum Kürzen"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
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."
@@ -26917,15 +27170,15 @@ msgstr "Dieses Dokument wurde bereits in die Warteschlange eingereiht. Sie könn
msgid "This document has been modified after the email was sent."
msgstr "Dieses Dokument wurde nach dem Senden der E-Mail geändert."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "Dieses Dokument enthält ungespeicherte Änderungen, die möglicherweise nicht in der PDF-Datei erscheinen.
Bitte speichern Sie das Dokument vor dem Drucken."
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
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:509
+#: frappe/model/document.py:508
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."
@@ -26939,7 +27192,7 @@ msgid "This feature can not be used as dependencies are missing.\n"
msgstr "Diese Funktion kann nicht verwendet werden, da die Abhängigkeiten fehlen.\n"
"\t\t\t\tBitte wenden Sie sich an Ihren Systemmanager, um diese Funktion durch die Installation von pycups zu aktivieren!"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "Diese Funktion ist brandneu und noch experimentell"
@@ -26967,11 +27220,11 @@ msgstr "Diese Datei ist öffentlich und kann von jedem ohne Anmeldung aufgerufen
msgid "This file is public. It can be accessed without authentication."
msgstr "Diese Datei ist öffentlich. Sie kann ohne Authentifizierung aufgerufen werden."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Dieses Formular wurde geändert, nachdem Sie es geladen haben"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "Dieses Formular kann in diesem Workflow-Status nicht bearbeitet werden."
@@ -26990,7 +27243,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:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
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."
@@ -27032,15 +27285,15 @@ msgstr "Dieser Link wurde bereits zur Überprüfung aktiviert."
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Dieser Link ist ungültig oder abgelaufen. Bitte stellen Sie sicher, dass Sie den Link korrekt eingefügt haben."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Dies kann auf mehreren Seiten ausgedruckt werden"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Dieser Monat"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
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."
@@ -27048,7 +27301,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:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Dieser Bericht wurde {0} erstellt."
@@ -27072,7 +27325,7 @@ msgstr "Diese Software basiert auf vielen Open-Source-Paketen."
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "Dieser Titel wird sowohl als Titel der Webseite als auch in Meta-Tags verwendet"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "Dieser Wert ergibt sich aus dem Feld {1} von {0}"
@@ -27116,7 +27369,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:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Begrenzt"
@@ -27147,6 +27400,7 @@ msgstr "Donnerstag"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27154,6 +27408,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Zeit"
@@ -27236,11 +27491,6 @@ msgstr "Die Uhrzeit {0} muss im Format {1} vorliegen."
msgid "Timed Out"
msgstr "Zeitüberschreitung"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Zeitlose Nacht"
@@ -27272,11 +27522,11 @@ msgstr "Zeitleiste Verknüpfungen"
msgid "Timeline Name"
msgstr "Zeitleiste Name"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "Timeline-Feld muss ein Link oder Dynamic Link sein"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "Timeline-Feld muss ein gültiger Feldname sein"
@@ -27347,7 +27597,7 @@ msgstr "Tipp: Probieren Sie die neue Dropdown-Konsole mit"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27370,7 +27620,7 @@ msgstr "Titelfeld"
msgid "Title Prefix"
msgstr "Titel-Präfix"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Bezeichnungsfeld muss ein gültiger Feldname sein"
@@ -27461,7 +27711,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:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "Klicken Sie auf {0}, um den aktualisierten Bericht abzurufen."
@@ -27514,31 +27764,14 @@ msgstr "Aufgabe"
msgid "Today"
msgstr "Heute"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Diagramm ein-/ausblenden"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Breite wechseln"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Rasteransicht wechseln"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Seitenleiste umschalten"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Theme wechseln"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27574,7 +27807,7 @@ msgid "Tomorrow"
msgstr "Morgen"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "Zu viele Dokumente"
@@ -27582,15 +27815,19 @@ msgstr "Zu viele Dokumente"
msgid "Too Many Requests"
msgstr "Zu viele Anfragen"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "Zu viele Änderungen an der Datenbank in einer einzelnen Aktion."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
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:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Zu viele Benutzer haben sich kürzlich registriert. Die Registrierung ist daher deaktiviert. Bitte versuchen Sie es in einer Stunde erneut."
@@ -27646,10 +27883,10 @@ msgstr "Oben rechts"
msgid "Topic"
msgstr "Thema"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Summe"
@@ -27664,7 +27901,7 @@ msgstr "Gesamtzahl der Hintergrundarbeiter"
msgid "Total Errors (last 1 day)"
msgstr "Fehler insgesamt (letzter Tag)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Bilder insgesamt"
@@ -27766,7 +28003,7 @@ msgstr "Verfolgen Sie, ob Ihre E-Mail vom Empfänger geöffnet wurde.\n"
msgid "Track milestones for any document"
msgstr "Verfolgen Sie Meilensteine für jedes Dokument"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "Tracking URL generiert und in die Zwischenablage kopiert"
@@ -27802,7 +28039,7 @@ msgstr "Übergänge"
msgid "Translatable"
msgstr "Übersetzbar"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "Daten übersetzen"
@@ -27813,7 +28050,7 @@ msgstr "Daten übersetzen"
msgid "Translate Link Fields"
msgstr "Verknüpfungsfelder übersetzen"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Werte übersetzen"
@@ -27849,7 +28086,7 @@ msgstr "Papierkorb"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "Baum"
@@ -27898,8 +28135,8 @@ msgstr "Erneut versuchen"
msgid "Try a Naming Series"
msgstr "Nummernkreis ausprobieren"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Probieren Sie den neuen Print-Designer"
@@ -27945,6 +28182,7 @@ msgstr "Zwei-Faktor-Authentifizierungsmethode"
#. 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 'Event Notifications'
#. 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'
@@ -27958,6 +28196,7 @@ msgstr "Zwei-Faktor-Authentifizierungsmethode"
#: 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/event_notifications/event_notifications.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
@@ -27966,7 +28205,7 @@ msgstr "Zwei-Faktor-Authentifizierungsmethode"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28134,7 +28373,7 @@ msgstr "UTM-Quelle"
msgid "UUID"
msgstr "UUID"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "Dokument {0} wird nicht mehr verfolgt"
@@ -28142,7 +28381,7 @@ msgstr "Dokument {0} wird nicht mehr verfolgt"
msgid "Unable to find DocType {0}"
msgstr "DocType {0} kann nicht gefunden werden."
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Die Kamera konnte nicht geladen werden."
@@ -28158,7 +28397,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:180
+#: frappe/core/doctype/communication/email.py:204
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."
@@ -28179,20 +28418,20 @@ msgstr "Bedingung für das Aufheben der Zuweisung"
msgid "Uncaught Exception"
msgstr "Nicht abgefangene Ausnahme"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Unverändert"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Rückgängig machen"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Letzte Aktion rückgängig machen"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Nicht mehr folgen"
@@ -28268,9 +28507,10 @@ msgstr "Ungelesene Benachrichtigung gesendet"
msgid "Unsafe SQL query"
msgstr "Unsichere SQL-Abfrage"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "Auswahl aufheben"
@@ -28303,11 +28543,11 @@ msgstr "Abmeldeparameter"
msgid "Unsubscribed"
msgstr "Abgemeldet"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28327,7 +28567,7 @@ msgstr "{0} Dateien entpackt"
msgid "Unzipping files..."
msgstr "Dateien werden entpackt ..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Bevorstehende Veranstaltungen für heute"
@@ -28335,13 +28575,13 @@ msgstr "Bevorstehende Veranstaltungen für heute"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Aktualisieren"
@@ -28412,7 +28652,7 @@ msgstr "Wert aktualisieren"
msgid "Update from Frappe Cloud"
msgstr "Via Frappe Cloud aktualisieren"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "{0} Datensätze aktualisieren"
@@ -28420,8 +28660,7 @@ msgstr "{0} Datensätze aktualisieren"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Aktualisiert"
@@ -28433,11 +28672,11 @@ msgstr "Erfolgreich aktualisiert"
msgid "Updated To A New Version 🎉"
msgstr "Auf eine neue Version aktualisiert 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Erfolgreich aktualisiert"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Aktualisierung läuft"
@@ -28462,11 +28701,11 @@ msgstr "Globale Einstellungen aktualisieren"
msgid "Updating naming series options"
msgstr "Optionen für Nummernkreise werden aktualisiert"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "Aktualisiere zugehörige Felder..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Aktualisieren von {0}"
@@ -28474,12 +28713,12 @@ msgstr "Aktualisieren von {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "Aktualisiere {0} von {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "Plan hochstufen"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28527,6 +28766,7 @@ msgstr "Erster Tag der Periode verwenden"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "HTML verwenden"
@@ -28598,7 +28838,7 @@ msgstr "Verwenden Sie diese Option, wenn die Standardeinstellungen Ihre Daten ni
msgid "Use of sub-query or function is restricted"
msgstr "Die Verwendung von Teilabfragen oder Funktionen ist eingeschränkt."
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Den neuen Druckformat-Editor verwenden"
@@ -28632,9 +28872,8 @@ msgstr "OAuth verwendet"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28661,11 +28900,11 @@ msgstr "OAuth verwendet"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28801,7 +29040,7 @@ msgstr "Benutzerbild"
msgid "User Invitation"
msgstr "Benutzer-Einladung"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Benutzermenü"
@@ -28817,19 +29056,19 @@ msgid "User Permission"
msgstr "Benutzerberechtigung"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Benutzerberechtigungen"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Benutzerberechtigungen"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "Benutzerberechtigungen werden verwendet, um Benutzer auf bestimmte Datensätze zu beschränken."
@@ -28902,7 +29141,7 @@ msgstr "Benutzer können sich mit ihrer E-Mail-Adresse oder Handynummer anmelden
msgid "User can login using Email id or User Name"
msgstr "Benutzer können sich entweder mit ihrer E-Mail-Adresse oder Benutzername anmelden"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "Benutzer existiert nicht."
@@ -28936,27 +29175,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Benutzer {0} kann nicht gelöscht werden"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Benutzer {0} kann nicht deaktiviert werden"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Benutzer {0} kann nicht umbenannt werden"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "Benutzer {0} hat keinen Zugriff auf dieses Dokument"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Benutzer {0} hat keinen Doctype-Zugriff über die Rollenberechtigung für Dokument {1}."
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "Der Benutzer {0} hat nicht die Berechtigung, einen Arbeitsbereich zu erstellen."
@@ -28965,11 +29204,11 @@ 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:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "Benutzer {0} hat sich als {1} ausgegeben"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Benutzerkonto {0} ist deaktiviert"
@@ -28994,18 +29233,17 @@ msgstr "Benutzerinfo URI"
msgid "Username"
msgstr "Benutzername"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Benutzername {0} ist bereits vorhanden"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29076,7 +29314,7 @@ msgstr "Frappe Mail Einstellungen überprüfen"
msgid "Validate SSL Certificate"
msgstr "SSL-Zertifikat validieren"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Validierungsfehler"
@@ -29105,7 +29343,7 @@ msgstr "Gültigkeit"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29132,15 +29370,19 @@ msgstr "Wert geändert"
msgid "Value To Be Set"
msgstr "Wert, der gesetzt werden soll"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Wert kann für {0} nicht geändert werden"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Wert kann nicht negativ sein für"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Der Wert kann für {0} nicht negativ sein: {1}"
@@ -29152,7 +29394,7 @@ msgstr "Wert für ein Ankreuz-Feld kann entweder 0 oder 1 sein"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Der Wert für das Feld {0} ist in {1} zu lang. Die Länge sollte kleiner als {2} Zeichen sein"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "Wert für {0} kann keine Liste sein"
@@ -29177,7 +29419,13 @@ msgstr "Der Wert \"None\" impliziert einen öffentlichen Client. In diesem Fall
msgid "Value to Validate"
msgstr "Zu validierender Wert"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Wert zu groß"
@@ -29194,7 +29442,7 @@ msgstr "Der Wert {0} muss das gültige Dauerformat haben: dhms"
msgid "Value {0} must in {1} format"
msgstr "Der Wert {0} muss im Format {1} vorliegen"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Werte geändert"
@@ -29203,11 +29451,11 @@ msgstr "Werte geändert"
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Verifizierung"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Verifizierungscode"
@@ -29215,7 +29463,7 @@ msgstr "Verifizierungscode"
msgid "Verification Link"
msgstr "Bestätigungslink"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "Die E-Mail mit dem Verifizierungscode wurde nicht gesendet. Bitte kontaktieren Sie den Administrator."
@@ -29229,7 +29477,7 @@ msgid "Verified"
msgstr "Verifiziert"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Überprüfen"
@@ -29265,7 +29513,7 @@ msgstr "Ansicht"
msgid "View All"
msgstr "Alle ansehen"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "Prüfprotokoll anzeigen"
@@ -29277,7 +29525,7 @@ msgstr "DocType-Berechtigungen anzeigen"
msgid "View File"
msgstr "Datei anzeigen"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Vollständiges Protokoll anzeigen"
@@ -29314,7 +29562,7 @@ msgstr "Bericht anzeigen"
msgid "View Settings"
msgstr "Einstellungen anzeigen"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29323,14 +29571,11 @@ msgstr ""
msgid "View Switcher"
msgstr "Ansichtsumschalter"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "Webseite anzeigen"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29346,7 +29591,7 @@ msgstr "Bericht in Ihrem Browser anzeigen"
msgid "View this in your browser"
msgstr "Inhalt im Browser anzeigen"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Ihre Antwort anzeigen"
@@ -29382,7 +29627,7 @@ msgstr "Virtueller DocType {} benötigt eine statische Methode namens {} gefunde
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "Der virtuelle DocType {} erfordert das Überschreiben einer Instanzmethode namens {} gefunden {}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr "Virtuelle Tabellen müssen virtuelle Felder sein"
@@ -29430,7 +29675,7 @@ msgstr "Lager"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Warnung"
@@ -29439,7 +29684,7 @@ msgstr "Warnung"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "Warnung: DROHENDER DATENVERLUST! Wenn Sie fortfahren, werden die folgenden Datenbankspalten von DocType {0} dauerhaft gelöscht:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Warnung: Benennungsschema wurde nicht festgelegt"
@@ -29523,7 +29768,7 @@ msgstr "Webseite"
msgid "Web Page Block"
msgstr "Webseitenblock"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "URL der Webseite"
@@ -29620,7 +29865,7 @@ msgstr "Webhook-URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29675,7 +29920,7 @@ msgstr "Webseiten-Skript"
msgid "Website Search Field"
msgstr "Webseiten-Suchfeld"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Website-Suchfeld muss ein gültiger Feldname sein"
@@ -29740,6 +29985,11 @@ msgstr "Bild Link zum Website Theme"
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29827,15 +30077,15 @@ msgstr "Willkommens-URL"
msgid "Welcome Workspace"
msgstr "Willkommens-Arbeitsbereich"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "Willkommens-E-Mail gesendet"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Willkommen auf {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Neuigkeiten"
@@ -29857,10 +30107,6 @@ msgstr "Wenn Sie ein Dokument per E-Mail versenden, wird die PDF-Datei an die Ko
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 "Erzwingen Sie beim Hochladen von Dateien die Verwendung der webbasierten Bilderfassung. Falls diese Option nicht aktiviert ist, wird standardmäßig die native Kamera des Mobiltelefons verwendet, wenn eine Nutzung von einem Mobiltelefon aus erkannt wird."
-#: 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 "Wenn Sie ein Dokument nach dem Stornieren berichtigen und es speichern, erhält es eine neue Nummer, die eine Version der alten Nummer ist."
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29878,7 +30124,7 @@ msgstr "Zu welcher Ansicht des zugehörigen DocType sollte diese Verknüpfung f
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Breite"
@@ -29999,6 +30245,10 @@ msgstr "Workflow-Details"
msgid "Workflow Document State"
msgstr "Workflow-Dokumentenstatus"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -30016,11 +30266,11 @@ msgstr "Workflow-Status"
msgid "Workflow State Field"
msgstr "Workflow-Status-Feld"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Workflow-Status nicht festgelegt"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Eine Veränderung des Workflow-Status von {0} nach {1} ist nicht zulässig"
@@ -30028,7 +30278,7 @@ msgstr "Eine Veränderung des Workflow-Status von {0} nach {1} ist nicht zuläss
msgid "Workflow States Don't Exist"
msgstr "Workflow-Zustände existieren nicht"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Workflow-Status"
@@ -30063,18 +30313,15 @@ msgstr "Workflow erfolgreich aktualisiert"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Arbeitsbereich"
@@ -30101,7 +30348,6 @@ msgstr "Arbeitsbereich-Link"
#. 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 "Arbeitsbereich-Manager"
@@ -30115,27 +30361,15 @@ msgstr "Arbeitsbereich-Nummernkarte"
msgid "Workspace Quick List"
msgstr "Arbeitsbereich-Schnellliste"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "Arbeitsbereich Einstellungen"
-
-#. 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 "Einrichtung des Arbeitsbereichs abgeschlossen"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Arbeitsbereich-Verknüpfung"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -30145,13 +30379,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
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 "Sichtbarkeit des Arbeitsbereichs"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "Arbeitsbereich {0} erstellt"
@@ -30180,11 +30408,12 @@ msgstr "Abschließende Schritte"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "Schreiben"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Falscher Abruf vom Wert"
@@ -30202,7 +30431,7 @@ msgstr "X-Feld"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -30217,7 +30446,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y-Feld"
@@ -30265,10 +30494,14 @@ msgstr "Gelb"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30277,10 +30510,10 @@ msgstr "Gelb"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -30316,7 +30549,7 @@ msgstr "Sie haben 1 Zeile zu {0} hinzugefügt"
msgid "You added {0} rows to {1}"
msgstr "Sie haben {0} Zeilen zu {1} hinzugefügt"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "Sie sind dabei, einen externen Link zu öffnen. Klicken Sie erneut auf den Link, um zu bestätigen."
@@ -30324,7 +30557,7 @@ msgstr "Sie sind dabei, einen externen Link zu öffnen. Klicken Sie erneut auf d
msgid "You are connected to internet."
msgstr "Sie sind mit dem Internet verbunden."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "Sie geben sich als ein anderer Benutzer aus."
@@ -30332,11 +30565,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:437
+#: frappe/permissions.py:443
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:426
+#: frappe/permissions.py:432
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"
@@ -30359,7 +30592,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:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "Sie dürfen den Doctype {} nicht exportieren"
@@ -30367,10 +30600,14 @@ msgstr "Sie dürfen den Doctype {} nicht 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:778
+#: frappe/public/js/frappe/views/communication.js:845
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/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren"
@@ -30387,7 +30624,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:464
+#: frappe/__init__.py:462
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"
@@ -30395,7 +30632,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
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."
@@ -30408,7 +30645,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "Sie haben {0} angehängt"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Sie können dynamische Eigenschaften aus dem Dokument mit Hilfe von Jinja Templating hinzufügen."
@@ -30432,10 +30669,6 @@ msgstr "Sie können diese {0} auch kopieren und in Ihren Browser einfügen"
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "Sie können Ihr Team bitten, die Einladung erneut zu senden, wenn Sie immer noch beitreten möchten."
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "Sie können gebuchte Dokumente ändern, indem Sie sie stornieren und anschließend berichtigen."
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "Sie können die Aufbewahrungsrichtlinie unter {0} ändern."
@@ -30490,7 +30723,7 @@ msgstr "Sie können hier einen hohen Wert einstellen, wenn sich mehrere Benutzer
msgid "You can try changing the filters of your report."
msgstr "Sie können versuchen, die Filter Ihres Berichts zu ändern."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Sie können „Formular anpassen“ verwenden, um Berechtigungsebenen für Felder festzulegen."
@@ -30520,6 +30753,10 @@ msgstr "Sie haben dieses Dokument {1} storniert"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Sie können kein Dashboard-Diagramm aus einzelnen DocTypes erstellen"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "\"Nur lesen\" kann für das Feld {0} nicht rückgängig gemacht werden"
@@ -30546,7 +30783,6 @@ msgid "You changed {0} to {1}"
msgstr "Sie haben {0} zu {1} geändert"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "Von Ihnen erstellt"
@@ -30555,11 +30791,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "Sie haben dieses Dokument {0} erstellt"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "Sie haben keine Lese- oder Auswahlberechtigung für {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
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."
@@ -30571,15 +30803,19 @@ msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchz
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "Sie haben keine Berechtigung, auf das Feld {0} zuzugreifen"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}."
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Sie haben keine Berechtigung, alle verknüpften Dokumente zu stornieren."
@@ -30615,7 +30851,7 @@ msgstr "Sie haben sich erfolgreich abgemeldet"
msgid "You have hit the row size limit on database table: {0}"
msgstr "Sie haben das Limit für die Zeilengröße in der Datenbanktabelle erreicht: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Sie haben keinen Wert eingegeben. Das Feld wird auf leer gesetzt."
@@ -30635,7 +30871,7 @@ msgstr "Sie haben {0} nicht gesehen"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Sie haben noch keine Dashboard-Diagramme oder Zahlenkarten hinzugefügt."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "Sie haben noch kein(en) {0} erstellt"
@@ -30644,7 +30880,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Sie haben die maximale Anzahl an Anfragen erreicht. Bitte versuchen Sie es später noch einmal."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Zuletzt von Ihnen bearbeitet"
@@ -30660,12 +30895,12 @@ msgstr "Sie müssen angemeldet sein, um dieses Formular zu nutzen."
msgid "You must login to submit this form"
msgstr "Anmeldung erforderlich, um dieses Formular zu übermitteln"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
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."
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Sie müssen Arbeitsbereich-Manager sein, um einen öffentlichen Arbeitsbereich zu löschen."
@@ -30673,7 +30908,7 @@ msgstr "Sie müssen Arbeitsbereich-Manager sein, um einen öffentlichen Arbeitsb
msgid "You need to be Workspace Manager to edit this document"
msgstr "Sie müssen Workspace Manager sein, um dieses Dokument zu bearbeiten"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Sie müssen ein Systembenutzer sein, um auf diese Seite zugreifen zu können."
@@ -30705,7 +30940,7 @@ msgstr "Sie müssen JavaScript aktivieren, damit Ihre App funktioniert."
msgid "You need to have \"Share\" permission"
msgstr "Sie müssen die Berechtigung zum \"Freigeben\" haben"
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Sie müssen Pycups installieren, um diese Funktion nutzen zu können!"
@@ -30725,7 +30960,7 @@ msgstr "Sie benötigen Schreibberechtigung für {0} {1} zum Zusammenführen"
msgid "You need write permission on {0} {1} to rename"
msgstr "Sie benötigen Schreibberechtigung für {0} {1} zum Umbenennen"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "Sie benötigen eine {0}-Berechtigung, um die Werte von {1} {2} abzurufen"
@@ -30772,7 +31007,7 @@ msgstr "Sie haben dieses Dokument nicht mehr verfolgt"
msgid "You viewed this"
msgstr "Von Ihnen angesehen"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "Sie werden weitergeleitet zu:"
@@ -30849,7 +31084,7 @@ msgstr "deine Emailadresse"
msgid "Your exported report: {0}"
msgstr "Ihr exportierter Bericht: {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Ihr Formular wurde erfolgreich aktualisiert"
@@ -30891,7 +31126,7 @@ msgstr "Ihr Bericht wird im Hintergrund generiert. Sie erhalten eine E-Mail an {
msgid "Your session has expired, please login again to continue."
msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "Ihre Website wird gerade gewartet oder aktualisiert."
@@ -30913,7 +31148,7 @@ msgstr "Null bedeutet, dass Sendeaufzeichnungen jederzeit aktualisiert werden"
msgid "[Action taken by {0}]"
msgstr "[Aktion ausgeführt von {0}]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
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`"
@@ -30932,7 +31167,7 @@ msgstr "nach_einfügen"
msgid "amend"
msgstr "berichtigen"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "und"
@@ -30955,7 +31190,7 @@ msgstr "nach Rolle"
msgid "cProfile Output"
msgstr "cProfile Ausgabe"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "Kalender"
@@ -30971,7 +31206,9 @@ msgid "canceled"
msgstr "storniert"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "chrome"
@@ -30995,7 +31232,7 @@ msgid "cyan"
msgstr "türkis"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "T"
@@ -31053,7 +31290,7 @@ msgstr "löschen"
msgid "descending"
msgstr "absteigend"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "Dokumententyp ..., z. B. Kunde"
@@ -31063,7 +31300,7 @@ msgstr "Dokumententyp ..., z. B. Kunde"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "z. B. \"Support\", \"Vertrieb\", \"Jerry Yang\""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "z. B. (55 + 434) / 4 oder =Math.sin(Math.PI/2)..."
@@ -31105,12 +31342,16 @@ msgstr "emacs"
msgid "email"
msgstr "E-Mail"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "E-Mail-Eingang"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "leeren"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "leeren"
@@ -31166,12 +31407,12 @@ 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:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "Std"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "Hub"
@@ -31186,6 +31427,20 @@ msgstr "Symbol"
msgid "import"
msgstr "importieren"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "beate@beispiel.de"
@@ -31225,16 +31480,11 @@ msgid "long"
msgstr "lang"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "fusionierte {0} in {1}"
@@ -31253,15 +31503,15 @@ msgstr "mm-tt-jjjj"
msgid "mm/dd/yyyy"
msgstr "mm/tt/jjjj"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "Modulname ..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "Neu"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "neuer Dokumententyp"
@@ -31323,7 +31573,7 @@ msgstr "on_update"
msgid "on_update_after_submit"
msgstr "on_update_after_submit"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "oder"
@@ -31396,7 +31646,7 @@ msgid "restored {0} as {1}"
msgstr "restauriert {0} als {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "Sek"
@@ -31480,11 +31730,11 @@ msgstr "String-Wert, z.B {0} oder uid={0},ou=users,dc=example,dc=com"
msgid "submit"
msgstr "buchen"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "Tag Name ..., zB #tag"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "Text in Dokumententyp"
@@ -31582,11 +31832,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "wenn Sie auf ein Element klicken, wird das Popover aktiviert, falls vorhanden."
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (mit gepatchtem qt)."
@@ -31622,11 +31874,11 @@ msgstr "JJJJ-MM-TT"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : type}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31643,8 +31895,8 @@ msgstr "{0} ({1}) (1 Zeile obligatorisch)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31657,13 +31909,13 @@ msgid "{0} Chart"
msgstr "{0} Diagramm"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0}-Dashboard"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31697,11 +31949,11 @@ msgstr "{0} M"
msgid "{0} Map"
msgstr "{0} Karte"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} ID"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Es ist nicht erlaubt, {1} nach dem Buchen von {2} auf {3} zu ändern"
@@ -31709,7 +31961,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:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} Berichte"
@@ -31722,11 +31974,11 @@ msgid "{0} Tree"
msgstr "{0} Baumstruktur"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} Seitenaufrufe"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} hinzugefügt"
@@ -31788,7 +32040,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} dieses Dokument storniert {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
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."
@@ -31817,16 +32069,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} wurde von {1} zu {2} geändert"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0} enthält einen ungültigen Fetch From-Ausdruck. Fetch From kann nicht selbstreferenziell sein."
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} erfolgreich erstellt"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "Von {0} erstellt"
@@ -31843,11 +32098,19 @@ msgstr "{0} d"
msgid "{0} days ago"
msgstr "vor {0} Tagen"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{0} existiert nicht in Zeile {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
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"
@@ -31872,7 +32135,7 @@ msgstr "{0} Std"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} hat bereits einen Standardwert für {1} zugewiesen."
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31893,7 +32156,11 @@ msgstr "{0}, falls Sie nicht innerhalb von {1} Sekunden weitergeleitet werden"
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} in Zeile {1} kann nicht sowohl die URL als auch Unterpunkte haben"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} ist ein Pflichtfeld"
@@ -31901,7 +32168,15 @@ msgstr "{0} ist ein Pflichtfeld"
msgid "{0} is a not a valid zip file"
msgstr "{0} ist keine gültige Zip-Datei"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} ist ein ungültiges Datenfeld."
@@ -31909,6 +32184,15 @@ msgstr "{0} ist ein ungültiges Datenfeld."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} ist eine ungültige E-Mail-Adresse in \"Empfänger\""
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} ist zwischen {1} und {2}"
@@ -31918,22 +32202,36 @@ msgstr "{0} ist zwischen {1} und {2}"
msgid "{0} is currently {1}"
msgstr "{0} ist derzeit {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} ist gleich {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} ist größer oder gleich {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} ist größer als {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} ist kleiner oder gleich {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} ist kleiner als {1}"
@@ -31946,10 +32244,14 @@ msgstr "{0} ist wie {1}"
msgid "{0} is mandatory"
msgstr "{0} ist erforderlich"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "{0} ist keine Untertabelle von {1}"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant 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}"
@@ -31966,12 +32268,12 @@ msgstr "{0} ist kein gültiger Kalender. Weiterleitung zum Standard-Kalender."
msgid "{0} is not a valid Cron expression."
msgstr "{0} ist kein gültiger Cron-Ausdruck."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ist kein gültiger DocType für Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} ist keine gültige E-Mail-Adresse"
@@ -31979,23 +32281,23 @@ 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:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} ist kein gültiger Name"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} ist keine gültige Telefonnummer"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
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:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} ist kein gültiger übergeordneter DocType für {1}"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} ist kein gültiges übergeordnetes Feld für {1}"
@@ -32011,6 +32313,11 @@ msgstr "{0} ist keine Zip-Datei"
msgid "{0} is not an allowed role for {1}"
msgstr "{0} ist keine erlaubte Rolle für {1}"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} ist ungleich {1}"
@@ -32019,10 +32326,12 @@ msgstr "{0} ist ungleich {1}"
msgid "{0} is not like {1}"
msgstr "{0} ist nicht wie {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} ist keine von {1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} ist nicht eingetragen"
@@ -32031,36 +32340,50 @@ msgstr "{0} ist nicht eingetragen"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} ist jetzt das Standard-Druckformat für den DocType {1}"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} ist eine von {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} ist erforderlich"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} ist eingetragen"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} ist innerhalb von {1}"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} Elemente ausgewählt"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} hat sich gerade als Sie ausgegeben und gab dafür diesen Grund an: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "Zuletzt von {0} bearbeitet"
@@ -32088,35 +32411,35 @@ msgstr "vor {0} Minuten"
msgid "{0} months ago"
msgstr "vor {0} Monaten"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} muss nach {1} liegen"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} muss mit '{1}' beginnen"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} muss gleich '{1}' sein"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} darf nichts von {1} sein"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} muss aus {1} sein"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} muss als erstes gesetzt sein"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} muss einmalig sein"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} muss {1} {2} sein"
@@ -32133,11 +32456,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} darf nicht umbenannt werden"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} von {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)"
@@ -32166,7 +32489,7 @@ msgstr "{0} Datensätze werden für {1} Tage gespeichert."
msgid "{0} records deleted"
msgstr "{0} Datensätze gelöscht"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} Datensätze werden exportiert"
@@ -32191,7 +32514,7 @@ msgstr "{0} hat {1} Zeilen von {2} 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:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} Zeile #{1}:"
@@ -32205,7 +32528,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0} Zeilen zu {1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} wurde erfolgreich gespeichert"
@@ -32213,7 +32536,7 @@ msgstr "{0} wurde erfolgreich gespeichert"
msgid "{0} self assigned this task: {1}"
msgstr "{0} hat sich diese Aufgabe selbst zugewiesen: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} hat ein Dokument {1} {2} für Sie freigegeben"
@@ -32281,7 +32604,7 @@ msgstr "{0} W"
msgid "{0} weeks ago"
msgstr "vor {0} Wochen"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32293,7 +32616,7 @@ msgstr "{0} J"
msgid "{0} years ago"
msgstr "Vor {0} Jahren"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} hinzugefügt"
@@ -32301,11 +32624,11 @@ msgstr "{0} {1} hinzugefügt"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} zum Dashboard hinzugefügt {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} existiert bereits"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} kann nicht \"{2}\" sein . Es sollte aus \"{3}\" sein."
@@ -32317,11 +32640,11 @@ msgstr "{0} {1} kann kein Knotenpunkt sein, da Unterpunkte vorhanden sind"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} existiert nicht. Bitte ein neues Ziel zum Zusammenführen wählen"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
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:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} nicht gefunden"
@@ -32329,87 +32652,59 @@ msgstr "{0} {1} nicht gefunden"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Übermittelter Datensatz kann nicht gelöscht werden. Sie müssen {2} zuerst {3} abbrechen."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, Zeile {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} abgeschlossen | Bitte lassen Sie diese Registerkarte bis zum Abschluss geöffnet."
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) wird abgeschnitten werden, da maximal {2} Zeichen erlaubt sind"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: \"Geändert\" kann nicht eingestellt werden ohne \"Abbruch\""
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Kann nicht als \"als geändert markieren\" eingestellt werden, wenn nicht übertragbar"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Kann nicht als \"als übertragen markieren\" eingestellt werden, wenn nicht übertragbar"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: \"Abbruch\" kann nicht ohne \"Übertragen\" eingestellt werden"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Kann nicht auf \"Import\" eingestellt werden ohne \"Erstellen\""
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Kann nicht auf \"Übertragen\", \"Stornieren\", \"Ändern\" eingestellt werden ohne \"Schreiben\""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Kann nicht auf \"Import\" eingestellt werden, da {1} nicht importierbar ist"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Neues wiederkehrendes Dokument konnte nicht angehängt werden. Aktivieren Sie {1} in den Druckeinstellungen, um das Anhängen eines Dokuments in der E-Mail für die automatische Wiederholungsbenachrichtigung zu aktivieren"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: Feld '{1}' kann nicht als eindeutig festgelegt werden, da es nicht eindeutige Werte enthält"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: Das Feld {1} in Zeile {2} kann ohne Vorgabe nicht ausgeblendet und obligatorisch sein"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Feld {1} vom Typ {2} kann nicht obligatorisch sein"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Der Feldname {1} wird mehrmals in Zeilen {2} angezeigt."
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Der Feldtyp {1} für {2} kann nicht eindeutig sein"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Keine Grundberechtigungen festgelegt"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Nur eine Regel mit der gleichen Rolle, Ebene und {1} erlaubt"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Optionen müssen ein gültiger DocType für Feld {1} in Zeile {2} sein"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: Erforderliche Optionen für das Feld für den Link- oder Tabellentyp {1} in Zeile {2}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Die Optionen {1} müssen mit dem Doctype-Namen {2} für das Feld {3} identisch sein."
@@ -32417,15 +32712,59 @@ msgstr "{0}: Die Optionen {1} müssen mit dem Doctype-Namen {2} für das Feld {3
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Andere Genehmigungsregeln können ebenfalls gelten"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: Sie können das Limit für das Feld bei Bedarf über {1} erhöhen"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: Feldname kann nicht auf reserviertes Schlüsselwort {1} gesetzt werden"
@@ -32438,15 +32777,15 @@ 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:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} vs {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}: Der Feldtyp {1} für {2} kann nicht indiziert werden"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} gespeichert"
@@ -32466,11 +32805,11 @@ msgstr "{count} Zeile ausgewählt"
msgid "{count} rows selected"
msgstr "{count} Zeilen ausgewählt"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Komplett"
diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po
index 77ddc4bc2b..61ab9b46dd 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:24\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:51\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "crwdns90470:0crwdne90470:0"
msgid "\"Team Members\" or \"Management\""
msgstr "crwdns127908:0crwdne127908:0"
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "crwdns90474:0crwdne90474:0"
@@ -66,7 +66,7 @@ msgstr "crwdns110774:0crwdne110774:0"
msgid "<head> HTML"
msgstr "crwdns127910:0crwdne127910:0"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr "crwdns162102:0{0}crwdne162102:0"
@@ -74,7 +74,7 @@ msgstr "crwdns162102:0{0}crwdne162102:0"
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "crwdns90522:0{0}crwdnd90522:0{1}crwdne90522:0"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "crwdns90524:0{0}crwdnd90524:0{1}crwdne90524:0"
@@ -90,19 +90,19 @@ msgstr "crwdns90528:0{0}crwdnd90528:0{1}crwdne90528:0"
msgid "'Recipients' not specified"
msgstr "crwdns90530:0crwdne90530:0"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "crwdns158966:0{0}crwdne158966:0"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "crwdns90532:0{0}crwdne90532:0"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "crwdns90534:0{0}crwdnd90534:0{1}crwdnd90534:0{2}crwdne90534:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "crwdns110776:0crwdne110776:0"
@@ -140,7 +140,7 @@ msgstr "crwdns164028:0crwdne164028:0"
msgid "0 is highest"
msgstr "crwdns127914:0crwdne127914:0"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "crwdns90542:0crwdne90542:0"
@@ -158,7 +158,7 @@ msgstr "crwdns90546:0crwdne90546:0"
msgid "1 Google Calendar Event synced."
msgstr "crwdns90548:0crwdne90548:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "crwdns110780:0crwdne110780:0"
@@ -189,7 +189,7 @@ msgstr "crwdns90560:0crwdne90560:0"
msgid "1 of 2"
msgstr "crwdns142972:0crwdne142972:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "crwdns90562:0crwdne90562:0"
@@ -589,7 +589,7 @@ msgstr "crwdns127954:0crwdne127954:0"
msgid ">="
msgstr "crwdns127956:0crwdne127956:0"
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
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"
@@ -603,7 +603,7 @@ msgstr "crwdns155934:0crwdne155934:0"
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "crwdns160160:0crwdne160160:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "crwdns90644:0{0}crwdnd90644:0{1}crwdne90644:0"
@@ -922,7 +922,7 @@ msgstr "crwdns128016:0crwdne128016:0"
msgid "Action Complete"
msgstr "crwdns90762:0crwdne90762:0"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "crwdns90764:0crwdne90764:0"
@@ -971,13 +971,13 @@ msgstr "crwdns90774:0{0}crwdnd90774:0{1}crwdnd90774:0{2}crwdnd90774:0{3}crwdne90
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "crwdns90776:0crwdne90776:0"
@@ -1034,20 +1034,20 @@ msgstr "crwdns90798:0crwdne90798:0"
msgid "Activity Log"
msgstr "crwdns90802:0crwdne90802:0"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "crwdns90808:0crwdne90808:0"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "crwdns110786:0crwdne110786:0"
@@ -1055,11 +1055,11 @@ msgstr "crwdns110786:0crwdne110786:0"
msgid "Add / Update"
msgstr "crwdns90810:0crwdne90810:0"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "crwdns90812:0crwdne90812:0"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "crwdns90814:0crwdne90814:0"
@@ -1079,11 +1079,15 @@ msgstr "crwdns128032:0crwdne128032:0"
msgid "Add Border at Top"
msgstr "crwdns128034:0crwdne128034:0"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr "crwdns194644:0crwdne194644:0"
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "crwdns142868:0crwdne142868:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "crwdns90824:0crwdne90824:0"
@@ -1092,8 +1096,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:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1137,11 +1141,7 @@ msgstr "crwdns90842:0crwdne90842:0"
msgid "Add Indexes"
msgstr "crwdns127856:0crwdne127856:0"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "crwdns110788:0crwdne110788:0"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "crwdns90844:0crwdne90844:0"
@@ -1154,17 +1154,13 @@ msgstr "crwdns90846:0crwdne90846:0"
msgid "Add Query Parameters"
msgstr "crwdns128042:0crwdne128042:0"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "crwdns90852:0crwdne90852:0"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "crwdns90854:0crwdne90854:0"
@@ -1183,16 +1179,16 @@ msgstr "crwdns128046:0crwdne128046:0"
msgid "Add Subscribers"
msgstr "crwdns90862:0crwdne90862:0"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "crwdns90864:0crwdne90864:0"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "crwdns90866:0crwdne90866:0"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "crwdns90868:0crwdne90868:0"
@@ -1242,19 +1238,19 @@ msgstr "crwdns90880:0crwdne90880:0"
msgid "Add a new section"
msgstr "crwdns110796:0crwdne110796:0"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "crwdns90882:0crwdne90882:0"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "crwdns90884:0crwdne90884:0"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "crwdns90886:0crwdne90886:0"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "crwdns90888:0crwdne90888:0"
@@ -1272,6 +1268,10 @@ msgstr "crwdns142974:0crwdne142974:0"
msgid "Add field"
msgstr "crwdns142976:0crwdne142976:0"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr "crwdns194646:0crwdne194646:0"
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1285,6 +1285,10 @@ msgstr "crwdns164030:0crwdne164030:0"
msgid "Add page break"
msgstr "crwdns142980:0crwdne142980:0"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr "crwdns194648:0crwdne194648:0"
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "crwdns90892:0crwdne90892:0"
@@ -1303,7 +1307,7 @@ msgid "Add tab"
msgstr "crwdns142986:0crwdne142986:0"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "crwdns90894:0crwdne90894:0"
@@ -1343,8 +1347,8 @@ msgstr "crwdns128054:0crwdne128054:0"
msgid "Added default log doctypes: {}"
msgstr "crwdns90904:0crwdne90904:0"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "crwdns90908:0{0}crwdnd90908:0{1}crwdne90908:0"
@@ -1434,7 +1438,7 @@ msgstr "crwdns111484:0crwdne111484:0"
msgid "Adds a custom field to a DocType"
msgstr "crwdns111486:0crwdne111486:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "crwdns90948:0crwdne90948:0"
@@ -1461,15 +1465,15 @@ msgstr "crwdns90948:0crwdne90948:0"
msgid "Administrator"
msgstr "crwdns90950:0crwdne90950:0"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "crwdns90952:0crwdne90952:0"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "crwdns90954:0{0}crwdnd90954:0{1}crwdnd90954:0{2}crwdne90954:0"
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "crwdns148284:0crwdne148284:0"
@@ -1486,8 +1490,8 @@ msgstr "crwdns128068:0crwdne128068:0"
msgid "Advanced Control"
msgstr "crwdns128070:0crwdne128070:0"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "crwdns90962:0crwdne90962:0"
@@ -1568,7 +1572,7 @@ msgstr "crwdns90986:0crwdne90986:0"
msgid "Alert"
msgstr "crwdns128094:0crwdne128094:0"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr "crwdns155512:0crwdne155512:0"
@@ -1592,6 +1596,15 @@ msgstr "crwdns128100:0crwdne128100:0"
msgid "Align Value"
msgstr "crwdns90998:0crwdne90998:0"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr "crwdns194650:0crwdne194650:0"
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1624,7 +1637,7 @@ msgstr "crwdns91000:0crwdne91000:0"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "crwdns91006:0crwdne91006:0"
@@ -1636,11 +1649,11 @@ msgstr "crwdns91012:0crwdne91012:0"
msgid "All Records"
msgstr "crwdns91014:0crwdne91014:0"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "crwdns110800:0crwdne110800:0"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "crwdns91016:0crwdne91016:0"
@@ -1951,7 +1964,7 @@ msgstr "crwdns128190:0crwdne128190:0"
msgid "Allowed embedding domains"
msgstr "crwdns151416:0crwdne151416:0"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "crwdns91150:0crwdne91150:0"
@@ -1985,13 +1998,61 @@ msgstr "crwdns155946:0crwdne155946:0"
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr "crwdns155948:0crwdne155948:0"
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr "crwdns194652:0crwdne194652:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+msgstr "crwdns194654:0crwdne194654: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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr "crwdns194656:0crwdne194656:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr "crwdns194658:0crwdne194658:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr "crwdns194660:0crwdne194660:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr "crwdns194662:0crwdne194662:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr "crwdns194664:0crwdne194664:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr "crwdns194666:0crwdne194666:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr "crwdns194668:0crwdne194668:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr "crwdns194670:0crwdne194670:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr "crwdns194672:0crwdne194672:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr "crwdns194674:0crwdne194674:0"
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "crwdns91152:0crwdne91152:0"
@@ -2086,7 +2147,7 @@ msgstr "crwdns91186:0crwdne91186:0"
msgid "Amendment Naming Override"
msgstr "crwdns128208:0crwdne128208:0"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "crwdns151842:0crwdne151842:0"
@@ -2099,7 +2160,7 @@ msgstr "crwdns91190:0crwdne91190:0"
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr "crwdns160162:0crwdne160162:0"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "crwdns91192:0crwdne91192:0"
@@ -2150,7 +2211,7 @@ msgstr "crwdns128220:0crwdne128220:0"
msgid "Anonymous responses"
msgstr "crwdns151418:0crwdne151418:0"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "crwdns91208:0crwdne91208:0"
@@ -2163,7 +2224,7 @@ msgstr "crwdns91210:0{0}crwdnd91210:0{1}crwdne91210:0"
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 "crwdns128224:0crwdne128224:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr "crwdns110802:0crwdne110802:0"
@@ -2213,11 +2274,11 @@ msgstr "crwdns91230:0crwdne91230:0"
msgid "App Name (Client Name)"
msgstr "crwdns155952:0crwdne155952:0"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "crwdns91240:0{0}crwdne91240:0"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "crwdns91242:0{0}crwdne91242:0"
@@ -2291,7 +2352,7 @@ msgstr "crwdns161336:0crwdne161336:0"
msgid "Apply"
msgstr "crwdns142988:0crwdne142988:0"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "crwdns91270:0crwdne91270:0"
@@ -2300,6 +2361,10 @@ msgstr "crwdns91270:0crwdne91270:0"
msgid "Apply Filters"
msgstr "crwdns91274:0crwdne91274:0"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr "crwdns194676:0crwdne194676:0"
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2339,7 +2404,7 @@ msgstr "crwdns128266:0crwdne128266:0"
msgid "Apply to all Documents Types"
msgstr "crwdns91292:0crwdne91292:0"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "crwdns91294:0{0}crwdne91294:0"
@@ -2347,18 +2412,11 @@ msgstr "crwdns91294:0{0}crwdne91294:0"
msgid "Approval Required"
msgstr "crwdns91300:0crwdne91300:0"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "crwdns148286:0crwdne148286:0"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr "crwdns161338:0crwdne161338:0"
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2381,16 +2439,16 @@ msgstr "crwdns91306:0crwdne91306:0"
msgid "Are you sure you want to cancel the invitation?"
msgstr "crwdns157294:0crwdne157294:0"
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr "crwdns104470:0crwdne104470:0"
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "crwdns91308:0crwdne91308:0"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr "crwdns194678:0{0}crwdne194678:0"
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "crwdns91312:0crwdne91312:0"
@@ -2409,19 +2467,19 @@ 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 "crwdns142994:0crwdne142994:0"
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr "crwdns158706:0crwdne158706:0"
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr "crwdns91314:0crwdne91314:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "crwdns110808:0crwdne110808:0"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "crwdns91316:0{0}crwdnd91316:0{1}crwdne91316:0"
@@ -2441,7 +2499,7 @@ msgstr "crwdns91322:0{0}crwdne91322:0"
msgid "Are you sure you want to remove all failed jobs?"
msgstr "crwdns91324:0crwdne91324:0"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "crwdns91326:0{0}crwdne91326:0"
@@ -2490,7 +2548,7 @@ msgstr "crwdns91340:0{0}crwdnd91340:0{1}crwdne91340:0"
msgid "Ask"
msgstr "crwdns159972:0crwdne159972:0"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "crwdns164032:0crwdne164032:0"
@@ -2503,7 +2561,7 @@ msgstr "crwdns128278:0crwdne128278:0"
msgid "Assign To"
msgstr "crwdns91344:0crwdne91344:0"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "crwdns91346:0crwdne91346:0"
@@ -2553,7 +2611,7 @@ msgstr "crwdns91364:0crwdne91364:0"
msgid "Assigned By Full Name"
msgstr "crwdns128284:0crwdne128284:0"
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2642,7 +2700,7 @@ msgstr "crwdns91410:0crwdne91410:0"
msgid "Asynchronous"
msgstr "crwdns157298:0crwdne157298:0"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "crwdns91414:0crwdne91414:0"
@@ -2667,7 +2725,7 @@ msgstr "crwdns104474:0crwdne104474:0"
msgid "Attach"
msgstr "crwdns91420:0crwdne91420:0"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "crwdns91430:0crwdne91430:0"
@@ -2765,19 +2823,26 @@ msgstr "crwdns160700:0crwdne160700:0"
#. 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:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "crwdns91476:0crwdne91476:0"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "crwdns91482:0crwdne91482:0"
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "crwdns91484:0crwdne91484:0"
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr "crwdns194680:0crwdne194680:0"
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "crwdns112680:0crwdne112680:0"
@@ -3102,11 +3167,6 @@ msgstr "crwdns91622:0crwdne91622:0"
msgid "Awesome, now try making an entry yourself"
msgstr "crwdns91624:0crwdne91624:0"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr "crwdns161340:0crwdne161340:0"
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3212,17 +3272,12 @@ msgstr "crwdns128394:0crwdne128394:0"
msgid "Background Image"
msgstr "crwdns128396:0crwdne128396:0"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-msgstr "crwdns161342:0crwdne161342:0"
-
#. 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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "crwdns91668:0crwdne91668:0"
@@ -3335,8 +3390,8 @@ msgstr "crwdns128438:0crwdne128438:0"
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "crwdns91724:0crwdne91724:0"
@@ -3360,6 +3415,8 @@ msgstr "crwdns128444:0crwdne128444:0"
msgid "Basic Info"
msgstr "crwdns128446:0crwdne128446:0"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3429,7 +3486,7 @@ msgstr "crwdns91752:0crwdne91752:0"
msgid "Beta"
msgstr "crwdns128470:0crwdne128470:0"
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "crwdns91756:0crwdne91756:0"
@@ -3557,18 +3614,11 @@ msgstr "crwdns128508:0crwdne128508:0"
msgid "Brand Image"
msgstr "crwdns128510:0crwdne128510:0"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr "crwdns128512:0crwdne128512:0"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr "crwdns161344:0crwdne161344:0"
-
#. 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"
@@ -3639,7 +3689,7 @@ msgstr "crwdns91880:0crwdne91880:0"
msgid "Bulk Edit"
msgstr "crwdns91882:0crwdne91882:0"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "crwdns91884:0{0}crwdne91884:0"
@@ -3660,7 +3710,7 @@ msgstr "crwdns111450:0crwdne111450:0"
msgid "Bulk Update"
msgstr "crwdns91886:0crwdne91886:0"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr "crwdns91890:0crwdne91890:0"
@@ -3672,7 +3722,7 @@ msgstr "crwdns91892:0crwdne91892:0"
msgid "Bulk operations only support up to 500 documents."
msgstr "crwdns91894:0crwdne91894:0"
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr "crwdns91896:0{0}crwdne91896:0"
@@ -3821,7 +3871,7 @@ msgstr "crwdns128566:0crwdne128566:0"
msgid "Cache Cleared"
msgstr "crwdns91962:0crwdne91962:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "crwdns91964:0crwdne91964:0"
@@ -3871,12 +3921,12 @@ msgid "Callback Title"
msgstr "crwdns128580:0crwdne128580:0"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "crwdns91992:0crwdne91992:0"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3888,11 +3938,11 @@ msgstr "crwdns91994:0crwdne91994:0"
msgid "Campaign Description (Optional)"
msgstr "crwdns128582:0crwdne128582:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr "crwdns92002:0{0}crwdne92002:0"
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr "crwdns92004:0crwdne92004:0"
@@ -3902,7 +3952,7 @@ msgstr "crwdns92004:0crwdne92004:0"
msgid "Can only list down the document types which has been linked to the User document type."
msgstr "crwdns128584:0crwdne128584:0"
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr "crwdns148288:0crwdne148288:0"
@@ -3924,7 +3974,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:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "crwdns92012:0crwdne92012:0"
@@ -3934,11 +3984,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "crwdns92022:0crwdne92022:0"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "crwdns92026:0crwdne92026:0"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "crwdns92028:0crwdne92028:0"
@@ -3950,7 +4000,7 @@ msgstr "crwdns160626:0crwdne160626:0"
msgid "Cancel Prepared Report"
msgstr "crwdns160628:0crwdne160628:0"
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "crwdns92032:0{0}crwdne92032:0"
@@ -3983,7 +4033,7 @@ msgstr "crwdns92048:0crwdne92048:0"
msgid "Cancelling documents"
msgstr "crwdns92050:0crwdne92050:0"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "crwdns92052:0{0}crwdne92052:0"
@@ -3991,7 +4041,7 @@ msgstr "crwdns92052:0{0}crwdne92052:0"
msgid "Cannot Download Report due to insufficient permissions"
msgstr "crwdns92054:0crwdne92054:0"
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr "crwdns92056:0crwdne92056:0"
@@ -3999,7 +4049,7 @@ msgstr "crwdns92056:0crwdne92056:0"
msgid "Cannot Remove"
msgstr "crwdns92058:0crwdne92058:0"
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr "crwdns92060:0crwdne92060:0"
@@ -4019,11 +4069,11 @@ msgstr "crwdns92066:0{0}crwdne92066:0"
msgid "Cannot cancel {0}."
msgstr "crwdns92068:0{0}crwdne92068:0"
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "crwdns92070:0crwdne92070:0"
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "crwdns92072:0crwdne92072:0"
@@ -4035,7 +4085,7 @@ msgstr "crwdns92074:0{0}crwdne92074:0"
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "crwdns92076:0{0}crwdne92076:0"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "crwdns92078:0crwdne92078:0"
@@ -4043,10 +4093,14 @@ msgstr "crwdns92078:0crwdne92078:0"
msgid "Cannot create a {0} against a child document: {1}"
msgstr "crwdns92080:0{0}crwdnd92080:0{1}crwdne92080:0"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "crwdns92082:0crwdne92082:0"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr "crwdns194682:0{0}crwdne194682:0"
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "crwdns92084:0crwdne92084:0"
@@ -4055,15 +4109,15 @@ msgstr "crwdns92084:0crwdne92084:0"
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"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "crwdns92092:0crwdne92092:0"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "crwdns92094:0crwdne92094:0"
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "crwdns92096:0{0}crwdne92096:0"
@@ -4074,11 +4128,11 @@ msgstr "crwdns92096:0{0}crwdne92096:0"
msgid "Cannot delete standard field. You can hide it if you want"
msgstr "crwdns143002:0crwdne143002:0"
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "crwdns92098:0crwdne92098:0"
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr "crwdns92100:0{0}crwdne92100:0"
@@ -4106,7 +4160,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:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "crwdns92114:0crwdne92114:0"
@@ -4119,7 +4173,7 @@ msgstr "crwdns92116:0crwdne92116:0"
msgid "Cannot edit filters for standard number cards"
msgstr "crwdns127894:0crwdne127894:0"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "crwdns92118:0crwdne92118:0"
@@ -4135,15 +4189,15 @@ msgstr "crwdns92122:0crwdne92122:0"
msgid "Cannot get file contents of a Folder"
msgstr "crwdns92124:0crwdne92124:0"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "crwdns92126:0crwdne92126:0"
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr "crwdns154588:0crwdne154588:0"
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "crwdns92128:0{0}crwdne92128:0"
@@ -4155,7 +4209,7 @@ msgstr "crwdns92130:0crwdne92130:0"
msgid "Cannot match column {0} with any field"
msgstr "crwdns92132:0{0}crwdne92132:0"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "crwdns92134:0crwdne92134:0"
@@ -4180,7 +4234,7 @@ msgid "Cannot submit {0}."
msgstr "crwdns92142:0{0}crwdne92142:0"
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "crwdns92146:0{0}crwdne92146:0"
@@ -4200,7 +4254,7 @@ msgstr "crwdns92152:0{0}crwdnd92152:0{1}crwdne92152:0"
msgid "Capitalization doesn't help very much."
msgstr "crwdns92154:0crwdne92154:0"
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "crwdns92156:0crwdne92156:0"
@@ -4214,7 +4268,7 @@ msgstr "crwdns128586:0crwdne128586:0"
msgid "Card Break"
msgstr "crwdns128588:0crwdne128588:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "crwdns92162:0crwdne92162:0"
@@ -4243,17 +4297,19 @@ msgstr "crwdns128592:0crwdne128592:0"
msgid "Category Name"
msgstr "crwdns128594:0crwdne128594:0"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr "crwdns128596:0crwdne128596:0"
-#: 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 "crwdns110832:0crwdne110832:0"
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4341,7 +4397,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "crwdns128612:0crwdne128612:0"
@@ -4406,6 +4462,12 @@ msgstr "crwdns110834:0crwdne110834:0"
msgid "Check the Error Log for more information: {0}"
msgstr "crwdns92250:0{0}crwdne92250:0"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr "crwdns194684:0crwdne194684: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 "crwdns92252:0crwdne92252:0"
@@ -4457,7 +4519,7 @@ msgstr "crwdns128630:0crwdne128630:0"
msgid "Child Item"
msgstr "crwdns161346:0crwdne161346:0"
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr "crwdns160486:0{0}crwdnd160486:0{1}crwdne160486:0"
@@ -4467,7 +4529,7 @@ msgstr "crwdns160486:0{0}crwdnd160486:0{1}crwdne160486:0"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "crwdns92276:0crwdne92276:0"
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "crwdns155514:0{0}crwdne155514:0"
@@ -4475,7 +4537,7 @@ msgstr "crwdns155514:0{0}crwdne155514:0"
msgid "Choose Existing Card or create New Card"
msgstr "crwdns92280:0crwdne92280:0"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "crwdns92282:0crwdne92282:0"
@@ -4495,10 +4557,6 @@ msgstr "crwdns92286:0crwdne92286:0"
msgid "Choose authentication method to be used by all users"
msgstr "crwdns128632:0crwdne128632:0"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr "crwdns160488:0crwdne160488:0"
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4515,11 +4573,11 @@ msgstr "crwdns128636:0crwdne128636:0"
msgid "Clear"
msgstr "crwdns92294:0crwdne92294:0"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "crwdns92296:0crwdne92296:0"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "crwdns92298:0crwdne92298:0"
@@ -4527,7 +4585,7 @@ msgstr "crwdns92298:0crwdne92298:0"
msgid "Clear All"
msgstr "crwdns155956:0crwdne155956:0"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "crwdns104478:0crwdne104478:0"
@@ -4553,7 +4611,7 @@ msgstr "crwdns128638:0crwdne128638:0"
msgid "Clear User Permissions"
msgstr "crwdns92306:0crwdne92306:0"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "crwdns92308:0crwdne92308:0"
@@ -4621,7 +4679,7 @@ msgstr "crwdns110842:0crwdne110842:0"
msgid "Click to Set Filters"
msgstr "crwdns110844:0crwdne110844:0"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "crwdns110846:0{0}crwdne110846:0"
@@ -4729,7 +4787,7 @@ msgstr "crwdns151420:0crwdne151420:0"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "crwdns92372:0crwdne92372:0"
@@ -4739,7 +4797,7 @@ msgstr "crwdns92372:0crwdne92372:0"
msgid "Close Condition"
msgstr "crwdns128658:0crwdne128658:0"
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr "crwdns143012:0crwdne143012:0"
@@ -4795,12 +4853,12 @@ msgstr "crwdns128668:0crwdne128668:0"
msgid "Collapse"
msgstr "crwdns92400:0crwdne92400:0"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "crwdns92402:0crwdne92402:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "crwdns92404:0crwdne92404:0"
@@ -4857,7 +4915,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4868,7 +4926,7 @@ msgstr "crwdns92418:0crwdne92418:0"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4913,11 +4971,11 @@ msgstr "crwdns92464:0crwdne92464:0"
msgid "Column Name cannot be empty"
msgstr "crwdns92468:0crwdne92468:0"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "crwdns110850:0crwdne110850:0"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "crwdns92470:0crwdne92470:0"
@@ -4960,7 +5018,7 @@ msgstr "crwdns128682:0crwdne128682:0"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5107,12 +5165,12 @@ msgstr "crwdns92554:0crwdne92554:0"
msgid "Complete By"
msgstr "crwdns92558:0crwdne92558:0"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "crwdns92560:0crwdne92560:0"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "crwdns110854:0crwdne110854:0"
@@ -5127,7 +5185,7 @@ msgstr "crwdns110854:0crwdne110854:0"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "crwdns92562:0crwdne92562:0"
@@ -5218,7 +5276,7 @@ msgstr "crwdns128720:0crwdne128720:0"
msgid "Configure Chart"
msgstr "crwdns92606:0crwdne92606:0"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "crwdns92608:0crwdne92608:0"
@@ -5307,8 +5365,8 @@ msgstr "crwdns92634:0crwdne92634:0"
msgid "Connected User"
msgstr "crwdns128726:0crwdne128726:0"
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "crwdns92642:0crwdne92642:0"
@@ -5426,7 +5484,7 @@ msgstr "crwdns127604:0{0}crwdne127604:0"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5495,11 +5553,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "crwdns92730:0crwdne92730:0"
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr "crwdns161456:0{0}crwdnd161456:0{1}crwdne161456:0"
@@ -5511,12 +5569,12 @@ msgstr "crwdns110864:0crwdne110864:0"
msgid "Copy embed code"
msgstr "crwdns148980:0crwdne148980:0"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "crwdns92732:0crwdne92732:0"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "crwdns148722:0crwdne148722:0"
@@ -5537,7 +5595,7 @@ msgstr "crwdns92738:0crwdne92738:0"
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "crwdns92740:0{0}crwdne92740:0"
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "crwdns127608:0crwdne127608:0"
@@ -5545,7 +5603,7 @@ msgstr "crwdns127608:0crwdne127608:0"
msgid "Could not connect to outgoing email server"
msgstr "crwdns92742:0crwdne92742:0"
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "crwdns92744:0{0}crwdne92744:0"
@@ -5553,11 +5611,11 @@ 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:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr "crwdns155516:0{0}crwdne155516:0"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr "crwdns160490:0crwdne160490:0"
@@ -5565,7 +5623,7 @@ msgstr "crwdns160490:0crwdne160490:0"
msgid "Could not start up:"
msgstr "crwdns158712:0crwdne158712:0"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "crwdns92748:0crwdne92748:0"
@@ -5617,7 +5675,7 @@ msgstr "crwdns128760:0crwdne128760:0"
msgid "Country"
msgstr "crwdns92764:0crwdne92764:0"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "crwdns92774:0crwdne92774:0"
@@ -5644,15 +5702,16 @@ msgstr "crwdns92780:0crwdne92780:0"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "crwdns92782:0crwdne92782:0"
@@ -5665,13 +5724,13 @@ msgstr "crwdns92790:0crwdne92790:0"
msgid "Create Address"
msgstr "crwdns148724:0crwdne148724:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "crwdns92794:0crwdne92794:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "crwdns92796:0crwdne92796:0"
@@ -5705,7 +5764,7 @@ msgstr "crwdns128770:0crwdne128770:0"
msgid "Create New"
msgstr "crwdns92808:0crwdne92808:0"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "crwdns110866:0crwdne110866:0"
@@ -5718,7 +5777,7 @@ msgstr "crwdns92810:0crwdne92810:0"
msgid "Create New Kanban Board"
msgstr "crwdns92812:0crwdne92812:0"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr "crwdns164036:0crwdne164036:0"
@@ -5734,18 +5793,18 @@ msgstr "crwdns110868:0crwdne110868:0"
msgid "Create a Reminder"
msgstr "crwdns92818:0crwdne92818:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "crwdns92820:0crwdne92820:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "crwdns92822:0crwdne92822:0"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "crwdns92824:0{0}crwdne92824:0"
@@ -5762,7 +5821,7 @@ msgstr "crwdns92828:0crwdne92828:0"
msgid "Create or Edit Workflow"
msgstr "crwdns92830:0crwdne92830:0"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "crwdns92832:0{0}crwdne92832:0"
@@ -5781,13 +5840,21 @@ msgstr "crwdns110870:0crwdne110870:0"
msgid "Created At"
msgstr "crwdns128772:0crwdne128772:0"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "crwdns92842:0crwdne92842:0"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr "crwdns194686:0crwdne194686:0"
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr "crwdns194688:0{0}crwdne194688:0"
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "crwdns92844:0{0}crwdnd92844:0{1}crwdne92844:0"
@@ -5981,7 +6048,7 @@ msgstr "crwdns128802:0crwdne128802:0"
msgid "Custom Document Types Limit Exceeded"
msgstr "crwdns92936:0crwdne92936:0"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "crwdns92938:0crwdne92938:0"
@@ -5992,15 +6059,15 @@ msgstr "crwdns92938:0crwdne92938:0"
msgid "Custom Field"
msgstr "crwdns92940:0crwdne92940:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "crwdns92948:0{0}crwdne92948:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "crwdns92952:0crwdne92952:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "crwdns92954:0crwdne92954:0"
@@ -6026,7 +6093,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr "crwdns92962:0{0}crwdnd92962:0{0}crwdne92962:0"
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "crwdns92964:0crwdne92964:0"
@@ -6072,7 +6139,7 @@ msgstr "crwdns128818:0crwdne128818:0"
msgid "Custom Report"
msgstr "crwdns128820:0crwdne128820:0"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "crwdns92984:0crwdne92984:0"
@@ -6097,11 +6164,11 @@ msgstr "crwdns128824:0crwdne128824:0"
msgid "Custom Translation"
msgstr "crwdns143304:0crwdne143304:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "crwdns111394:0{0}crwdne111394:0"
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
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"
@@ -6124,26 +6191,26 @@ msgstr "crwdns92994:0crwdne92994:0"
msgid "Customization"
msgstr "crwdns93000:0crwdne93000:0"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "crwdns93010:0crwdne93010:0"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "crwdns93012:0crwdne93012:0"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "crwdns93014:0{0}crwdnd93014:0{1}crwdne93014:0"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "crwdns93016:0crwdne93016:0"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "crwdns93018:0crwdne93018:0"
@@ -6240,7 +6307,7 @@ msgstr "crwdns93052:0crwdne93052:0"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "crwdns93078:0crwdne93078:0"
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "crwdns93080:0crwdne93080:0"
@@ -6297,8 +6364,8 @@ msgstr "crwdns93092:0crwdne93092:0"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "crwdns93094:0crwdne93094:0"
@@ -6548,7 +6615,7 @@ msgstr "crwdns128864:0crwdne128864:0"
msgid "Days Before or After"
msgstr "crwdns128866:0crwdne128866:0"
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "crwdns93234:0crwdne93234:0"
@@ -6745,11 +6812,11 @@ msgstr "crwdns128902:0crwdne128902:0"
msgid "Default display currency"
msgstr "crwdns151576:0crwdne151576:0"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "crwdns93318:0{0}crwdne93318:0"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "crwdns93320:0{0}crwdne93320:0"
@@ -6806,11 +6873,12 @@ msgstr "crwdns128908:0crwdne128908:0"
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6818,7 +6886,7 @@ msgstr "crwdns128908:0crwdne128908:0"
msgid "Delete"
msgstr "crwdns93336:0crwdne93336:0"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "crwdns93338:0crwdne93338:0"
@@ -6832,10 +6900,6 @@ msgstr "crwdns158714:0crwdne158714:0"
msgid "Delete Account"
msgstr "crwdns93346:0crwdne93346:0"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "crwdns110880:0crwdne110880:0"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6865,7 +6929,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "crwdns143026:0crwdne143026:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr "crwdns194690:0crwdne194690:0"
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr "crwdns194692:0{0}crwdne194692:0"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "crwdns110882:0crwdne110882:0"
@@ -6893,6 +6965,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "crwdns143034:0crwdne143034:0"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr "crwdns194694:0crwdne194694:0"
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6907,16 +6983,20 @@ 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:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "crwdns93358:0{0}crwdne93358:0"
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "crwdns93360:0{0}crwdne93360:0"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr "crwdns194696:0{0}crwdne194696:0"
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6947,7 +7027,7 @@ msgstr "crwdns128914:0crwdne128914:0"
msgid "Deleted all documents successfully"
msgstr "crwdns127624:0crwdne127624:0"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "crwdns158716:0crwdne158716:0"
@@ -7054,6 +7134,7 @@ msgstr "crwdns93406:0crwdne93406:0"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7136,16 +7217,21 @@ msgstr "crwdns128936:0crwdne128936:0"
msgid "Desk User"
msgstr "crwdns93454:0crwdne93454:0"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr "crwdns161348:0crwdne161348:0"
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "crwdns93456:0crwdne93456:0"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr "crwdns194698:0crwdne194698:0"
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7175,11 +7261,11 @@ msgstr "crwdns93460:0crwdne93460:0"
msgid "Detect CSV type"
msgstr "crwdns152242:0crwdne152242:0"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "crwdns93468:0crwdne93468:0"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "crwdns93470:0crwdne93470:0"
@@ -7327,10 +7413,11 @@ msgstr "crwdns93510:0crwdne93510:0"
msgid "Disabled Auto Reply"
msgstr "crwdns93536:0crwdne93536:0"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "crwdns93538:0crwdne93538:0"
@@ -7344,11 +7431,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "crwdns154399:0crwdne154399:0"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "crwdns127626:0{0}crwdne127626:0"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "crwdns93540:0crwdne93540:0"
@@ -7422,11 +7509,11 @@ msgstr "crwdns158720:0crwdne158720:0"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "crwdns128982:0crwdne128982:0"
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "crwdns93560:0crwdne93560:0"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr "crwdns159974:0{0}crwdne159974:0"
@@ -7434,7 +7521,7 @@ msgstr "crwdns159974:0{0}crwdne159974:0"
msgid "Do you still want to proceed?"
msgstr "crwdns93564:0crwdne93564:0"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "crwdns93566:0crwdne93566:0"
@@ -7489,7 +7576,6 @@ msgstr "crwdns93582:0{0}crwdne93582:0"
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7512,7 +7598,6 @@ msgstr "crwdns93582:0{0}crwdne93582:0"
#: 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/desktop_icon/desktop_icon.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
@@ -7525,7 +7610,7 @@ msgstr "crwdns93582:0{0}crwdne93582:0"
msgid "DocType"
msgstr "crwdns93584:0crwdne93584:0"
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr "crwdns93614:0{0}crwdnd93614:0{1}crwdne93614:0"
@@ -7593,10 +7678,6 @@ msgstr "crwdns111506:0crwdne111506:0"
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "crwdns93642:0crwdne93642:0"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "crwdns93644:0crwdne93644:0"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "crwdns93646:0crwdne93646:0"
@@ -7614,15 +7695,15 @@ msgstr "crwdns128994:0crwdne128994:0"
msgid "DocType required"
msgstr "crwdns93652:0crwdne93652:0"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "crwdns93654:0{0}crwdne93654:0"
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "crwdns93656:0crwdne93656:0"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "crwdns93658:0crwdne93658:0"
@@ -7636,7 +7717,7 @@ msgstr "crwdns148296:0{0}crwdne148296:0"
msgid "Doctype"
msgstr "crwdns93662:0crwdne93662:0"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "crwdns93666:0{0}crwdnd93666:0{1}crwdne93666:0"
@@ -7675,7 +7756,7 @@ msgstr "crwdns128998:0crwdne128998:0"
msgid "Document Follow"
msgstr "crwdns93684:0crwdne93684:0"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "crwdns93688:0crwdne93688:0"
@@ -7698,19 +7779,19 @@ msgstr "crwdns129002:0crwdne129002:0"
msgid "Document Links"
msgstr "crwdns129004:0crwdne129004:0"
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "crwdns93696:0#{0}crwdnd93696:0{1}crwdnd93696:0{2}crwdne93696:0"
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "crwdns93698:0#{0}crwdne93698:0"
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "crwdns93700:0#{0}crwdne93700:0"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr "crwdns93702:0#{0}crwdne93702:0"
@@ -7729,9 +7810,9 @@ msgstr "crwdns93702:0#{0}crwdne93702:0"
msgid "Document Name"
msgstr "crwdns93704:0crwdne93704:0"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "crwdns93718:0crwdne93718:0"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr "crwdns194700:0crwdne194700:0"
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7748,7 +7829,7 @@ msgstr "crwdns93722:0crwdne93722:0"
msgid "Document Naming Settings"
msgstr "crwdns93724:0crwdne93724:0"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "crwdns93726:0crwdne93726:0"
@@ -7852,7 +7933,7 @@ msgstr "crwdns129014:0crwdne129014:0"
#: 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:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7872,11 +7953,11 @@ msgstr "crwdns93754:0crwdne93754:0"
msgid "Document Type and Function are required to create a number card"
msgstr "crwdns93796:0crwdne93796:0"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "crwdns93798:0crwdne93798:0"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "crwdns93800:0crwdne93800:0"
@@ -7905,27 +7986,27 @@ msgid "Document Types and Permissions"
msgstr "crwdns129022:0crwdne129022:0"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "crwdns93812:0crwdne93812:0"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr "crwdns161462:0crwdne161462:0"
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "crwdns148644:0crwdne148644:0"
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "crwdns93814:0crwdne93814:0"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "crwdns93816:0crwdne93816:0"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "crwdns93818:0crwdne93818:0"
@@ -7937,11 +8018,11 @@ msgstr "crwdns110888:0crwdne110888:0"
msgid "Document not Relinked"
msgstr "crwdns93820:0crwdne93820:0"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "crwdns93822:0{0}crwdnd93822:0{1}crwdne93822:0"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "crwdns93824:0{0}crwdnd93824:0{1}crwdne93824:0"
@@ -7957,10 +8038,6 @@ msgstr "crwdns93828:0{0}crwdne93828:0"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "crwdns93830:0{0}crwdnd93830:0{1}crwdnd93830:0{2}crwdne93830:0"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "crwdns93832:0{0}crwdnd93832:0{1}crwdne93832:0"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8098,7 +8175,7 @@ msgstr "crwdns93890:0crwdne93890:0"
msgid "Download PDF"
msgstr "crwdns111456:0crwdne111456:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "crwdns93892:0crwdne93892:0"
@@ -8182,7 +8259,7 @@ msgid "Due Date Based On"
msgstr "crwdns129052:0crwdne129052:0"
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "crwdns93918:0crwdne93918:0"
@@ -8190,19 +8267,15 @@ msgstr "crwdns93918:0crwdne93918:0"
msgid "Duplicate Entry"
msgstr "crwdns93920:0crwdne93920:0"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "crwdns93922:0crwdne93922:0"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "crwdns93924:0crwdne93924:0"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "crwdns155326:0crwdne155326:0"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "crwdns93928:0crwdne93928:0"
@@ -8210,6 +8283,18 @@ msgstr "crwdns93928:0crwdne93928:0"
msgid "Duplicate field"
msgstr "crwdns143054:0crwdne143054:0"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr "crwdns194702:0crwdne194702:0"
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr "crwdns194704:0crwdne194704:0"
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr "crwdns194706:0{0}crwdne194706:0"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8297,9 +8382,10 @@ msgstr "crwdns110894:0crwdne110894:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8310,7 +8396,7 @@ msgstr "crwdns110894:0crwdne110894:0"
msgid "Edit"
msgstr "crwdns93974:0crwdne93974:0"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "crwdns93976:0crwdne93976:0"
@@ -8320,7 +8406,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "crwdns148726:0crwdne148726:0"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "crwdns110896:0crwdne110896:0"
@@ -8341,15 +8427,15 @@ msgstr "crwdns110898:0crwdne110898:0"
msgid "Edit Custom Block"
msgstr "crwdns110900:0crwdne110900:0"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "crwdns93982:0crwdne93982:0"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "crwdns93984:0crwdne93984:0"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "crwdns93986:0crwdne93986:0"
@@ -8363,7 +8449,7 @@ msgstr "crwdns93988:0crwdne93988:0"
msgid "Edit Filters"
msgstr "crwdns110902:0crwdne110902:0"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "crwdns163884:0crwdne163884:0"
@@ -8376,7 +8462,7 @@ msgstr "crwdns143056:0crwdne143056:0"
msgid "Edit Format"
msgstr "crwdns93990:0crwdne93990:0"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr "crwdns93992:0crwdne93992:0"
@@ -8434,7 +8520,7 @@ msgstr "crwdns110912:0crwdne110912:0"
msgid "Edit Shortcut"
msgstr "crwdns110916:0crwdne110916:0"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr "crwdns161354:0crwdne161354:0"
@@ -8457,11 +8543,11 @@ msgstr "crwdns94012:0crwdne94012:0"
msgid "Edit the {0} Doctype"
msgstr "crwdns143064:0{0}crwdne143064:0"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "crwdns94014:0crwdne94014:0"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "crwdns110918:0crwdne110918:0"
@@ -8517,6 +8603,7 @@ msgstr "crwdns129070:0crwdne129070:0"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8532,12 +8619,14 @@ msgstr "crwdns129070:0crwdne129070:0"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8572,7 +8661,7 @@ msgstr "crwdns94072:0crwdne94072:0"
msgid "Email Account Name"
msgstr "crwdns129072:0crwdne129072:0"
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "crwdns94076:0crwdne94076:0"
@@ -8770,7 +8859,7 @@ msgstr "crwdns94174:0crwdne94174:0"
msgid "Email is mandatory to create User Email"
msgstr "crwdns151610:0crwdne151610:0"
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "crwdns94176:0{0}crwdne94176:0"
@@ -8809,7 +8898,7 @@ msgstr "crwdns129108:0crwdne129108:0"
msgid "Embed code copied"
msgstr "crwdns111510:0crwdne111510:0"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr "crwdns155522:0crwdne155522:0"
@@ -8817,7 +8906,7 @@ msgstr "crwdns155522:0crwdne155522:0"
msgid "Empty column"
msgstr "crwdns143066:0crwdne143066:0"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr "crwdns155524:0crwdne155524:0"
@@ -9136,11 +9225,11 @@ msgstr "crwdns94354:0crwdne94354:0"
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "crwdns94356:0crwdne94356:0"
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "crwdns110922:0crwdne110922:0"
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr "crwdns162104:0crwdne162104:0"
@@ -9167,6 +9256,10 @@ msgstr "crwdns129178:0crwdne129178:0"
msgid "Enter folder name"
msgstr "crwdns94368:0crwdne94368:0"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr "crwdns194708:0crwdne194708:0"
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9197,7 +9290,7 @@ msgstr "crwdns94378:0crwdne94378:0"
msgid "Entity Type"
msgstr "crwdns94380:0crwdne94380:0"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "crwdns94382:0crwdne94382:0"
@@ -9231,7 +9324,7 @@ msgstr "crwdns94382:0crwdne94382:0"
msgid "Error"
msgstr "crwdns94384:0crwdne94384:0"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "crwdns94400:0crwdne94400:0"
@@ -9246,12 +9339,12 @@ msgstr "crwdns94406:0crwdne94406:0"
msgid "Error Logs"
msgstr "crwdns143308:0crwdne143308:0"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr "crwdns129186:0crwdne129186:0"
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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"
@@ -9289,15 +9382,15 @@ 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
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr "crwdns155526:0{0}crwdnd155526:0{1}crwdne155526:0"
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr "crwdns161464:0{0}crwdnd161464:0{1}crwdne161464:0"
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr "crwdns162106:0crwdne162106:0"
@@ -9313,15 +9406,15 @@ msgstr "crwdns94430:0{0}crwdne94430:0"
msgid "Error {0}: {1}"
msgstr "crwdns163886:0{0}crwdnd163886:0{1}crwdne163886:0"
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "crwdns149060:0{0}crwdne149060:0"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "crwdns94434:0{0}crwdnd94434:0{1}crwdne94434:0"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "crwdns149064:0{0}crwdnd149064:0#{1}crwdnd149064:0{2}crwdne149064:0"
@@ -9331,6 +9424,12 @@ msgstr "crwdns149064:0{0}crwdnd149064:0#{1}crwdnd149064:0{2}crwdne149064:0"
msgid "Errors"
msgstr "crwdns129188:0crwdne129188:0"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr "crwdns194710:0crwdne194710:0"
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9349,6 +9448,11 @@ msgstr "crwdns129190:0crwdne129190:0"
msgid "Event Frequency"
msgstr "crwdns129192:0crwdne129192:0"
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr "crwdns194712:0crwdne194712:0"
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9374,11 +9478,11 @@ msgstr "crwdns94452:0crwdne94452:0"
msgid "Event Type"
msgstr "crwdns129196:0crwdne129196:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "crwdns112732:0crwdne112732:0"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "crwdns94458:0crwdne94458:0"
@@ -9400,6 +9504,7 @@ msgid "Exact Copies"
msgstr "crwdns129200:0crwdne129200:0"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr "crwdns129202:0crwdne129202:0"
@@ -9470,7 +9575,7 @@ msgstr "crwdns155330:0crwdne155330:0"
msgid "Executing..."
msgstr "crwdns94496:0crwdne94496:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "crwdns94498:0{0}crwdne94498:0"
@@ -9491,21 +9596,21 @@ msgstr "crwdns148650:0crwdne148650:0"
msgid "Expand"
msgstr "crwdns94502:0crwdne94502:0"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "crwdns94504:0crwdne94504:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "crwdns94506:0crwdne94506:0"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "crwdns155530:0{0}crwdne155530:0"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "crwdns110928:0crwdne110928:0"
@@ -9557,20 +9662,21 @@ msgstr "crwdns129232:0crwdne129232:0"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "crwdns94526:0crwdne94526:0"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "crwdns94528:0crwdne94528:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "crwdns94534:0crwdne94534:0"
@@ -9609,11 +9715,11 @@ msgstr "crwdns94552:0{0}crwdne94552:0"
msgid "Export Type"
msgstr "crwdns94554:0crwdne94554:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "crwdns127634:0crwdne127634:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "crwdns127636:0{0}crwdne127636:0"
@@ -9629,6 +9735,10 @@ msgstr "crwdns158976:0crwdne158976:0"
msgid "Export not allowed. You need {0} role to export."
msgstr "crwdns94558:0{0}crwdne94558:0"
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr "crwdns194714:0crwdne194714:0"
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9641,7 +9751,7 @@ msgstr "crwdns129236:0crwdne129236:0"
msgid "Export without main header"
msgstr "crwdns129238:0crwdne129238:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "crwdns94564:0{0}crwdne94564:0"
@@ -9681,7 +9791,7 @@ msgstr "crwdns161356:0crwdne161356:0"
#. Label of the external_link (Data) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "crwdns149118:0crwdne149118:0"
@@ -9730,12 +9840,17 @@ msgstr "crwdns129258:0crwdne129258:0"
msgid "Failed Jobs"
msgstr "crwdns129260:0crwdne129260:0"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr "crwdns194716:0crwdne194716:0"
+
#. 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 "crwdns129262:0crwdne129262:0"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "crwdns94592:0crwdne94592:0"
@@ -9798,7 +9913,7 @@ msgstr "crwdns94614:0crwdne94614:0"
msgid "Failed to get method for command {0} with {1}"
msgstr "crwdns94616:0{0}crwdnd94616:0{1}crwdne94616:0"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "crwdns94618:0{0}crwdnd94618:0{1}crwdne94618:0"
@@ -9810,7 +9925,7 @@ msgstr "crwdns151614:0crwdne151614:0"
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "crwdns94620:0crwdne94620:0"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "crwdns94622:0{0}crwdne94622:0"
@@ -9826,7 +9941,7 @@ msgstr "crwdns143070:0crwdne143070:0"
msgid "Failed to request login to Frappe Cloud"
msgstr "crwdns151804:0crwdne151804:0"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "crwdns94624:0crwdne94624:0"
@@ -9868,7 +9983,7 @@ msgstr "crwdns129268:0crwdne129268:0"
msgid "Fax"
msgstr "crwdns129270:0crwdne129270:0"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "crwdns110930:0crwdne110930:0"
@@ -9928,8 +10043,8 @@ msgstr "crwdns160630:0{0}crwdne160630: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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9939,7 +10054,7 @@ msgstr "crwdns94662:0crwdne94662:0"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "crwdns94678:0crwdne94678:0"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "crwdns94680:0crwdne94680:0"
@@ -9947,7 +10062,7 @@ msgstr "crwdns94680:0crwdne94680:0"
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "crwdns94682:0crwdne94682:0"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr "crwdns162108:0{0}crwdnd162108:0{1}crwdne162108:0"
@@ -9956,7 +10071,7 @@ msgstr "crwdns162108:0{0}crwdnd162108:0{1}crwdne162108:0"
msgid "Field Description"
msgstr "crwdns129278:0crwdne129278:0"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "crwdns94686:0crwdne94686:0"
@@ -10004,7 +10119,7 @@ msgstr "crwdns129286:0crwdne129286:0"
msgid "Field type cannot be changed for {0}"
msgstr "crwdns94702:0{0}crwdne94702:0"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "crwdns94704:0{0}crwdnd94704:0{1}crwdne94704:0"
@@ -10012,11 +10127,11 @@ msgstr "crwdns94704:0{0}crwdnd94704:0{1}crwdne94704:0"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "crwdns94706:0{0}crwdnd94706:0{1}crwdne94706:0"
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "crwdns160494:0{0}crwdne160494:0"
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "crwdns94708:0{0}crwdne94708:0"
@@ -10038,7 +10153,7 @@ msgstr "crwdns142910:0{0}crwdnd142910:0{1}crwdne142910:0"
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "crwdns94710:0crwdne94710:0"
@@ -10047,7 +10162,7 @@ msgstr "crwdns94710:0crwdne94710:0"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "crwdns94726:0{0}crwdnd94726:0{1}crwdnd94726:0{2}crwdnd94726:0{3}crwdne94726:0"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "crwdns94728:0{0}crwdne94728:0"
@@ -10055,7 +10170,7 @@ msgstr "crwdns94728:0{0}crwdne94728:0"
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "crwdns94730:0{0}crwdne94730:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "crwdns94732:0crwdne94732:0"
@@ -10071,7 +10186,7 @@ msgstr "crwdns94736:0{0}crwdne94736:0"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "crwdns94738:0{0}crwdnd94738:0{1}crwdne94738:0"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "crwdns94740:0{0}crwdne94740:0"
@@ -10119,7 +10234,7 @@ msgstr "crwdns94760:0crwdne94760:0"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "crwdns112694:0crwdne112694:0"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "crwdns155532:0crwdne155532:0"
@@ -10143,7 +10258,7 @@ msgstr "crwdns129290:0crwdne129290:0"
msgid "Fieldtype"
msgstr "crwdns129292:0crwdne129292:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "crwdns94776:0{0}crwdnd94776:0{1}crwdne94776:0"
@@ -10219,12 +10334,12 @@ msgstr "crwdns94812:0{0}crwdne94812:0"
msgid "File not attached"
msgstr "crwdns94814:0crwdne94814:0"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "crwdns94816:0{0}crwdne94816:0"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "crwdns94818:0crwdne94818:0"
@@ -10251,12 +10366,17 @@ msgstr "crwdns129306:0crwdne129306:0"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "crwdns94828:0crwdne94828:0"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr "crwdns194718:0crwdne194718:0"
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10275,7 +10395,7 @@ msgstr "crwdns129312:0crwdne129312:0"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "crwdns94836:0crwdne94836:0"
@@ -10284,11 +10404,11 @@ msgstr "crwdns94836:0crwdne94836:0"
msgid "Filter Values"
msgstr "crwdns129314:0crwdne129314:0"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "crwdns155534:0{0}crwdne155534:0"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr "crwdns161360:0{0}crwdne161360:0"
@@ -10307,10 +10427,14 @@ msgid "Filtered Records"
msgstr "crwdns94848:0crwdne94848:0"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "crwdns94850:0{0}crwdne94850:0"
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr "crwdns194720:0{0}crwdne194720:0"
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10334,7 +10458,7 @@ msgstr "crwdns94850:0{0}crwdne94850:0"
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "crwdns129318:0crwdne129318:0"
@@ -10365,10 +10489,6 @@ msgstr "crwdns129324:0crwdne129324:0"
msgid "Filters Section"
msgstr "crwdns129326:0crwdne129326:0"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "crwdns94880:0{0}crwdne94880:0"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "crwdns94882:0crwdne94882:0"
@@ -10386,14 +10506,14 @@ msgstr "crwdns127654:0{0}crwdne127654:0"
msgid "Filters:"
msgstr "crwdns110942:0crwdne110942:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "crwdns94886:0{0}crwdne94886:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "crwdns94888:0{0}crwdnd94888:0{1}crwdne94888:0"
@@ -10481,11 +10601,11 @@ msgstr "crwdns129342:0crwdne129342:0"
msgid "Fold"
msgstr "crwdns129344:0crwdne129344:0"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "crwdns94936:0crwdne94936:0"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "crwdns94938:0crwdne94938:0"
@@ -10514,12 +10634,12 @@ msgstr "crwdns94946:0{0}crwdne94946:0"
msgid "Folio"
msgstr "crwdns129350:0crwdne129350:0"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "crwdns94950:0crwdne94950:0"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "crwdns110944:0crwdne110944:0"
@@ -10527,7 +10647,7 @@ msgstr "crwdns110944:0crwdne110944:0"
msgid "Following Report Filters have missing values:"
msgstr "crwdns94952:0crwdne94952:0"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "crwdns148304:0{0}crwdne148304:0"
@@ -10535,7 +10655,7 @@ msgstr "crwdns148304:0{0}crwdne148304:0"
msgid "Following fields are missing:"
msgstr "crwdns94954:0crwdne94954:0"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "crwdns94956:0crwdne94956:0"
@@ -10543,7 +10663,7 @@ msgstr "crwdns94956:0crwdne94956:0"
msgid "Following fields have missing values"
msgstr "crwdns94958:0crwdne94958:0"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "crwdns94960:0crwdne94960:0"
@@ -10612,7 +10732,7 @@ msgstr "crwdns129368:0crwdne129368:0"
msgid "Footer HTML"
msgstr "crwdns129370:0crwdne129370:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "crwdns94996:0{0}crwdne94996:0"
@@ -10649,7 +10769,7 @@ msgstr "crwdns129380:0crwdne129380:0"
msgid "Footer Template Values"
msgstr "crwdns129382:0crwdne129382:0"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "crwdns95008:0{0}crwdne95008:0"
@@ -10682,15 +10802,6 @@ msgstr "crwdns95016:0crwdne95016:0"
msgid "For Example: {} Open"
msgstr "crwdns95018:0crwdne95018:0"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "crwdns129390:0crwdne129390:0"
-
#. 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'
@@ -10714,20 +10825,16 @@ msgstr "crwdns129392:0crwdne129392:0"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "crwdns160496:0{{ doc.name }}crwdne160496:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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"
-#: 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 "crwdns110948:0crwdne110948:0"
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "crwdns142878:0crwdne142878:0"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "crwdns95036:0{0}crwdne95036:0"
@@ -10755,7 +10862,7 @@ msgstr "crwdns129400:0crwdne129400:0"
msgid "For updating, you can update only selective columns."
msgstr "crwdns95048:0crwdne95048:0"
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "crwdns95050:0{0}crwdnd95050:0{1}crwdnd95050:0{2}crwdnd95050:0{3}crwdne95050:0"
@@ -10805,7 +10912,8 @@ msgstr "crwdns95068:0crwdne95068:0"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "crwdns95070:0crwdne95070:0"
@@ -10984,7 +11092,7 @@ msgstr "crwdns129428:0crwdne129428:0"
msgid "From"
msgstr "crwdns95150:0crwdne95150:0"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "crwdns154401:0crwdne154401:0"
@@ -11005,7 +11113,7 @@ msgstr "crwdns95156:0crwdne95156:0"
msgid "From Date Field"
msgstr "crwdns129430:0crwdne129430:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "crwdns95162:0crwdne95162:0"
@@ -11046,7 +11154,7 @@ msgstr "crwdns129436:0crwdne129436:0"
msgid "Full Name"
msgstr "crwdns95172:0crwdne95172:0"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "crwdns95184:0crwdne95184:0"
@@ -11059,7 +11167,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "crwdns95188:0crwdne95188:0"
@@ -11068,11 +11176,11 @@ msgstr "crwdns95188:0crwdne95188:0"
msgid "Function Based On"
msgstr "crwdns95192:0crwdne95192:0"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "crwdns95194:0{0}crwdne95194:0"
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "crwdns155538:0{0}crwdne155538:0"
@@ -11137,11 +11245,11 @@ msgstr "crwdns111514:0crwdne111514:0"
msgid "Generate Keys"
msgstr "crwdns129448:0crwdne129448:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "crwdns95224:0crwdne95224:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "crwdns95226:0crwdne95226:0"
@@ -11151,8 +11259,8 @@ msgstr "crwdns95226:0crwdne95226:0"
msgid "Generate Separate Documents For Each Assignee"
msgstr "crwdns157316:0crwdne157316:0"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "crwdns95228:0crwdne95228:0"
@@ -11263,7 +11371,7 @@ msgstr "crwdns95268:0crwdne95268:0"
msgid "Global Unsubscribe"
msgstr "crwdns129464:0crwdne129464:0"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "crwdns95272:0crwdne95272:0"
@@ -11323,7 +11431,7 @@ msgstr "crwdns95294:0{0}crwdne95294:0"
msgid "Go to {0} Page"
msgstr "crwdns95296:0{0}crwdne95296:0"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "crwdns95298:0crwdne95298:0"
@@ -11549,7 +11657,7 @@ msgstr "crwdns129502:0crwdne129502:0"
msgid "Group By field is required to create a dashboard chart"
msgstr "crwdns95408:0crwdne95408:0"
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "crwdns155540:0crwdne155540:0"
@@ -11629,6 +11737,10 @@ msgstr "crwdns95422:0crwdne95422:0"
msgid "HTML Editor"
msgstr "crwdns129512:0crwdne129512:0"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr "crwdns194722:0crwdne194722:0"
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11717,7 +11829,7 @@ msgstr "crwdns129530:0crwdne129530:0"
msgid "Header HTML"
msgstr "crwdns129532:0crwdne129532:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "crwdns95488:0{0}crwdne95488:0"
@@ -11753,7 +11865,7 @@ msgstr "crwdns110960:0crwdne110960:0"
msgid "Headers"
msgstr "crwdns129540:0crwdne129540:0"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "crwdns155504:0crwdne155504:0"
@@ -11790,7 +11902,7 @@ msgstr "crwdns157318:0crwdne157318:0"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11845,7 +11957,7 @@ msgstr "crwdns129552:0crwdne129552:0"
msgid "Helvetica Neue"
msgstr "crwdns129554:0crwdne129554:0"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "crwdns95544:0crwdne95544:0"
@@ -11881,9 +11993,9 @@ msgstr "crwdns110964:0crwdne110964:0"
msgid "Hidden Fields"
msgstr "crwdns129556:0crwdne129556:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "crwdns156080:0{0}crwdne156080:0"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
+msgstr "crwdns194724:0{0}crwdne194724:0"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -12048,7 +12160,7 @@ msgstr "crwdns95642:0crwdne95642:0"
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12131,18 +12243,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr "crwdns148656:0crwdne148656:0"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12193,7 +12305,6 @@ msgid "IP Address"
msgstr "crwdns129610:0crwdne129610:0"
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12214,11 +12325,16 @@ msgstr "crwdns129610:0crwdne129610:0"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "crwdns95694:0crwdne95694:0"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr "crwdns194726:0crwdne194726:0"
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12229,6 +12345,10 @@ msgstr "crwdns161364:0crwdne161364:0"
msgid "Icon Type"
msgstr "crwdns161366:0crwdne161366:0"
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+msgstr "crwdns194728:0crwdne194728:0"
+
#. 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"
@@ -12260,13 +12380,13 @@ msgstr "crwdns129618:0crwdne129618:0"
msgid "If Checked workflow status will not override status in list view"
msgstr "crwdns129620:0crwdne129620:0"
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "crwdns95728:0crwdne95728:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "crwdns110966:0crwdne110966:0"
@@ -12393,12 +12513,20 @@ msgstr "crwdns129656:0crwdne129656:0"
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr "crwdns129658:0crwdne129658:0"
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr "crwdns194730:0crwdne194730:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr "crwdns194732:0crwdne194732:0"
+
#. 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 "crwdns129662:0crwdne129662:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "crwdns110968:0crwdne110968:0"
@@ -12498,7 +12626,7 @@ msgstr "crwdns129678:0crwdne129678:0"
msgid "Ignored Apps"
msgstr "crwdns129680:0crwdne129680:0"
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "crwdns95818:0{0}crwdne95818:0"
@@ -12564,11 +12692,11 @@ msgstr "crwdns142848:0crwdne142848:0"
msgid "Image Width"
msgstr "crwdns129690:0crwdne129690:0"
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "crwdns95852:0crwdne95852:0"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "crwdns95854:0crwdne95854:0"
@@ -12602,7 +12730,7 @@ msgstr "crwdns111412:0{0}crwdne111412:0"
msgid "Impersonated by {0}"
msgstr "crwdns111414:0{0}crwdne111414:0"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "crwdns163890:0{0}crwdne163890:0"
@@ -12620,11 +12748,12 @@ msgstr "crwdns129692:0crwdne129692:0"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "crwdns95866:0crwdne95866:0"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "crwdns95868:0crwdne95868:0"
@@ -12847,15 +12976,15 @@ msgid "Include Web View Link in Email"
msgstr "crwdns129732:0crwdne129732:0"
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "crwdns95980:0crwdne95980:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr "crwdns156082:0crwdne156082:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "crwdns95982:0crwdne95982:0"
@@ -12922,11 +13051,11 @@ msgstr "crwdns96004:0crwdne96004:0"
msgid "Incorrect Verification code"
msgstr "crwdns96006:0crwdne96006:0"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "crwdns148658:0{0}crwdne148658:0"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "crwdns148660:0crwdne148660:0"
@@ -12978,7 +13107,7 @@ msgstr "crwdns129750:0crwdne129750:0"
msgid "Indicator Color"
msgstr "crwdns129752:0crwdne129752:0"
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "crwdns96030:0crwdne96030:0"
@@ -13025,15 +13154,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "crwdns96046:0crwdne96046:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "crwdns96050:0{0}crwdne96050:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "crwdns96052:0{0}crwdnd96052:0{1}crwdnd96052:0{2}crwdne96052:0"
@@ -13063,8 +13192,8 @@ msgstr "crwdns129762:0crwdne129762:0"
msgid "Instagram"
msgstr "crwdns157324:0crwdne157324:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "crwdns96062:0{0}crwdne96062:0"
@@ -13090,15 +13219,15 @@ msgstr "crwdns96070:0crwdne96070:0"
msgid "Instructions"
msgstr "crwdns129764:0crwdne129764:0"
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "crwdns110976:0crwdne110976:0"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "crwdns96072:0{0}crwdne96072:0"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "crwdns96074:0{0}crwdne96074:0"
@@ -13166,7 +13295,7 @@ msgstr "crwdns110978:0crwdne110978:0"
msgid "Intermediate"
msgstr "crwdns129772:0crwdne129772:0"
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "crwdns96112:0crwdne96112:0"
@@ -13175,6 +13304,11 @@ msgstr "crwdns96112:0crwdne96112:0"
msgid "Internal record of document shares"
msgstr "crwdns111518:0crwdne111518:0"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+msgstr "crwdns194734:0crwdne194734:0"
+
#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Intro Video URL"
@@ -13214,13 +13348,13 @@ msgid "Invalid"
msgstr "crwdns129784:0crwdne129784:0"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "crwdns96130:0crwdne96130:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "crwdns96132:0{0}crwdne96132:0"
@@ -13260,7 +13394,7 @@ msgstr "crwdns96144:0crwdne96144:0"
msgid "Invalid DocType"
msgstr "crwdns96146:0crwdne96146:0"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "crwdns96148:0{0}crwdne96148:0"
@@ -13268,7 +13402,8 @@ msgstr "crwdns96148:0{0}crwdne96148:0"
msgid "Invalid Doctype"
msgstr "crwdns157326:0crwdne157326:0"
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "crwdns96150:0crwdne96150:0"
@@ -13276,8 +13411,8 @@ msgstr "crwdns96150:0crwdne96150:0"
msgid "Invalid File URL"
msgstr "crwdns96152:0crwdne96152:0"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr "crwdns155544:0crwdne155544:0"
@@ -13301,7 +13436,7 @@ msgstr "crwdns96160:0crwdne96160:0"
msgid "Invalid Login Token"
msgstr "crwdns96162:0crwdne96162:0"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "crwdns110982:0crwdne110982:0"
@@ -13309,7 +13444,7 @@ msgstr "crwdns110982:0crwdne110982:0"
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "crwdns96164:0crwdne96164:0"
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "crwdns96166:0crwdne96166:0"
@@ -13320,8 +13455,8 @@ msgstr "crwdns96166:0crwdne96166:0"
msgid "Invalid Operation"
msgstr "crwdns96168:0crwdne96168:0"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "crwdns96170:0crwdne96170:0"
@@ -13333,7 +13468,7 @@ msgstr "crwdns96172:0{0}crwdne96172:0"
msgid "Invalid Output Format"
msgstr "crwdns96174:0crwdne96174:0"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "crwdns127664:0crwdne127664:0"
@@ -13346,11 +13481,11 @@ msgstr "crwdns96176:0crwdne96176:0"
msgid "Invalid Password"
msgstr "crwdns96178:0crwdne96178:0"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "crwdns96180:0crwdne96180:0"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "crwdns96182:0crwdne96182:0"
@@ -13359,7 +13494,7 @@ msgstr "crwdns96182:0crwdne96182:0"
msgid "Invalid Search Field {0}"
msgstr "crwdns96184:0{0}crwdne96184:0"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "crwdns96186:0crwdne96186:0"
@@ -13378,7 +13513,7 @@ msgstr "crwdns96190:0crwdne96190:0"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "crwdns96192:0crwdne96192:0"
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "crwdns152058:0crwdne152058:0"
@@ -13390,7 +13525,7 @@ msgstr "crwdns96194:0crwdne96194:0"
msgid "Invalid aggregate function"
msgstr "crwdns96196:0crwdne96196:0"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "crwdns155546:0{0}crwdne155546:0"
@@ -13398,19 +13533,19 @@ msgstr "crwdns155546:0{0}crwdne155546:0"
msgid "Invalid app"
msgstr "crwdns157328:0crwdne157328:0"
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
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:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr "crwdns161370:0{0}crwdne161370:0"
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "crwdns155552:0{0}crwdne155552:0"
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr "crwdns155554:0{0}crwdne155554:0"
@@ -13418,18 +13553,22 @@ msgstr "crwdns155554:0{0}crwdne155554:0"
msgid "Invalid column"
msgstr "crwdns96198:0crwdne96198:0"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr "crwdns155556:0{0}crwdne155556:0"
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "crwdns155558:0{0}crwdne155558:0"
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "crwdns96200:0crwdne96200:0"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr "crwdns194736:0{0}crwdne194736:0"
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "crwdns96202:0{0}crwdne96202:0"
@@ -13438,11 +13577,11 @@ msgstr "crwdns96202:0{0}crwdne96202:0"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "crwdns96204:0{0}crwdnd96204:0{1}crwdne96204:0"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
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:1184
+#: frappe/database/query.py:1227
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"
@@ -13450,11 +13589,11 @@ msgstr "crwdns155562:0{0}crwdnd155562:0{1}crwdne155562:0"
msgid "Invalid field name {0}"
msgstr "crwdns96206:0{0}crwdne96206:0"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr "crwdns155566:0{0}crwdne155566:0"
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "crwdns96208:0{0}crwdne96208:0"
@@ -13462,11 +13601,11 @@ msgstr "crwdns96208:0{0}crwdne96208:0"
msgid "Invalid file path: {0}"
msgstr "crwdns96210:0{0}crwdne96210:0"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "crwdns155568:0{0}crwdne155568:0"
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "crwdns155570:0{0}crwdne155570:0"
@@ -13474,7 +13613,7 @@ msgstr "crwdns155570:0{0}crwdne155570:0"
msgid "Invalid filter: {0}"
msgstr "crwdns96212:0{0}crwdne96212:0"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "crwdns155572:0{0}crwdne155572:0"
@@ -13491,19 +13630,19 @@ msgstr "crwdns96216:0{0}crwdne96216:0"
msgid "Invalid key"
msgstr "crwdns157332:0crwdne157332:0"
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "crwdns96218:0crwdne96218:0"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "crwdns96220:0crwdne96220:0"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr "crwdns158722:0crwdne158722:0"
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr "crwdns161372:0crwdne161372:0"
@@ -13527,11 +13666,11 @@ msgstr "crwdns160166:0crwdne160166:0"
msgid "Invalid role"
msgstr "crwdns157334:0crwdne157334:0"
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr "crwdns155576:0{0}crwdne155576:0"
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "crwdns155578:0{0}crwdne155578:0"
@@ -13548,24 +13687,24 @@ msgstr "crwdns148738:0crwdne148738:0"
msgid "Invalid username or password"
msgstr "crwdns96232:0crwdne96232:0"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "crwdns112698:0crwdne112698:0"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "crwdns96234:0crwdne96234:0"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "crwdns127666:0crwdne127666:0"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "crwdns96236:0{0}crwdne96236:0"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr "crwdns161374:0{0}crwdne161374:0"
@@ -13693,7 +13832,7 @@ msgstr "crwdns129802:0crwdne129802:0"
msgid "Is Folder"
msgstr "crwdns129804:0crwdne129804:0"
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "crwdns96282:0crwdne96282:0"
@@ -13764,7 +13903,7 @@ msgstr "crwdns129824:0crwdne129824:0"
msgid "Is Published Field"
msgstr "crwdns129826:0crwdne129826:0"
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "crwdns96308:0crwdne96308:0"
@@ -14009,8 +14148,8 @@ msgstr "crwdns160632:0crwdne160632:0"
msgid "Join video conference with {0}"
msgstr "crwdns96422:0{0}crwdne96422:0"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "crwdns96424:0crwdne96424:0"
@@ -14333,7 +14472,7 @@ msgstr "crwdns129926:0crwdne129926:0"
msgid "Label and Type"
msgstr "crwdns129928:0crwdne129928:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "crwdns96572:0crwdne96572:0"
@@ -14356,7 +14495,7 @@ msgstr "crwdns96576:0crwdne96576:0"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "crwdns96578:0crwdne96578:0"
@@ -14402,6 +14541,14 @@ msgstr "crwdns155032:0crwdne155032:0"
msgid "Last Active"
msgstr "crwdns129938:0crwdne129938:0"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr "crwdns194738:0crwdne194738:0"
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+msgstr "crwdns194740:0{0}crwdne194740:0"
+
#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Last Execution"
@@ -14526,6 +14673,11 @@ msgstr "crwdns129970:0crwdne129970:0"
msgid "Last synced {0}"
msgstr "crwdns96636:0{0}crwdne96636:0"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "crwdns194742:0crwdne194742:0"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "crwdns96638:0crwdne96638:0"
@@ -14553,9 +14705,15 @@ msgstr "crwdns96658:0crwdne96658:0"
msgid "Ledger"
msgstr "crwdns129974:0crwdne129974:0"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14649,7 +14807,7 @@ msgstr "crwdns129986:0crwdne129986:0"
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14678,7 +14836,7 @@ msgstr "crwdns129992:0crwdne129992:0"
msgid "Letter Head Scripts"
msgstr "crwdns110988:0crwdne110988:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "crwdns96712:0crwdne96712:0"
@@ -14700,7 +14858,7 @@ msgstr "crwdns129994:0crwdne129994:0"
msgid "Level"
msgstr "crwdns96716:0crwdne96716:0"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "crwdns96724:0crwdne96724:0"
@@ -14741,7 +14899,7 @@ msgstr "crwdns96740:0crwdne96740:0"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "crwdns96742:0crwdne96742:0"
@@ -14765,7 +14923,7 @@ msgstr "crwdns130010:0crwdne130010:0"
msgid "Limit"
msgstr "crwdns130012:0crwdne130012:0"
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr "crwdns155582:0crwdne155582:0"
@@ -14891,7 +15049,7 @@ msgstr "crwdns130038:0crwdne130038:0"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -14909,7 +15067,7 @@ msgstr "crwdns110990:0crwdne110990:0"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr "crwdns130042:0crwdne130042:0"
@@ -14952,6 +15110,7 @@ msgstr "crwdns157350:0crwdne157350:0"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14973,8 +15132,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr "crwdns130052:0crwdne130052:0"
@@ -15004,7 +15163,7 @@ msgstr "crwdns96864:0crwdne96864:0"
msgid "List Settings"
msgstr "crwdns130060:0crwdne130060:0"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "crwdns96868:0crwdne96868:0"
@@ -15018,7 +15177,7 @@ msgstr "crwdns142854:0crwdne142854:0"
msgid "List View Settings"
msgstr "crwdns96876:0crwdne96876:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "crwdns96878:0crwdne96878:0"
@@ -15045,7 +15204,7 @@ msgstr "crwdns111524:0crwdne111524:0"
msgid "List setting message"
msgstr "crwdns151426:0crwdne151426:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "crwdns96884:0crwdne96884:0"
@@ -15054,7 +15213,7 @@ msgstr "crwdns96884:0crwdne96884:0"
msgid "Load Balancing"
msgstr "crwdns130066:0crwdne130066:0"
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15072,10 +15231,10 @@ msgstr "crwdns143088:0crwdne143088:0"
#: 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "crwdns96892:0crwdne96892:0"
@@ -15092,8 +15251,8 @@ msgid "Loading versions..."
msgstr "crwdns110996:0crwdne110996:0"
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15103,7 +15262,8 @@ msgid "Loading..."
msgstr "crwdns96898:0crwdne96898:0"
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr "crwdns130068:0crwdne130068:0"
@@ -15176,6 +15336,11 @@ msgstr "crwdns96920:0crwdne96920:0"
msgid "Login"
msgstr "crwdns96922:0crwdne96922:0"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr "crwdns194744:0crwdne194744:0"
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15251,7 +15416,7 @@ msgstr "crwdns96958:0crwdne96958:0"
msgid "Login to {0}"
msgstr "crwdns96960:0{0}crwdne96960:0"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "crwdns148306:0crwdne148306:0"
@@ -15318,8 +15483,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr "crwdns130096:0crwdne130096:0"
#. 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
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "crwdns96982:0crwdne96982:0"
@@ -15350,7 +15514,7 @@ msgstr "crwdns96996:0crwdne96996:0"
msgid "Looks like you haven’t added any third party apps."
msgstr "crwdns96998:0crwdne96998:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "crwdns111000:0crwdne111000:0"
@@ -15500,7 +15664,7 @@ msgstr "crwdns97062:0{0}crwdnd97062:0{1}crwdne97062:0"
msgid "Mandatory fields required in {0}"
msgstr "crwdns97064:0{0}crwdne97064:0"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "crwdns97066:0crwdne97066:0"
@@ -15562,7 +15726,7 @@ msgstr "crwdns130134:0crwdne130134:0"
msgid "MariaDB Variables"
msgstr "crwdns130136:0crwdne130136:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "crwdns97086:0crwdne97086:0"
@@ -15614,9 +15778,12 @@ msgstr "crwdns148930:0crwdne148930:0"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "crwdns160246:0crwdne160246:0"
@@ -15678,7 +15845,7 @@ msgstr "crwdns130156:0crwdne130156:0"
msgid "Max signups allowed per hour"
msgstr "crwdns158978:0crwdne158978:0"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "crwdns97132:0{0}crwdne97132:0"
@@ -15699,20 +15866,27 @@ msgstr "crwdns97142:0{0}crwdne97142:0"
msgid "Maximum {0} rows allowed"
msgstr "crwdns97146:0{0}crwdne97146:0"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr "crwdns194746:0crwdne194746:0"
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "crwdns97148:0crwdne97148:0"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "crwdns111006:0crwdne111006:0"
+msgid "Meaning of Different Permission Types"
+msgstr "crwdns194748:0crwdne194748:0"
#. 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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15756,12 +15930,12 @@ msgstr "crwdns130174:0crwdne130174:0"
msgid "Mentions"
msgstr "crwdns130176:0crwdne130176:0"
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "crwdns97168:0crwdne97168:0"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "crwdns97170:0crwdne97170:0"
@@ -15795,13 +15969,13 @@ msgstr "crwdns97172:0crwdne97172:0"
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "crwdns97174:0crwdne97174:0"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "crwdns97184:0crwdne97184:0"
@@ -15832,7 +16006,7 @@ msgstr "crwdns148312:0crwdne148312:0"
msgid "Message Type"
msgstr "crwdns130188:0crwdne130188:0"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "crwdns97214:0crwdne97214:0"
@@ -15929,7 +16103,7 @@ msgstr "crwdns155978:0crwdne155978:0"
msgid "Method"
msgstr "crwdns130200:0crwdne130200:0"
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "crwdns142858:0crwdne142858:0"
@@ -16018,7 +16192,7 @@ msgstr "crwdns148670:0crwdne148670:0"
msgid "Missing DocType"
msgstr "crwdns97290:0crwdne97290:0"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "crwdns97292:0crwdne97292:0"
@@ -16038,7 +16212,7 @@ msgstr "crwdns97298:0crwdne97298:0"
msgid "Missing Value"
msgstr "crwdns97300:0crwdne97300:0"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16103,7 +16277,7 @@ msgstr "crwdns130212:0crwdne130212: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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16150,9 +16324,8 @@ msgstr "crwdns97378:0crwdne97378:0"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "crwdns97382:0crwdne97382:0"
@@ -16169,7 +16342,7 @@ msgstr "crwdns97390:0crwdne97390:0"
msgid "Module to Export"
msgstr "crwdns97392:0crwdne97392:0"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "crwdns97394:0crwdne97394:0"
@@ -16284,7 +16457,7 @@ msgstr "crwdns97450:0{0}crwdne97450:0"
msgid "More content for the bottom of the page."
msgstr "crwdns130232:0crwdne130232:0"
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "crwdns97454:0crwdne97454:0"
@@ -16299,7 +16472,7 @@ msgstr "crwdns97456:0crwdne97456:0"
msgid "Move"
msgstr "crwdns97458:0crwdne97458:0"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "crwdns97460:0crwdne97460:0"
@@ -16311,19 +16484,19 @@ msgstr "crwdns97462:0crwdne97462:0"
msgid "Move current and all subsequent sections to a new tab"
msgstr "crwdns143090:0crwdne143090:0"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "crwdns97464:0crwdne97464:0"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "crwdns97466:0crwdne97466:0"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "crwdns97468:0crwdne97468:0"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "crwdns97470:0crwdne97470:0"
@@ -16335,7 +16508,7 @@ msgstr "crwdns143092:0crwdne143092:0"
msgid "Move the current field and the following fields to a new column"
msgstr "crwdns143094:0crwdne143094:0"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "crwdns97472:0crwdne97472:0"
@@ -16453,7 +16626,7 @@ msgstr "crwdns111010:0crwdne111010:0"
msgid "Name already taken, please set a new name"
msgstr "crwdns97518:0crwdne97518:0"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "crwdns97520:0{0}crwdne97520:0"
@@ -16465,7 +16638,7 @@ msgstr "crwdns97522:0crwdne97522:0"
msgid "Name of the new Print Format"
msgstr "crwdns97524:0crwdne97524:0"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "crwdns97526:0{0}crwdnd97526:0{1}crwdne97526:0"
@@ -16504,7 +16677,7 @@ msgstr "crwdns130258:0crwdne130258:0"
msgid "Naming Series"
msgstr "crwdns130260:0crwdne130260:0"
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "crwdns97546:0crwdne97546:0"
@@ -16528,11 +16701,6 @@ msgstr "crwdns97552:0crwdne97552:0"
msgid "Navbar Settings"
msgstr "crwdns97554:0crwdne97554:0"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-msgstr "crwdns161384:0crwdne161384:0"
-
#. Label of the navbar_template (Link) field in DocType 'Website Settings'
#. Label of the navbar_template_section (Section Break) field in DocType
#. 'Website Settings'
@@ -16546,39 +16714,44 @@ msgstr "crwdns130264:0crwdne130264:0"
msgid "Navbar Template Values"
msgstr "crwdns130266:0crwdne130266:0"
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "crwdns97564:0crwdne97564:0"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "crwdns97566:0crwdne97566:0"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "crwdns97568:0crwdne97568:0"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr "crwdns194750:0crwdne194750:0"
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr "crwdns130268:0crwdne130268:0"
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "crwdns159976:0crwdne159976:0"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "crwdns97572:0crwdne97572:0"
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "crwdns97576:0crwdne97576:0"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr "crwdns155586:0crwdne155586:0"
@@ -16600,6 +16773,7 @@ msgstr "crwdns159978:0crwdne159978:0"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16616,7 +16790,7 @@ msgstr "crwdns97590:0crwdne97590:0"
#: 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "crwdns111012:0crwdne111012:0"
@@ -16632,8 +16806,8 @@ msgstr "crwdns111016:0crwdne111016:0"
msgid "New Custom Block"
msgstr "crwdns111018:0crwdne111018:0"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "crwdns97594:0crwdne97594:0"
@@ -16682,7 +16856,7 @@ msgstr "crwdns97612:0crwdne97612:0"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "crwdns97614:0crwdne97614:0"
@@ -16703,8 +16877,8 @@ msgstr "crwdns111024:0crwdne111024:0"
msgid "New Password"
msgstr "crwdns97622:0crwdne97622:0"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "crwdns97624:0crwdne97624:0"
@@ -16731,8 +16905,8 @@ msgstr "crwdns111028:0crwdne111028:0"
msgid "New Users (Last 30 days)"
msgstr "crwdns130272:0crwdne130272:0"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "crwdns111030:0crwdne111030:0"
@@ -16740,7 +16914,7 @@ msgstr "crwdns111030:0crwdne111030:0"
msgid "New Workflow Name"
msgstr "crwdns97628:0crwdne97628:0"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "crwdns97630:0crwdne97630:0"
@@ -16783,32 +16957,32 @@ msgstr "crwdns130274:0crwdne130274:0"
msgid "New value to be set"
msgstr "crwdns130276:0crwdne130276:0"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "crwdns97640:0{0}crwdne97640:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "crwdns97642:0{0}crwdne97642:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
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:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "crwdns97646:0{0}crwdnd97646:0{1}crwdne97646:0"
@@ -16820,7 +16994,7 @@ msgstr "crwdns97648:0{0}crwdnd97648:0{1}crwdne97648:0"
msgid "New {} releases for the following apps are available"
msgstr "crwdns97650:0crwdne97650:0"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "crwdns97652:0{0}crwdne97652:0"
@@ -16841,7 +17015,7 @@ msgstr "crwdns97662:0crwdne97662:0"
msgid "Next"
msgstr "crwdns97672:0crwdne97672:0"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "crwdns111032:0crwdne111032:0"
@@ -16868,12 +17042,16 @@ msgstr "crwdns155040:0crwdne155040:0"
msgid "Next Action Email Template"
msgstr "crwdns130278:0crwdne130278:0"
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+msgstr "crwdns194752:0crwdne194752:0"
+
#. 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 "crwdns130280:0crwdne130280:0"
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr "crwdns160706:0crwdne160706:0"
@@ -16940,20 +17118,24 @@ msgstr "crwdns130294:0crwdne130294:0"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "crwdns97696:0crwdne97696:0"
@@ -17023,7 +17205,7 @@ msgstr "crwdns97726:0crwdne97726:0"
msgid "No Google Calendar Event to sync."
msgstr "crwdns97728:0crwdne97728:0"
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "crwdns97730:0crwdne97730:0"
@@ -17042,23 +17224,23 @@ msgstr "crwdns97734:0{0}crwdne97734:0"
msgid "No Label"
msgstr "crwdns111044:0crwdne111044:0"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: 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 "crwdns97736:0crwdne97736:0"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "crwdns97738:0{0}crwdne97738:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "crwdns111046:0crwdne111046:0"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "crwdns97740:0crwdne97740:0"
@@ -17078,11 +17260,11 @@ msgstr "crwdns97746:0crwdne97746:0"
msgid "No Preview"
msgstr "crwdns111048:0crwdne111048:0"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "crwdns111050:0crwdne111050:0"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "crwdns97748:0crwdne97748:0"
@@ -17090,7 +17272,7 @@ msgstr "crwdns97748:0crwdne97748:0"
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "crwdns111052:0crwdne111052:0"
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "crwdns97750:0crwdne97750:0"
@@ -17098,7 +17280,7 @@ msgstr "crwdns97750:0crwdne97750:0"
msgid "No Results found"
msgstr "crwdns97752:0crwdne97752:0"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "crwdns97754:0crwdne97754:0"
@@ -17114,7 +17296,7 @@ msgstr "crwdns127876:0crwdne127876:0"
msgid "No Tags"
msgstr "crwdns97758:0crwdne97758:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "crwdns111054:0crwdne111054:0"
@@ -17134,7 +17316,7 @@ msgstr "crwdns127878:0crwdne127878:0"
msgid "No changes in document"
msgstr "crwdns97764:0crwdne97764:0"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "crwdns148682:0crwdne148682:0"
@@ -17198,7 +17380,7 @@ msgstr "crwdns111064:0crwdne111064:0"
msgid "No file attached"
msgstr "crwdns97788:0crwdne97788:0"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "crwdns111066:0crwdne111066:0"
@@ -17246,11 +17428,11 @@ msgstr "crwdns130300:0crwdne130300:0"
msgid "No of Sent SMS"
msgstr "crwdns130302:0crwdne130302:0"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "crwdns97808:0{0}crwdne97808:0"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "crwdns97810:0{0}crwdnd97810:0{1}crwdne97810:0"
@@ -17259,7 +17441,7 @@ msgstr "crwdns97810:0{0}crwdnd97810:0{1}crwdne97810:0"
msgid "No permission to read {0}"
msgstr "crwdns97812:0{0}crwdne97812:0"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "crwdns97814:0{0}crwdnd97814:0{1}crwdnd97814:0{2}crwdne97814:0"
@@ -17275,7 +17457,7 @@ msgstr "crwdns97818:0{0}crwdne97818:0"
msgid "No records tagged."
msgstr "crwdns111072:0crwdne111072:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "crwdns97820:0crwdne97820:0"
@@ -17283,7 +17465,7 @@ msgstr "crwdns97820:0crwdne97820:0"
msgid "No rows"
msgstr "crwdns148314:0crwdne148314:0"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr "crwdns161386:0crwdne161386:0"
@@ -17295,11 +17477,12 @@ msgstr "crwdns143098:0crwdne143098:0"
msgid "No template found at path: {0}"
msgstr "crwdns97822:0{0}crwdne97822:0"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr "crwdns164040:0{0}crwdne164040:0"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "crwdns111074:0crwdne111074:0"
@@ -17311,7 +17494,7 @@ msgstr "crwdns97824:0{0}crwdne97824:0"
msgid "No {0} found"
msgstr "crwdns111078:0{0}crwdne111078:0"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "crwdns97826:0{0}crwdnd97826:0{0}crwdne97826:0"
@@ -17320,7 +17503,7 @@ msgid "No {0} mail"
msgstr "crwdns97828:0{0}crwdne97828:0"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "crwdns111418:0crwdne111418:0"
@@ -17363,12 +17546,12 @@ msgstr "crwdns130308:0crwdne130308:0"
msgid "Normalized Query"
msgstr "crwdns130310:0crwdne130310:0"
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "crwdns97846:0crwdne97846:0"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "crwdns111080:0crwdne111080:0"
@@ -17410,7 +17593,7 @@ msgstr "crwdns97862:0crwdne97862:0"
msgid "Not Nullable"
msgstr "crwdns130314:0crwdne130314:0"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17419,7 +17602,7 @@ msgstr "crwdns130314:0crwdne130314:0"
msgid "Not Permitted"
msgstr "crwdns97866:0crwdne97866:0"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "crwdns97868:0{0}crwdne97868:0"
@@ -17428,8 +17611,8 @@ msgstr "crwdns97868:0{0}crwdne97868:0"
msgid "Not Published"
msgstr "crwdns97870:0crwdne97870:0"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17449,7 +17632,7 @@ msgstr "crwdns97874:0crwdne97874:0"
msgid "Not Sent"
msgstr "crwdns97876:0crwdne97876:0"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "crwdns97882:0crwdne97882:0"
@@ -17463,15 +17646,15 @@ msgstr "crwdns97884:0crwdne97884:0"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "crwdns97886:0crwdne97886:0"
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "crwdns97888:0crwdne97888:0"
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "crwdns97890:0crwdne97890:0"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "crwdns111082:0crwdne111082:0"
@@ -17479,7 +17662,7 @@ msgstr "crwdns111082:0crwdne111082:0"
msgid "Not active"
msgstr "crwdns97892:0crwdne97892:0"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "crwdns97894:0{0}crwdnd97894:0{1}crwdne97894:0"
@@ -17499,11 +17682,11 @@ msgstr "crwdns97900:0crwdne97900:0"
msgid "Not allowed to print draft documents"
msgstr "crwdns97902:0crwdne97902:0"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "crwdns97904:0crwdne97904:0"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "crwdns97906:0crwdne97906:0"
@@ -17516,11 +17699,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "crwdns97910:0crwdne97910:0"
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "crwdns97912:0crwdne97912:0"
@@ -17548,7 +17731,7 @@ msgstr "crwdns97920:0crwdne97920:0"
msgid "Note:"
msgstr "crwdns97922:0crwdne97922:0"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "crwdns97928:0crwdne97928:0"
@@ -17580,7 +17763,7 @@ msgstr "crwdns97936:0{0}crwdne97936:0"
msgid "Notes:"
msgstr "crwdns97938:0crwdne97938:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "crwdns112738:0crwdne112738:0"
@@ -17592,8 +17775,8 @@ msgstr "crwdns97940:0crwdne97940:0"
msgid "Nothing left to undo"
msgstr "crwdns97942:0crwdne97942:0"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17604,11 +17787,13 @@ msgid "Nothing to update"
msgstr "crwdns97946:0crwdne97946:0"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "crwdns97948:0crwdne97948:0"
@@ -17624,7 +17809,7 @@ msgstr "crwdns97964:0crwdne97964:0"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "crwdns97966:0crwdne97966:0"
@@ -17633,11 +17818,6 @@ msgstr "crwdns97966:0crwdne97966:0"
msgid "Notification Subscribed Document"
msgstr "crwdns97970:0crwdne97970:0"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr "crwdns161390:0crwdne161390:0"
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "crwdns111084:0crwdne111084:0"
@@ -17655,13 +17835,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "crwdns142918:0{0}crwdne142918:0"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "crwdns97972:0crwdne97972:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "crwdns111086:0crwdne111086:0"
@@ -17897,7 +18079,7 @@ msgstr "crwdns98062:0crwdne98062:0"
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr "crwdns160712:0{{ otp }}crwdne160712:0"
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "crwdns111088:0crwdne111088:0"
@@ -17937,7 +18119,7 @@ msgstr "crwdns130378:0crwdne130378:0"
msgid "Offset Y"
msgstr "crwdns130380:0crwdne130380:0"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "crwdns155588:0crwdne155588:0"
@@ -17945,7 +18127,7 @@ msgstr "crwdns155588:0crwdne155588:0"
msgid "Old Password"
msgstr "crwdns98074:0crwdne98074:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "crwdns98076:0crwdne98076:0"
@@ -18012,7 +18194,7 @@ msgstr "crwdns149004:0crwdne149004:0"
msgid "On or Before"
msgstr "crwdns149006:0crwdne149006:0"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "crwdns111096:0{0}crwdnd111096:0{1}crwdne111096:0"
@@ -18056,7 +18238,7 @@ msgstr "crwdns98098:0crwdne98098:0"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "crwdns98100:0crwdne98100:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "crwdns111098:0crwdne111098:0"
@@ -18072,11 +18254,11 @@ msgstr "crwdns98106:0crwdne98106:0"
msgid "One of"
msgstr "crwdns98108:0crwdne98108:0"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "crwdns98112:0crwdne98112:0"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "crwdns98114:0crwdne98114:0"
@@ -18097,7 +18279,7 @@ msgstr "crwdns98120:0crwdne98120:0"
msgid "Only Allow Edit For"
msgstr "crwdns130406:0crwdne130406:0"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "crwdns98124:0crwdne98124:0"
@@ -18120,11 +18302,11 @@ msgstr "crwdns98128:0crwdne98128:0"
msgid "Only allow System Managers to upload public files"
msgstr "crwdns163894:0crwdne163894:0"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "crwdns98132:0crwdne98132:0"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "crwdns127690:0crwdne127690:0"
@@ -18167,7 +18349,7 @@ msgstr "crwdns98148:0crwdne98148:0"
msgid "Only {0} emailed reports are allowed per user."
msgstr "crwdns98152:0{0}crwdne98152:0"
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "crwdns111100:0crwdne111100:0"
@@ -18190,8 +18372,8 @@ msgctxt "Access"
msgid "Open"
msgstr "crwdns98156:0crwdne98156:0"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18227,6 +18409,10 @@ msgstr "crwdns130416:0crwdne130416:0"
msgid "Open Settings"
msgstr "crwdns98178:0crwdne98178:0"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr "crwdns194754:0crwdne194754:0"
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "crwdns111104:0crwdne111104:0"
@@ -18241,7 +18427,7 @@ msgstr "crwdns130418:0crwdne130418:0"
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 "crwdns148316:0crwdne148316:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "crwdns98184:0crwdne98184:0"
@@ -18253,11 +18439,11 @@ msgstr "crwdns155340:0crwdne155340:0"
msgid "Open in a new tab"
msgstr "crwdns143102:0crwdne143102:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr "crwdns162116:0crwdne162116:0"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "crwdns98186:0crwdne98186:0"
@@ -18272,16 +18458,16 @@ msgstr "crwdns98188:0crwdne98188:0"
#: 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:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "crwdns98190:0{0}crwdne98190:0"
@@ -18313,7 +18499,7 @@ msgstr "crwdns130428:0crwdne130428:0"
msgid "Operator must be one of {0}"
msgstr "crwdns98200:0{0}crwdne98200:0"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr "crwdns161392:0{0}crwdne161392:0"
@@ -18339,7 +18525,7 @@ msgstr "crwdns98208:0crwdne98208:0"
msgid "Option 3"
msgstr "crwdns98210:0crwdne98210:0"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "crwdns98212:0{0}crwdnd98212:0{1}crwdne98212:0"
@@ -18373,7 +18559,7 @@ msgstr "crwdns130432:0crwdne130432:0"
msgid "Options"
msgstr "crwdns111106:0crwdne111106:0"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "crwdns98232:0crwdne98232:0"
@@ -18382,7 +18568,7 @@ msgstr "crwdns98232:0crwdne98232:0"
msgid "Options Help"
msgstr "crwdns130434:0crwdne130434:0"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "crwdns98236:0crwdne98236:0"
@@ -18390,7 +18576,7 @@ msgstr "crwdns98236:0crwdne98236:0"
msgid "Options for select. Each option on a new line."
msgstr "crwdns98238:0crwdne98238:0"
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "crwdns98240:0{0}crwdne98240:0"
@@ -18398,7 +18584,7 @@ msgstr "crwdns98240:0{0}crwdne98240:0"
msgid "Options is required for field {0} of type {1}"
msgstr "crwdns98242:0{0}crwdnd98242:0{1}crwdne98242:0"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "crwdns98244:0{0}crwdne98244:0"
@@ -18414,7 +18600,7 @@ msgstr "crwdns130436:0crwdne130436:0"
msgid "Order"
msgstr "crwdns130438:0crwdne130438:0"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "crwdns155590:0crwdne155590:0"
@@ -18434,8 +18620,12 @@ msgstr "crwdns130442:0crwdne130442:0"
msgid "Orientation"
msgstr "crwdns98256:0crwdne98256:0"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr "crwdns194756:0crwdne194756:0"
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "crwdns111108:0crwdne111108:0"
@@ -18510,18 +18700,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "crwdns98288:0crwdne98288:0"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "crwdns111458:0crwdne111458:0"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "crwdns154304:0crwdne154304:0"
@@ -18545,7 +18737,7 @@ msgstr "crwdns130466:0crwdne130466:0"
msgid "PDF Settings"
msgstr "crwdns130468:0crwdne130468:0"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "crwdns98298:0crwdne98298:0"
@@ -18553,11 +18745,11 @@ msgstr "crwdns98298:0crwdne98298:0"
msgid "PDF generation failed because of broken image links"
msgstr "crwdns98300:0crwdne98300:0"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "crwdns127696:0crwdne127696:0"
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "crwdns98302:0crwdne98302:0"
@@ -18716,7 +18908,7 @@ msgstr "crwdns98372:0crwdne98372:0"
msgid "Page has expired!"
msgstr "crwdns98374:0crwdne98374:0"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "crwdns98376:0crwdne98376:0"
@@ -18732,7 +18924,7 @@ msgstr "crwdns111526:0crwdne111526:0"
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "crwdns98382:0{0}crwdnd98382:0{1}crwdne98382:0"
@@ -18743,7 +18935,7 @@ msgid "Parameter"
msgstr "crwdns130494:0crwdne130494:0"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "crwdns98386:0crwdne98386:0"
@@ -18776,11 +18968,11 @@ msgstr "crwdns130502:0crwdne130502:0"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "crwdns98400:0crwdne98400:0"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "crwdns98404:0crwdne98404:0"
@@ -18794,7 +18986,7 @@ msgstr "crwdns161394:0crwdne161394:0"
msgid "Parent Label"
msgstr "crwdns130504:0crwdne130504:0"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "crwdns98408:0crwdne98408:0"
@@ -18819,11 +19011,11 @@ msgstr "crwdns98416:0crwdne98416:0"
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr "crwdns155990:0crwdne155990:0"
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "crwdns98418:0{0}crwdnd98418:0{1}crwdne98418:0"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "crwdns98420:0crwdne98420:0"
@@ -18842,7 +19034,7 @@ msgstr "crwdns130510:0crwdne130510:0"
msgid "Partially Sent"
msgstr "crwdns130512:0crwdne130512:0"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "crwdns98428:0crwdne98428:0"
@@ -18879,11 +19071,11 @@ msgstr "crwdns130516:0crwdne130516:0"
msgid "Password"
msgstr "crwdns98434:0crwdne98434:0"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "crwdns98448:0crwdne98448:0"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "crwdns98450:0crwdne98450:0"
@@ -18892,7 +19084,7 @@ msgstr "crwdns98450:0crwdne98450:0"
msgid "Password Reset Link Generation Limit"
msgstr "crwdns130518:0crwdne130518:0"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "crwdns98454:0crwdne98454:0"
@@ -18921,11 +19113,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:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr "crwdns164042:0crwdne164042:0"
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "crwdns142862:0crwdne142862:0"
@@ -18937,7 +19129,7 @@ msgstr "crwdns98468:0crwdne98468:0"
msgid "Password size exceeded the maximum allowed size"
msgstr "crwdns98470:0crwdne98470:0"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "crwdns98472:0crwdne98472:0"
@@ -18999,7 +19191,7 @@ msgstr "crwdns130526:0crwdne130526:0"
msgid "Path to private Key File"
msgstr "crwdns130528:0crwdne130528:0"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "crwdns160714:0{0}crwdnd160714:0{1}crwdne160714:0"
@@ -19084,15 +19276,15 @@ msgstr "crwdns130548:0crwdne130548:0"
msgid "Permanent"
msgstr "crwdns130550:0crwdne130550:0"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "crwdns98534:0{0}crwdne98534:0"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "crwdns127706:0{0}crwdne127706:0"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "crwdns98536:0{0}crwdne98536:0"
@@ -19100,7 +19292,11 @@ msgstr "crwdns98536:0{0}crwdne98536:0"
msgid "Permanently delete {0}?"
msgstr "crwdns98538:0{0}crwdne98538:0"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr "crwdns194758:0crwdne194758:0"
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "crwdns98540:0crwdne98540:0"
@@ -19110,12 +19306,12 @@ msgid "Permission Inspector"
msgstr "crwdns98542:0crwdne98542:0"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "crwdns98544:0crwdne98544:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "crwdns111114:0crwdne111114:0"
@@ -19124,11 +19320,6 @@ msgstr "crwdns111114:0crwdne111114:0"
msgid "Permission Log"
msgstr "crwdns149128:0crwdne149128:0"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "crwdns98548:0crwdne98548:0"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19159,7 +19350,6 @@ msgstr "crwdns161396:0{0}crwdne161396:0"
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19170,13 +19360,12 @@ msgstr "crwdns161396:0{0}crwdne161396:0"
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "crwdns98558:0crwdne98558:0"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "crwdns98572:0crwdne98572:0"
@@ -19188,11 +19377,11 @@ msgstr "crwdns111116:0crwdne111116:0"
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 "crwdns111118:0crwdne111118:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "crwdns111120:0crwdne111120:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:24
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "crwdns111122:0crwdne111122:0"
@@ -19262,13 +19451,13 @@ msgstr "crwdns130562:0crwdne130562:0"
msgid "Phone No."
msgstr "crwdns130564:0crwdne130564:0"
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
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:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "crwdns98608:0crwdne98608:0"
@@ -19326,7 +19515,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "crwdns98628:0crwdne98628:0"
@@ -19342,7 +19531,7 @@ msgstr "crwdns98632:0crwdne98632:0"
msgid "Please add a valid comment."
msgstr "crwdns98634:0crwdne98634:0"
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "crwdns98636:0crwdne98636:0"
@@ -19350,11 +19539,11 @@ msgstr "crwdns98636:0crwdne98636:0"
msgid "Please attach a file first."
msgstr "crwdns98638:0crwdne98638:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "crwdns98640:0crwdne98640:0"
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "crwdns98642:0crwdne98642:0"
@@ -19366,11 +19555,11 @@ msgstr "crwdns98644:0crwdne98644:0"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "crwdns98648:0crwdne98648:0"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "crwdns98650:0{0}crwdne98650:0"
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "crwdns98652:0crwdne98652:0"
@@ -19402,7 +19591,7 @@ msgstr "crwdns98660:0crwdne98660:0"
msgid "Please confirm your action to {0} this document."
msgstr "crwdns98664:0{0}crwdne98664:0"
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "crwdns127708:0crwdne127708:0"
@@ -19432,10 +19621,10 @@ msgstr "crwdns98678:0crwdne98678:0"
#: 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "crwdns98680:0crwdne98680:0"
@@ -19448,7 +19637,7 @@ msgstr "crwdns98682:0crwdne98682:0"
msgid "Please enable {} before continuing."
msgstr "crwdns98684:0crwdne98684:0"
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "crwdns98686:0crwdne98686:0"
@@ -19522,15 +19711,15 @@ msgstr "crwdns98718:0crwdne98718:0"
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "crwdns98720:0crwdne98720:0"
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "crwdns98722:0crwdne98722:0"
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "crwdns98724:0crwdne98724:0"
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "crwdns98726:0crwdne98726:0"
@@ -19546,7 +19735,7 @@ msgstr "crwdns98732:0crwdne98732:0"
msgid "Please save the form before previewing the message"
msgstr "crwdns160716:0crwdne160716:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "crwdns98734:0crwdne98734:0"
@@ -19566,7 +19755,7 @@ msgstr "crwdns98742:0crwdne98742:0"
msgid "Please select Minimum Password Score"
msgstr "crwdns98744:0crwdne98744:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "crwdns111128:0crwdne111128:0"
@@ -19574,7 +19763,7 @@ msgstr "crwdns111128:0crwdne111128:0"
msgid "Please select a DocType in options before setting filters"
msgstr "crwdns161398:0crwdne161398:0"
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "crwdns98746:0{1}crwdne98746:0"
@@ -19624,11 +19813,11 @@ msgstr "crwdns98764:0{0}crwdne98764:0"
msgid "Please set Email Address"
msgstr "crwdns98768:0crwdne98768:0"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
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:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "crwdns98772:0crwdne98772:0"
@@ -19636,7 +19825,7 @@ msgstr "crwdns98772:0crwdne98772:0"
msgid "Please set filters value in Report Filter table."
msgstr "crwdns98774:0crwdne98774:0"
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "crwdns98776:0crwdne98776:0"
@@ -19656,7 +19845,7 @@ msgstr "crwdns98782:0crwdne98782:0"
msgid "Please setup a message first"
msgstr "crwdns98784:0crwdne98784:0"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "crwdns98788:0crwdne98788:0"
@@ -19668,7 +19857,7 @@ msgstr "crwdns154306:0crwdne154306:0"
msgid "Please specify"
msgstr "crwdns98790:0crwdne98790:0"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "crwdns98792:0{0}crwdne98792:0"
@@ -19696,7 +19885,7 @@ msgstr "crwdns148942:0crwdne148942:0"
msgid "Please specify which value field must be checked"
msgstr "crwdns98796:0crwdne98796:0"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "crwdns98798:0crwdne98798:0"
@@ -19817,11 +20006,11 @@ msgstr "crwdns130596:0crwdne130596:0"
msgid "Precision"
msgstr "crwdns130600:0crwdne130600:0"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "crwdns159238:0{0}crwdnd159238:0{1}crwdnd159238:0{2}crwdne159238:0"
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "crwdns98862:0crwdne98862:0"
@@ -19873,11 +20062,11 @@ msgstr "crwdns98878:0crwdne98878:0"
msgid "Prepared report render failed"
msgstr "crwdns98880:0crwdne98880:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "crwdns98882:0crwdne98882:0"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "crwdns98884:0crwdne98884:0"
@@ -19885,7 +20074,7 @@ msgstr "crwdns98884:0crwdne98884:0"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "crwdns111130:0crwdne111130:0"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "crwdns98886:0crwdne98886:0"
@@ -19903,7 +20092,7 @@ msgstr "crwdns98886:0crwdne98886:0"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "crwdns98888:0crwdne98888:0"
@@ -19947,16 +20136,16 @@ msgstr "crwdns111132:0crwdne111132:0"
msgid "Previous"
msgstr "crwdns98912:0crwdne98912:0"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "crwdns111134:0crwdne111134:0"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "crwdns160720:0crwdne160720:0"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "crwdns98918:0crwdne98918:0"
@@ -20009,19 +20198,19 @@ msgstr "crwdns112704:0{0}crwdne112704:0"
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "crwdns98924:0crwdne98924:0"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "crwdns98926:0crwdne98926:0"
@@ -20039,8 +20228,9 @@ msgstr "crwdns98932:0crwdne98932:0"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20084,7 +20274,7 @@ msgstr "crwdns130624:0crwdne130624:0"
msgid "Print Format Type"
msgstr "crwdns130626:0crwdne130626:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "crwdns155998:0crwdne155998:0"
@@ -20117,11 +20307,11 @@ msgstr "crwdns130628:0crwdne130628:0"
msgid "Print Hide If No Value"
msgstr "crwdns130630:0crwdne130630:0"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "crwdns111422:0crwdne111422:0"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "crwdns98984:0crwdne98984:0"
@@ -20134,8 +20324,8 @@ msgstr "crwdns130632:0crwdne130632:0"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "crwdns98988:0crwdne98988:0"
@@ -20174,7 +20364,7 @@ msgstr "crwdns130638:0crwdne130638:0"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "crwdns130640:0crwdne130640:0"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "crwdns99010:0crwdne99010:0"
@@ -20183,11 +20373,11 @@ msgstr "crwdns99010:0crwdne99010:0"
msgid "Print with letterhead"
msgstr "crwdns130642:0crwdne130642:0"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "crwdns99014:0crwdne99014:0"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "crwdns99016:0crwdne99016:0"
@@ -20197,15 +20387,15 @@ msgstr "crwdns99016:0crwdne99016:0"
msgid "Printer Name"
msgstr "crwdns130644:0crwdne130644:0"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "crwdns99020:0crwdne99020:0"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "crwdns99022:0crwdne99022:0"
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "crwdns99026:0crwdne99026:0"
@@ -20254,7 +20444,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:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "crwdns99052:0crwdne99052:0"
@@ -20294,9 +20484,9 @@ msgid "Project"
msgstr "crwdns99062:0crwdne99062:0"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "crwdns111146:0crwdne111146:0"
@@ -20366,7 +20556,7 @@ msgstr "crwdns130660:0crwdne130660:0"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "crwdns99086:0crwdne99086:0"
@@ -20516,7 +20706,7 @@ msgstr "crwdns99152:0crwdne99152:0"
msgid "QR Code for Login Verification"
msgstr "crwdns99154:0crwdne99154:0"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "crwdns158730:0crwdne158730:0"
@@ -20578,7 +20768,7 @@ msgstr "crwdns99182:0crwdne99182:0"
msgid "Queue"
msgstr "crwdns130692:0crwdne130692:0"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "crwdns154310:0crwdne154310:0"
@@ -20599,7 +20789,7 @@ msgstr "crwdns130696:0crwdne130696:0"
msgid "Queue in Background (BETA)"
msgstr "crwdns130698:0crwdne130698:0"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "crwdns99192:0{0}crwdne99192:0"
@@ -20640,7 +20830,7 @@ msgstr "crwdns99212:0crwdne99212:0"
msgid "Queues"
msgstr "crwdns130706:0crwdne130706:0"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "crwdns99218:0{0}crwdne99218:0"
@@ -20732,6 +20922,15 @@ msgstr "crwdns99256:0crwdne99256:0"
msgid "Raw Email"
msgstr "crwdns130724:0crwdne130724:0"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr "crwdns194760:0crwdne194760:0"
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr "crwdns194762:0crwdne194762:0"
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20740,7 +20939,7 @@ msgstr "crwdns130724:0crwdne130724:0"
msgid "Raw Printing"
msgstr "crwdns130726:0crwdne130726:0"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "crwdns99266:0crwdne99266:0"
@@ -20758,7 +20957,7 @@ msgstr "crwdns99270:0crwdne99270:0"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "crwdns99272:0{0}crwdne99272:0"
@@ -20769,11 +20968,12 @@ msgstr "crwdns99272:0{0}crwdne99272:0"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20810,7 +21010,7 @@ msgstr "crwdns130728:0crwdne130728:0"
msgid "Read Only Depends On (JS)"
msgstr "crwdns130730:0crwdne130730:0"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "crwdns99308:0crwdne99308:0"
@@ -20850,7 +21050,7 @@ msgstr "crwdns130740:0crwdne130740:0"
msgid "Reason"
msgstr "crwdns99322:0crwdne99322:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "crwdns99328:0crwdne99328:0"
@@ -20892,7 +21092,7 @@ msgstr "crwdns130750:0crwdne130750:0"
msgid "Recent years are easy to guess."
msgstr "crwdns99346:0crwdne99346:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "crwdns99348:0crwdne99348:0"
@@ -20943,7 +21143,7 @@ msgstr "crwdns127882:0crwdne127882:0"
msgid "Records for following doctypes will be filtered"
msgstr "crwdns111156:0crwdne111156:0"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "crwdns127896:0crwdne127896:0"
@@ -21009,12 +21209,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:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "crwdns99386:0crwdne99386:0"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "crwdns99388:0crwdne99388:0"
@@ -21230,12 +21430,12 @@ msgstr "crwdns99524:0{0}crwdnd99524:0{1}crwdne99524:0"
msgid "Referrer"
msgstr "crwdns99526:0crwdne99526:0"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21252,7 +21452,7 @@ msgstr "crwdns99532:0crwdne99532:0"
msgid "Refresh Google Sheet"
msgstr "crwdns130796:0crwdne130796:0"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "crwdns158984:0crwdne158984:0"
@@ -21267,7 +21467,7 @@ msgstr "crwdns158984:0crwdne158984:0"
msgid "Refresh Token"
msgstr "crwdns130798:0crwdne130798:0"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "crwdns111160:0crwdne111160:0"
@@ -21278,7 +21478,7 @@ msgstr "crwdns111160:0crwdne111160:0"
msgid "Refreshing..."
msgstr "crwdns99546:0crwdne99546:0"
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "crwdns99548:0crwdne99548:0"
@@ -21324,10 +21524,8 @@ msgstr "crwdns99560:0crwdne99560:0"
msgid "Relinked"
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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "crwdns99566:0crwdne99566:0"
@@ -21339,7 +21537,7 @@ msgstr "crwdns111162:0crwdne111162:0"
msgid "Reload List"
msgstr "crwdns99568:0crwdne99568:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "crwdns99570:0crwdne99570:0"
@@ -21358,7 +21556,7 @@ msgstr "crwdns130810:0crwdne130810:0"
msgid "Remind At"
msgstr "crwdns99576:0crwdne99576:0"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "crwdns99580:0crwdne99580:0"
@@ -21438,9 +21636,9 @@ msgid "Removed"
msgstr "crwdns149130:0crwdne149130:0"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21468,7 +21666,7 @@ msgstr "crwdns143124:0crwdne143124:0"
msgid "Reopen"
msgstr "crwdns99610:0crwdne99610:0"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "crwdns99612:0crwdne99612:0"
@@ -21515,7 +21713,7 @@ msgstr "crwdns99628:0crwdne99628:0"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "crwdns99630:0crwdne99630:0"
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "crwdns99632:0{0}crwdne99632:0"
@@ -21578,6 +21776,7 @@ msgstr "crwdns99642:0crwdne99642:0"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21592,10 +21791,9 @@ msgstr "crwdns99642:0crwdne99642:0"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "crwdns99644:0crwdne99644:0"
@@ -21664,7 +21862,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "crwdns99696:0crwdne99696:0"
@@ -21698,14 +21896,10 @@ msgstr "crwdns130838:0crwdne130838:0"
msgid "Report View"
msgstr "crwdns142864:0crwdne142864:0"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "crwdns148700:0crwdne148700:0"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "crwdns99718:0crwdne99718:0"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21716,7 +21910,7 @@ msgstr "crwdns99720:0crwdne99720:0"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "crwdns99722:0crwdne99722:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "crwdns99724:0crwdne99724:0"
@@ -21728,7 +21922,7 @@ msgstr "crwdns99726:0crwdne99726:0"
msgid "Report timed out."
msgstr "crwdns99728:0crwdne99728:0"
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "crwdns99730:0crwdne99730:0"
@@ -21736,12 +21930,12 @@ 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:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "crwdns99734:0crwdne99734:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "crwdns99736:0{0}crwdne99736:0"
@@ -21764,7 +21958,7 @@ msgstr "crwdns99744:0crwdne99744:0"
#. 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "crwdns99746:0crwdne99746:0"
@@ -21772,7 +21966,7 @@ msgstr "crwdns99746:0crwdne99746:0"
msgid "Reports & Masters"
msgstr "crwdns99750:0crwdne99750:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "crwdns99752:0crwdne99752:0"
@@ -21831,13 +22025,13 @@ msgstr "crwdns130852:0crwdne130852:0"
msgid "Request Structure"
msgstr "crwdns130854:0crwdne130854:0"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "crwdns99774:0crwdne99774:0"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "crwdns99776:0crwdne99776:0"
@@ -21953,7 +22147,7 @@ msgstr "crwdns143128:0crwdne143128:0"
msgid "Reset sorting"
msgstr "crwdns99820:0crwdne99820:0"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "crwdns99824:0crwdne99824:0"
@@ -22011,7 +22205,7 @@ msgstr "crwdns163896:0crwdne163896:0"
msgid "Response Type"
msgstr "crwdns130876:0crwdne130876:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "crwdns99840:0crwdne99840:0"
@@ -22020,7 +22214,7 @@ msgstr "crwdns99840:0crwdne99840:0"
msgid "Restore"
msgstr "crwdns99842:0crwdne99842:0"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "crwdns99844:0crwdne99844:0"
@@ -22042,6 +22236,11 @@ msgstr "crwdns99850:0crwdne99850:0"
msgid "Restrict IP"
msgstr "crwdns130880:0crwdne130880:0"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr "crwdns194764:0crwdne194764:0"
+
#. 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'
@@ -22069,8 +22268,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "crwdns99868:0crwdne99868:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "crwdns99870:0crwdne99870:0"
@@ -22117,9 +22316,15 @@ msgstr "crwdns130900:0crwdne130900:0"
msgid "Rich Text"
msgstr "crwdns111170:0crwdne111170:0"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22154,8 +22359,6 @@ msgstr "crwdns130908:0crwdne130908:0"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22170,8 +22373,7 @@ msgstr "crwdns130908:0crwdne130908:0"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22215,7 +22417,7 @@ msgstr "crwdns99964:0crwdne99964:0"
msgid "Role Permissions Manager"
msgstr "crwdns99968:0crwdne99968:0"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "crwdns99970:0crwdne99970:0"
@@ -22223,11 +22425,9 @@ msgstr "crwdns99970:0crwdne99970:0"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "crwdns99972:0crwdne99972:0"
@@ -22249,7 +22449,7 @@ msgstr "crwdns148702:0crwdne148702:0"
msgid "Role and Level"
msgstr "crwdns130914:0crwdne130914:0"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "crwdns99982:0{0}crwdne99982:0"
@@ -22368,20 +22568,20 @@ msgstr "crwdns130930:0crwdne130930:0"
msgid "Route: Example \"/app\""
msgstr "crwdns130932:0crwdne130932:0"
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "crwdns100054:0crwdne100054:0"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "crwdns111178:0crwdne111178:0"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "crwdns100056:0{0}crwdnd100056:0{1}crwdne100056:0"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr "crwdns194766:0{0}crwdnd194766:0{1}crwdne194766:0"
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "crwdns100058:0#{0}crwdne100058:0"
@@ -22408,7 +22608,7 @@ msgstr "crwdns130938:0crwdne130938:0"
msgid "Row Number"
msgstr "crwdns111180:0crwdne111180:0"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "crwdns111182:0crwdne111182:0"
@@ -22427,14 +22627,14 @@ msgstr "crwdns100070:0{0}crwdne100070:0"
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "crwdns111186:0crwdne111186:0"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "crwdns111188:0crwdne111188:0"
@@ -22457,7 +22657,7 @@ msgstr "crwdns130940:0crwdne130940:0"
msgid "Rule Conditions"
msgstr "crwdns130942:0crwdne130942:0"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "crwdns100084:0crwdne100084:0"
@@ -22537,7 +22737,7 @@ msgstr "crwdns100118:0crwdne100118:0"
msgid "SMS sent successfully"
msgstr "crwdns151436:0crwdne151436:0"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "crwdns111190:0crwdne111190:0"
@@ -22571,7 +22771,7 @@ msgstr "crwdns130968:0crwdne130968:0"
msgid "SQL Queries"
msgstr "crwdns130970:0crwdne130970:0"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr "crwdns162118:0{0}crwdne162118:0"
@@ -22643,22 +22843,23 @@ msgstr "crwdns130978:0crwdne130978:0"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22671,7 +22872,7 @@ msgid "Save Anyway"
msgstr "crwdns100176:0crwdne100176:0"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "crwdns100178:0crwdne100178:0"
@@ -22679,7 +22880,7 @@ msgstr "crwdns100178:0crwdne100178:0"
msgid "Save Customizations"
msgstr "crwdns100180:0crwdne100180:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "crwdns100182:0crwdne100182:0"
@@ -22697,20 +22898,20 @@ msgid "Save the document."
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:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "crwdns100190:0crwdne100190:0"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "crwdns148326:0crwdne148326:0"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "crwdns100192:0crwdne100192:0"
@@ -22719,11 +22920,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "crwdns100194:0crwdne100194:0"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr "crwdns163898:0crwdne163898:0"
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "crwdns100196:0crwdne100196:0"
@@ -22927,7 +23128,7 @@ msgstr "crwdns131008:0crwdne131008:0"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22947,7 +23148,7 @@ msgstr "crwdns131010:0crwdne131010:0"
msgid "Search Fields"
msgstr "crwdns131012:0crwdne131012:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "crwdns100300:0crwdne100300:0"
@@ -22965,7 +23166,7 @@ msgstr "crwdns143130:0crwdne143130:0"
msgid "Search by filename or extension"
msgstr "crwdns143132:0crwdne143132:0"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "crwdns100306:0{0}crwdne100306:0"
@@ -22982,12 +23183,12 @@ msgstr "crwdns143136:0crwdne143136:0"
msgid "Search for anything"
msgstr "crwdns100308:0crwdne100308:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "crwdns100310:0{0}crwdne100310:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "crwdns100312:0crwdne100312:0"
@@ -23059,15 +23260,15 @@ msgstr "crwdns143142:0crwdne143142:0"
msgid "Security Settings"
msgstr "crwdns131022:0crwdne131022:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "crwdns111200:0crwdne111200:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "crwdns100338:0crwdne100338:0"
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "crwdns100340:0crwdne100340:0"
@@ -23117,24 +23318,26 @@ msgstr "crwdns131026:0crwdne131026:0"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "crwdns100362:0crwdne100362:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "crwdns111204:0crwdne111204:0"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23150,7 +23353,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "crwdns100388:0crwdne100388:0"
@@ -23194,13 +23397,13 @@ msgstr "crwdns100408:0crwdne100408:0"
msgid "Select Document Type or Role to start."
msgstr "crwdns100410:0crwdne100410:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
msgstr "crwdns111206:0crwdne111206:0"
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "crwdns100412:0crwdne100412:0"
@@ -23209,7 +23412,7 @@ msgstr "crwdns100412:0crwdne100412:0"
msgid "Select Field..."
msgstr "crwdns111208:0crwdne111208:0"
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "crwdns100414:0crwdne100414:0"
@@ -23218,19 +23421,19 @@ msgstr "crwdns100414:0crwdne100414:0"
msgid "Select Fields (Up to {0})"
msgstr "crwdns158732:0{0}crwdne158732:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "crwdns100416:0crwdne100416:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "crwdns100418:0crwdne100418:0"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "crwdns100420:0crwdne100420:0"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "crwdns100422:0crwdne100422:0"
@@ -23255,16 +23458,16 @@ msgstr "crwdns100428:0crwdne100428:0"
msgid "Select List View"
msgstr "crwdns131034:0crwdne131034:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "crwdns100432:0crwdne100432:0"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "crwdns100434:0crwdne100434:0"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "crwdns100436:0crwdne100436:0"
@@ -23274,7 +23477,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "crwdns100440:0crwdne100440:0"
@@ -23310,12 +23513,6 @@ msgstr "crwdns100452:0crwdne100452:0"
msgid "Select Workspace"
msgstr "crwdns131042:0crwdne131042:0"
-#. 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 "crwdns148328:0crwdne148328:0"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "crwdns100456:0crwdne100456:0"
@@ -23332,11 +23529,11 @@ msgstr "crwdns143144:0crwdne143144:0"
msgid "Select a group {0} first."
msgstr "crwdns160180:0{0}crwdne160180:0"
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "crwdns100466:0crwdne100466:0"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "crwdns100468:0crwdne100468:0"
@@ -23362,13 +23559,13 @@ msgstr "crwdns100474:0crwdne100474:0"
msgid "Select atleast 2 actions"
msgstr "crwdns100476:0crwdne100476:0"
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "crwdns100478:0crwdne100478:0"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "crwdns100480:0crwdne100480:0"
@@ -23402,7 +23599,7 @@ msgstr "crwdns100488:0crwdne100488:0"
msgid "Select {0}"
msgstr "crwdns100490:0{0}crwdne100490:0"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "crwdns100492:0crwdne100492:0"
@@ -23432,6 +23629,11 @@ msgstr "crwdns131048:0crwdne131048:0"
msgid "Send Alert On"
msgstr "crwdns131050:0crwdne131050:0"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr "crwdns194768:0crwdne194768:0"
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23484,7 +23686,7 @@ msgstr "crwdns100528:0crwdne100528:0"
msgid "Send Print as PDF"
msgstr "crwdns131074:0crwdne131074:0"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "crwdns100532:0crwdne100532:0"
@@ -23547,7 +23749,7 @@ msgstr "crwdns131094:0crwdne131094:0"
msgid "Send login link"
msgstr "crwdns100562:0crwdne100562:0"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "crwdns100564:0crwdne100564:0"
@@ -23586,7 +23788,7 @@ msgstr "crwdns131102:0crwdne131102:0"
msgid "Sender Email Field"
msgstr "crwdns131104:0crwdne131104:0"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "crwdns100592:0crwdne100592:0"
@@ -23680,7 +23882,7 @@ msgstr "crwdns100638:0crwdne100638:0"
msgid "Series counter for {} updated to {} successfully"
msgstr "crwdns100640:0crwdne100640:0"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0"
@@ -23690,7 +23892,7 @@ msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0"
msgid "Server Action"
msgstr "crwdns131128:0crwdne131128:0"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "crwdns100646:0crwdne100646:0"
@@ -23717,11 +23919,15 @@ msgstr "crwdns100660:0crwdne100660:0"
msgid "Server Scripts feature is not available on this site."
msgstr "crwdns100662:0crwdne100662:0"
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr "crwdns194770:0crwdne194770:0"
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "crwdns155050:0crwdne155050:0"
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "crwdns100664:0crwdne100664:0"
@@ -23749,16 +23955,14 @@ msgstr "crwdns100670:0crwdne100670:0"
msgid "Session Default Settings"
msgstr "crwdns100672:0crwdne100672:0"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "crwdns100674:0crwdne100674:0"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "crwdns100678:0crwdne100678:0"
@@ -23799,7 +24003,7 @@ msgstr "crwdns100686:0crwdne100686:0"
msgid "Set Banner from Image"
msgstr "crwdns131136:0crwdne131136:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "crwdns100690:0crwdne100690:0"
@@ -23825,7 +24029,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:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "crwdns148706:0crwdne148706:0"
@@ -23868,8 +24072,8 @@ msgstr "crwdns100712:0crwdne100712:0"
msgid "Set Property After Alert"
msgstr "crwdns131144:0crwdne131144:0"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "crwdns100716:0crwdne100716:0"
@@ -23889,12 +24093,12 @@ msgstr "crwdns100720:0crwdne100720:0"
msgid "Set Value"
msgstr "crwdns131148:0crwdne131148:0"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "crwdns100724:0crwdne100724:0"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "crwdns100726:0crwdne100726:0"
@@ -23998,8 +24202,8 @@ msgstr "crwdns100754:0crwdne100754:0"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24022,11 +24226,11 @@ msgstr "crwdns111540:0crwdne111540:0"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "crwdns100768:0crwdne100768:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "crwdns111214:0crwdne111214:0"
@@ -24034,12 +24238,12 @@ msgstr "crwdns111214:0crwdne111214:0"
msgid "Setup > User"
msgstr "crwdns111216:0crwdne111216:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "crwdns111218:0crwdne111218:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "crwdns100774:0crwdne100774:0"
@@ -24068,13 +24272,14 @@ msgstr "crwdns152060:0crwdne152060:0"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "crwdns111220:0crwdne111220:0"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "crwdns100794:0crwdne100794:0"
@@ -24082,7 +24287,7 @@ msgstr "crwdns100794:0crwdne100794:0"
msgid "Share this document with"
msgstr "crwdns111222:0crwdne111222:0"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "crwdns100796:0{0}crwdne100796:0"
@@ -24142,16 +24347,10 @@ msgstr "crwdns155508:0crwdne155508:0"
msgid "Show Absolute Values"
msgstr "crwdns131174:0crwdne131174:0"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "crwdns111228:0crwdne111228:0"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr "crwdns161410:0crwdne161410:0"
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24197,7 +24396,7 @@ msgstr "crwdns100834:0crwdne100834:0"
msgid "Show External Link Warning"
msgstr "crwdns159980:0crwdne159980:0"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "crwdns100838:0crwdne100838:0"
@@ -24249,7 +24448,7 @@ msgstr "crwdns131190:0crwdne131190:0"
msgid "Show Line Breaks after Sections"
msgstr "crwdns131192:0crwdne131192:0"
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "crwdns148334:0crwdne148334:0"
@@ -24369,7 +24568,7 @@ msgstr "crwdns100900:0crwdne100900:0"
msgid "Show account deletion link in My Account page"
msgstr "crwdns131212:0crwdne131212:0"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "crwdns100904:0crwdne100904:0"
@@ -24511,7 +24710,7 @@ msgstr "crwdns160508:0crwdne160508:0"
msgid "Sign Up and Confirmation"
msgstr "crwdns131238:0crwdne131238:0"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "crwdns100938:0crwdne100938:0"
@@ -24634,7 +24833,7 @@ msgstr "crwdns100986:0crwdne100986:0"
msgid "Skipping column {0}"
msgstr "crwdns100988:0{0}crwdne100988:0"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "crwdns100990:0{0}crwdnd100990:0{1}crwdne100990:0"
@@ -24809,15 +25008,15 @@ msgstr "crwdns101042:0crwdne101042:0"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "crwdns101044:0{0}crwdne101044:0"
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "crwdns111248:0crwdne111248:0"
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "crwdns101046:0crwdne101046:0"
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "crwdns101048:0crwdne101048:0"
@@ -24848,13 +25047,13 @@ msgstr "crwdns131290:0crwdne131290:0"
msgid "Sort Order"
msgstr "crwdns131292:0crwdne131292:0"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "crwdns101064:0{0}crwdne101064:0"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24903,7 +25102,7 @@ msgstr "crwdns157362:0crwdne157362:0"
msgid "Special Characters are not allowed"
msgstr "crwdns101082:0crwdne101082:0"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "crwdns101084:0{{' and '}}crwdnd101084:0{0}crwdne101084:0"
@@ -24942,6 +25141,7 @@ msgstr "crwdns101090:0crwdne101090:0"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24949,6 +25149,7 @@ msgstr "crwdns101090:0crwdne101090:0"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25016,8 +25217,8 @@ msgstr "crwdns101128:0{0}crwdne101128:0"
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "crwdns101132:0crwdne101132:0"
@@ -25189,7 +25390,7 @@ msgstr "crwdns131324:0crwdne131324:0"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25227,7 +25428,7 @@ msgstr "crwdns101252:0crwdne101252:0"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "crwdns152394:0crwdne152394:0"
@@ -25341,7 +25542,7 @@ msgstr "crwdns131356:0crwdne131356:0"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "crwdns101284:0crwdne101284:0"
@@ -25355,7 +25556,7 @@ msgstr "crwdns101284:0crwdne101284:0"
msgid "Subject Field"
msgstr "crwdns131358:0crwdne131358:0"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "crwdns101310:0crwdne101310:0"
@@ -25376,14 +25577,14 @@ msgstr "crwdns101312:0crwdne101312:0"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "crwdns101314:0crwdne101314:0"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "crwdns101316:0crwdne101316:0"
@@ -25413,7 +25614,7 @@ msgstr "crwdns101332:0crwdne101332:0"
msgid "Submit After Import"
msgstr "crwdns131360:0crwdne131360:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "crwdns111260:0crwdne111260:0"
@@ -25437,11 +25638,11 @@ msgstr "crwdns131364:0crwdne131364:0"
msgid "Submit this document to complete this step."
msgstr "crwdns101344:0crwdne101344:0"
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "crwdns101346:0crwdne101346:0"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "crwdns101348:0{0}crwdne101348:0"
@@ -25467,7 +25668,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "crwdns101360:0crwdne101360:0"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "crwdns101362:0{0}crwdne101362:0"
@@ -25502,12 +25703,12 @@ msgstr "crwdns161420:0crwdne161420:0"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25549,7 +25750,7 @@ msgstr "crwdns151446:0crwdne151446:0"
msgid "Successful Job Count"
msgstr "crwdns131378:0crwdne131378:0"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "crwdns101396:0crwdne101396:0"
@@ -25574,7 +25775,7 @@ msgstr "crwdns111264:0{0}crwdnd111264:0{1}crwdne111264:0"
msgid "Successfully reset onboarding status for all users."
msgstr "crwdns101406:0crwdne101406:0"
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr "crwdns160510:0crwdne160510:0"
@@ -25599,7 +25800,7 @@ msgstr "crwdns127884:0crwdne127884:0"
msgid "Suggested Indexes"
msgstr "crwdns131380:0crwdne131380:0"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "crwdns101420:0{0}crwdne101420:0"
@@ -25640,7 +25841,7 @@ msgstr "crwdns131382:0crwdne131382:0"
msgid "Suspend Sending"
msgstr "crwdns101442:0crwdne101442:0"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "crwdns101444:0crwdne101444:0"
@@ -25653,7 +25854,7 @@ msgstr "crwdns101446:0crwdne101446:0"
msgid "Switch To Desk"
msgstr "crwdns101448:0crwdne101448:0"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "crwdns101450:0crwdne101450:0"
@@ -25722,9 +25923,7 @@ msgid "Syntax Error"
msgstr "crwdns101478:0crwdne101478:0"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "crwdns131392:0crwdne131392:0"
@@ -25734,7 +25933,7 @@ msgstr "crwdns131392:0crwdne131392:0"
msgid "System Console"
msgstr "crwdns101482:0crwdne101482:0"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "crwdns101484:0crwdne101484:0"
@@ -25861,6 +26060,7 @@ msgstr "crwdns101486:0crwdne101486:0"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25875,7 +26075,6 @@ msgstr "crwdns101486:0crwdne101486:0"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25951,6 +26150,11 @@ msgstr "crwdns131398:0crwdne131398:0"
msgid "System Settings"
msgstr "crwdns101498:0crwdne101498:0"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr "crwdns194772:0crwdne194772:0"
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25967,6 +26171,12 @@ msgstr "crwdns101504:0crwdne101504:0"
msgid "TOS URI"
msgstr "crwdns156030:0crwdne156030:0"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+msgstr "crwdns194774:0crwdne194774: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'
@@ -26002,7 +26212,7 @@ msgstr "crwdns101512:0crwdne101512:0"
msgid "Table Break"
msgstr "crwdns131404:0crwdne131404:0"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "crwdns111268:0crwdne111268:0"
@@ -26011,7 +26221,7 @@ msgstr "crwdns111268:0crwdne111268:0"
msgid "Table Fieldname"
msgstr "crwdns131406:0crwdne131406:0"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "crwdns101526:0crwdne101526:0"
@@ -26029,7 +26239,7 @@ msgstr "crwdns131408:0crwdne131408:0"
msgid "Table MultiSelect"
msgstr "crwdns131410:0crwdne131410:0"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr "crwdns162120:0{0}crwdne162120:0"
@@ -26037,11 +26247,11 @@ msgstr "crwdns162120:0{0}crwdne162120:0"
msgid "Table Trimmed"
msgstr "crwdns112742:0crwdne112742:0"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "crwdns101536:0crwdne101536:0"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "crwdns101538:0{0}crwdne101538:0"
@@ -26061,17 +26271,17 @@ msgid "Tag Link"
msgstr "crwdns101544:0crwdne101544:0"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "crwdns101546:0crwdne101546:0"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "crwdns101552:0crwdne101552:0"
@@ -26155,7 +26365,7 @@ msgstr "crwdns131428:0crwdne131428:0"
msgid "Templates"
msgstr "crwdns101586:0crwdne101586:0"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "crwdns101588:0crwdne101588:0"
@@ -26251,7 +26461,7 @@ msgstr "crwdns101628:0crwdne101628:0"
msgid "The Auto Repeat for this document has been disabled."
msgstr "crwdns101630:0crwdne101630:0"
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "crwdns101632:0crwdne101632:0"
@@ -26303,7 +26513,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "crwdns159242:0{0}crwdnd159242:0{0}crwdnd159242:0{1}crwdne159242:0"
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "crwdns101696:0crwdne101696:0"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr "crwdns101698:0crwdne101698:0"
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "crwdns101700:0crwdne101700:0"
@@ -26451,7 +26669,7 @@ msgstr "crwdns101702:0{0}crwdne101702:0"
msgid "The selected document {0} is not a {1}."
msgstr "crwdns101704:0{0}crwdnd101704:0{1}crwdne101704:0"
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "crwdns101706:0crwdne101706:0"
@@ -26463,6 +26681,42 @@ msgstr "crwdns111272:0crwdne111272:0"
msgid "The total number of user document types limit has been crossed."
msgstr "crwdns101710:0crwdne101710:0"
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr "crwdns194780:0crwdne194780:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr "crwdns194782:0crwdne194782:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr "crwdns194784:0crwdne194784:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr "crwdns194786:0crwdne194786:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr "crwdns194788:0crwdne194788:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr "crwdns194790:0crwdne194790:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr "crwdns194792:0crwdne194792:0"
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr "crwdns194794:0crwdne194794:0"
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+msgstr "crwdns194796:0{0}crwdnd194796:0{1}crwdnd194796:0{0}crwdne194796:0"
+
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr "crwdns101714:0{0}crwdnd101714:0{1}crwdne101714:0"
@@ -26504,7 +26758,7 @@ msgstr "crwdns131466:0crwdne131466:0"
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 "crwdns111274:0crwdne111274:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "crwdns111276:0crwdne111276:0"
@@ -26512,7 +26766,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "crwdns111278:0{0}crwdne111278:0"
@@ -26521,7 +26775,7 @@ msgstr "crwdns111278:0{0}crwdne111278:0"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "crwdns101732:0crwdne101732:0"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "crwdns101734:0crwdne101734:0"
@@ -26533,11 +26787,11 @@ msgstr "crwdns101736:0{0}crwdne101736:0"
msgid "There is no data to be exported"
msgstr "crwdns101738:0crwdne101738:0"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "crwdns157366:0crwdne157366:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "crwdns112744:0crwdne112744:0"
@@ -26545,7 +26799,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:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "crwdns111280:0{0}crwdne111280:0"
@@ -26561,7 +26815,7 @@ msgstr "crwdns101746:0crwdne101746:0"
msgid "There was an error saving filters"
msgstr "crwdns101748:0crwdne101748:0"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "crwdns101750:0crwdne101750:0"
@@ -26569,11 +26823,11 @@ 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:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "crwdns101754:0crwdne101754:0"
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "crwdns101756:0crwdne101756:0"
@@ -26642,11 +26896,11 @@ msgstr "crwdns155058:0crwdne155058:0"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "crwdns112746:0crwdne112746:0"
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "crwdns101776:0crwdne101776:0"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "crwdns101778:0crwdne101778:0"
@@ -26670,7 +26924,7 @@ msgstr "crwdns131478:0crwdne131478:0"
msgid "This doctype has no orphan fields to trim"
msgstr "crwdns112748:0crwdne112748:0"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "crwdns112750:0crwdne112750:0"
@@ -26686,15 +26940,15 @@ msgstr "crwdns160248:0{0}crwdne160248:0"
msgid "This document has been modified after the email was sent."
msgstr "crwdns101788:0crwdne101788:0"
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "crwdns127762:0crwdne127762:0"
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr "crwdns101792:0crwdne101792:0"
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "crwdns111282:0crwdne111282:0"
@@ -26707,7 +26961,7 @@ 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 "crwdns101798:0crwdne101798:0"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "crwdns111284:0crwdne111284:0"
@@ -26732,11 +26986,11 @@ msgstr "crwdns154734:0crwdne154734:0"
msgid "This file is public. It can be accessed without authentication."
msgstr "crwdns101802:0crwdne101802:0"
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "crwdns101804:0crwdne101804:0"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "crwdns101806:0crwdne101806:0"
@@ -26755,7 +27009,7 @@ msgstr "crwdns148744:0crwdne148744:0"
msgid "This goes above the slideshow."
msgstr "crwdns131484:0crwdne131484:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "crwdns101812:0crwdne101812:0"
@@ -26797,15 +27051,15 @@ msgstr "crwdns101830:0crwdne101830:0"
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "crwdns101832:0crwdne101832:0"
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "crwdns101834:0crwdne101834:0"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "crwdns101836:0crwdne101836:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
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"
@@ -26813,7 +27067,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:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "crwdns101844:0{0}crwdne101844:0"
@@ -26837,7 +27091,7 @@ msgstr "crwdns148338:0crwdne148338:0"
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "crwdns101852:0crwdne101852:0"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "crwdns101854:0{0}crwdnd101854:0{1}crwdne101854:0"
@@ -26881,7 +27135,7 @@ msgstr "crwdns101866:0crwdne101866:0"
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr "crwdns158736:0crwdne158736:0"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "crwdns101870:0crwdne101870:0"
@@ -26912,6 +27166,7 @@ msgstr "crwdns131496:0crwdne131496:0"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26919,6 +27174,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "crwdns101884:0crwdne101884:0"
@@ -27001,11 +27257,6 @@ msgstr "crwdns101930:0{0}crwdnd101930:0{1}crwdne101930:0"
msgid "Timed Out"
msgstr "crwdns131518:0crwdne131518:0"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr "crwdns161426:0crwdne161426:0"
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "crwdns101934:0crwdne101934:0"
@@ -27037,11 +27288,11 @@ msgstr "crwdns131526:0crwdne131526:0"
msgid "Timeline Name"
msgstr "crwdns131528:0crwdne131528:0"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "crwdns101946:0crwdne101946:0"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "crwdns101948:0crwdne101948:0"
@@ -27112,7 +27363,7 @@ msgstr "crwdns155348:0crwdne155348:0"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27135,7 +27386,7 @@ msgstr "crwdns131534:0crwdne131534:0"
msgid "Title Prefix"
msgstr "crwdns131536:0crwdne131536:0"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "crwdns102012:0crwdne102012:0"
@@ -27221,7 +27472,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:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "crwdns102050:0{0}crwdne102050:0"
@@ -27274,31 +27525,14 @@ msgstr "crwdns102070:0crwdne102070:0"
msgid "Today"
msgstr "crwdns102076:0crwdne102076:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "crwdns102080:0crwdne102080:0"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "crwdns102082:0crwdne102082:0"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "crwdns102084:0crwdne102084:0"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "crwdns102086:0crwdne102086:0"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "crwdns102090:0crwdne102090:0"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27334,7 +27568,7 @@ msgid "Tomorrow"
msgstr "crwdns155064:0crwdne155064:0"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "crwdns102106:0crwdne102106:0"
@@ -27342,15 +27576,19 @@ msgstr "crwdns102106:0crwdne102106:0"
msgid "Too Many Requests"
msgstr "crwdns102108:0crwdne102108:0"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "crwdns102110:0crwdne102110:0"
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "crwdns154316:0{0}crwdne154316:0"
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr "crwdns194798:0crwdne194798:0"
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "crwdns102112:0crwdne102112:0"
@@ -27406,10 +27644,10 @@ msgstr "crwdns131572:0crwdne131572:0"
msgid "Topic"
msgstr "crwdns131574:0crwdne131574:0"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "crwdns102140:0crwdne102140:0"
@@ -27424,7 +27662,7 @@ msgstr "crwdns131576:0crwdne131576:0"
msgid "Total Errors (last 1 day)"
msgstr "crwdns131578:0crwdne131578:0"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "crwdns111290:0crwdne111290:0"
@@ -27524,7 +27762,7 @@ msgstr "crwdns131610:0crwdne131610:0"
msgid "Track milestones for any document"
msgstr "crwdns111548:0crwdne111548:0"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "crwdns102180:0crwdne102180:0"
@@ -27560,7 +27798,7 @@ msgstr "crwdns131616:0crwdne131616:0"
msgid "Translatable"
msgstr "crwdns131618:0crwdne131618:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "crwdns154320:0crwdne154320:0"
@@ -27571,7 +27809,7 @@ msgstr "crwdns154320:0crwdne154320:0"
msgid "Translate Link Fields"
msgstr "crwdns131620:0crwdne131620:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "crwdns148954:0crwdne148954:0"
@@ -27607,7 +27845,7 @@ msgstr "crwdns131624:0crwdne131624:0"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "crwdns131626:0crwdne131626:0"
@@ -27656,8 +27894,8 @@ msgstr "crwdns102228:0crwdne102228:0"
msgid "Try a Naming Series"
msgstr "crwdns131634:0crwdne131634:0"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "crwdns111440:0crwdne111440:0"
@@ -27703,6 +27941,7 @@ msgstr "crwdns131640:0crwdne131640:0"
#. 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 'Event Notifications'
#. 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'
@@ -27716,6 +27955,7 @@ msgstr "crwdns131640:0crwdne131640:0"
#: 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/event_notifications/event_notifications.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
@@ -27724,7 +27964,7 @@ msgstr "crwdns131640:0crwdne131640:0"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27891,7 +28131,7 @@ msgstr "crwdns148960:0crwdne148960:0"
msgid "UUID"
msgstr "crwdns131660:0crwdne131660:0"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "crwdns148340:0{0}crwdne148340:0"
@@ -27899,7 +28139,7 @@ msgstr "crwdns148340:0{0}crwdne148340:0"
msgid "Unable to find DocType {0}"
msgstr "crwdns102328:0{0}crwdne102328:0"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "crwdns102330:0crwdne102330:0"
@@ -27915,7 +28155,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:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "crwdns102338:0crwdne102338:0"
@@ -27936,20 +28176,20 @@ msgstr "crwdns131662:0crwdne131662:0"
msgid "Uncaught Exception"
msgstr "crwdns151458:0crwdne151458:0"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "crwdns102348:0crwdne102348:0"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "crwdns102350:0crwdne102350:0"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "crwdns102352:0crwdne102352:0"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "crwdns102354:0crwdne102354:0"
@@ -28023,9 +28263,10 @@ msgstr "crwdns131670:0crwdne131670:0"
msgid "Unsafe SQL query"
msgstr "crwdns102382:0crwdne102382:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "crwdns111300:0crwdne111300:0"
@@ -28058,11 +28299,11 @@ msgstr "crwdns154322:0crwdne154322:0"
msgid "Unsubscribed"
msgstr "crwdns102394:0crwdne102394:0"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr "crwdns161428:0{0}crwdne161428:0"
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr "crwdns161430:0{0}crwdnd161430:0{1}crwdne161430:0"
@@ -28082,7 +28323,7 @@ msgstr "crwdns102406:0{0}crwdne102406:0"
msgid "Unzipping files..."
msgstr "crwdns102408:0crwdne102408:0"
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "crwdns102410:0crwdne102410:0"
@@ -28090,13 +28331,13 @@ msgstr "crwdns102410:0crwdne102410:0"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "crwdns102412:0crwdne102412:0"
@@ -28167,7 +28408,7 @@ msgstr "crwdns131690:0crwdne131690:0"
msgid "Update from Frappe Cloud"
msgstr "crwdns127778:0crwdne127778:0"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "crwdns102440:0{0}crwdne102440:0"
@@ -28175,8 +28416,7 @@ msgstr "crwdns102440:0{0}crwdne102440:0"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "crwdns102442:0crwdne102442:0"
@@ -28188,11 +28428,11 @@ msgstr "crwdns102448:0crwdne102448:0"
msgid "Updated To A New Version 🎉"
msgstr "crwdns102450:0crwdne102450:0"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "crwdns102452:0crwdne102452:0"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "crwdns102456:0crwdne102456:0"
@@ -28217,11 +28457,11 @@ msgstr "crwdns102464:0crwdne102464:0"
msgid "Updating naming series options"
msgstr "crwdns102466:0crwdne102466:0"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "crwdns102468:0crwdne102468:0"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "crwdns102470:0{0}crwdne102470:0"
@@ -28229,12 +28469,12 @@ msgstr "crwdns102470:0{0}crwdne102470:0"
msgid "Updating {0} of {1}, {2}"
msgstr "crwdns102472:0{0}crwdnd102472:0{1}crwdnd102472:0{2}crwdne102472:0"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "crwdns151812:0crwdne151812:0"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28282,6 +28522,7 @@ msgstr "crwdns131702:0crwdne131702:0"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "crwdns131704:0crwdne131704:0"
@@ -28353,7 +28594,7 @@ msgstr "crwdns152254:0crwdne152254:0"
msgid "Use of sub-query or function is restricted"
msgstr "crwdns102512:0crwdne102512:0"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "crwdns102514:0crwdne102514:0"
@@ -28387,9 +28628,8 @@ msgstr "crwdns131722:0crwdne131722:0"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28416,11 +28656,11 @@ msgstr "crwdns131722:0crwdne131722:0"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28556,7 +28796,7 @@ msgstr "crwdns131750:0crwdne131750:0"
msgid "User Invitation"
msgstr "crwdns157370:0crwdne157370:0"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "crwdns111304:0crwdne111304:0"
@@ -28572,19 +28812,19 @@ msgid "User Permission"
msgstr "crwdns102624:0crwdne102624:0"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "crwdns102628:0crwdne102628:0"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "crwdns102630:0crwdne102630:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "crwdns111306:0crwdne111306:0"
@@ -28657,7 +28897,7 @@ msgstr "crwdns131758:0crwdne131758:0"
msgid "User can login using Email id or User Name"
msgstr "crwdns131760:0crwdne131760:0"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "crwdns111312:0crwdne111312:0"
@@ -28691,27 +28931,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "crwdns102676:0{0}crwdne102676:0"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "crwdns102678:0{0}crwdne102678:0"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "crwdns102680:0{0}crwdne102680:0"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "crwdns102682:0{0}crwdne102682:0"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "crwdns102684:0{0}crwdnd102684:0{1}crwdne102684:0"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "crwdns127898:0{0}crwdne127898:0"
@@ -28720,11 +28960,11 @@ 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:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "crwdns111442:0{0}crwdnd111442:0{1}crwdne111442:0"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "crwdns102688:0{0}crwdne102688:0"
@@ -28749,18 +28989,17 @@ msgstr "crwdns131764:0crwdne131764:0"
msgid "Username"
msgstr "crwdns102694:0crwdne102694:0"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "crwdns102700:0{0}crwdne102700:0"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28831,7 +29070,7 @@ msgstr "crwdns142900:0crwdne142900:0"
msgid "Validate SSL Certificate"
msgstr "crwdns131776:0crwdne131776:0"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "crwdns102720:0crwdne102720:0"
@@ -28860,7 +29099,7 @@ msgstr "crwdns131778:0crwdne131778:0"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28887,15 +29126,19 @@ msgstr "crwdns131784:0crwdne131784:0"
msgid "Value To Be Set"
msgstr "crwdns131786:0crwdne131786:0"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr "crwdns194800:0crwdne194800:0"
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "crwdns102750:0{0}crwdne102750:0"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "crwdns102752:0crwdne102752:0"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "crwdns102754:0{0}crwdnd102754:0{1}crwdne102754:0"
@@ -28907,7 +29150,7 @@ msgstr "crwdns102756:0crwdne102756:0"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "crwdns102758:0{0}crwdnd102758:0{1}crwdnd102758:0{2}crwdne102758:0"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "crwdns102760:0{0}crwdne102760:0"
@@ -28932,7 +29175,13 @@ msgstr "crwdns156052:0crwdne156052:0"
msgid "Value to Validate"
msgstr "crwdns131790:0crwdne131790:0"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr "crwdns194802:0crwdne194802:0"
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "crwdns102770:0crwdne102770:0"
@@ -28949,7 +29198,7 @@ msgstr "crwdns102774:0{0}crwdne102774:0"
msgid "Value {0} must in {1} format"
msgstr "crwdns102776:0{0}crwdnd102776:0{1}crwdne102776:0"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "crwdns111318:0crwdne111318:0"
@@ -28958,11 +29207,11 @@ msgstr "crwdns111318:0crwdne111318:0"
msgid "Verdana"
msgstr "crwdns131792:0crwdne131792:0"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "crwdns148342:0crwdne148342:0"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "crwdns143162:0crwdne143162:0"
@@ -28970,7 +29219,7 @@ msgstr "crwdns143162:0crwdne143162:0"
msgid "Verification Link"
msgstr "crwdns102782:0crwdne102782:0"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "crwdns111320:0crwdne111320:0"
@@ -28984,7 +29233,7 @@ msgid "Verified"
msgstr "crwdns131794:0crwdne131794:0"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "crwdns102788:0crwdne102788:0"
@@ -29020,7 +29269,7 @@ msgstr "crwdns131798:0crwdne131798:0"
msgid "View All"
msgstr "crwdns102800:0crwdne102800:0"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "crwdns102802:0crwdne102802:0"
@@ -29032,7 +29281,7 @@ msgstr "crwdns148750:0crwdne148750:0"
msgid "View File"
msgstr "crwdns152398:0crwdne152398:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "crwdns111324:0crwdne111324:0"
@@ -29069,7 +29318,7 @@ msgstr "crwdns131802:0crwdne131802:0"
msgid "View Settings"
msgstr "crwdns131804:0crwdne131804:0"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr "crwdns161432:0crwdne161432:0"
@@ -29078,14 +29327,11 @@ msgstr "crwdns161432:0crwdne161432:0"
msgid "View Switcher"
msgstr "crwdns131806:0crwdne131806:0"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "crwdns102826:0crwdne102826:0"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr "crwdns164050:0{0}crwdne164050:0"
@@ -29101,7 +29347,7 @@ msgstr "crwdns102832:0crwdne102832:0"
msgid "View this in your browser"
msgstr "crwdns102834:0crwdne102834:0"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "crwdns111326:0crwdne111326:0"
@@ -29137,7 +29383,7 @@ msgstr "crwdns102846:0crwdne102846:0"
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "crwdns102848:0crwdne102848:0"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr "crwdns160514:0crwdne160514:0"
@@ -29185,7 +29431,7 @@ msgstr "crwdns131818:0crwdne131818:0"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "crwdns131820:0crwdne131820:0"
@@ -29194,7 +29440,7 @@ msgstr "crwdns131820:0crwdne131820:0"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "crwdns112756:0{0}crwdne112756:0"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "crwdns148344:0crwdne148344:0"
@@ -29278,7 +29524,7 @@ msgstr "crwdns102894:0crwdne102894:0"
msgid "Web Page Block"
msgstr "crwdns102900:0crwdne102900:0"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "crwdns102902:0crwdne102902:0"
@@ -29375,7 +29621,7 @@ msgstr "crwdns131842:0crwdne131842:0"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29430,7 +29676,7 @@ msgstr "crwdns102968:0crwdne102968:0"
msgid "Website Search Field"
msgstr "crwdns131844:0crwdne131844:0"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "crwdns102974:0crwdne102974:0"
@@ -29495,6 +29741,11 @@ msgstr "crwdns131848:0crwdne131848:0"
msgid "Website Themes Available"
msgstr "crwdns161436:0crwdne161436:0"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr "crwdns194804:0crwdne194804:0"
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29582,15 +29833,15 @@ msgstr "crwdns131860:0crwdne131860:0"
msgid "Welcome Workspace"
msgstr "crwdns103062:0crwdne103062:0"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "crwdns103064:0crwdne103064:0"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "crwdns103066:0{0}crwdne103066:0"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "crwdns112758:0crwdne112758:0"
@@ -29612,10 +29863,6 @@ msgstr "crwdns131864:0crwdne131864:0"
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 "crwdns131866:0crwdne131866:0"
-#: 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 "crwdns111330:0crwdne111330:0"
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29633,7 +29880,7 @@ msgstr "crwdns103072:0crwdne103072:0"
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "crwdns111332:0crwdne111332:0"
@@ -29754,6 +30001,10 @@ msgstr "crwdns143164:0crwdne143164:0"
msgid "Workflow Document State"
msgstr "crwdns103136:0crwdne103136:0"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr "crwdns194806:0crwdne194806:0"
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -29771,11 +30022,11 @@ msgstr "crwdns103140:0crwdne103140:0"
msgid "Workflow State Field"
msgstr "crwdns131890:0crwdne131890:0"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "crwdns103146:0crwdne103146:0"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "crwdns103148:0{0}crwdnd103148:0{1}crwdne103148:0"
@@ -29783,7 +30034,7 @@ msgstr "crwdns103148:0{0}crwdnd103148:0{1}crwdne103148:0"
msgid "Workflow States Don't Exist"
msgstr "crwdns149020:0crwdne149020:0"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "crwdns103150:0crwdne103150:0"
@@ -29818,18 +30069,15 @@ msgstr "crwdns112760:0crwdne112760:0"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "crwdns103156:0crwdne103156:0"
@@ -29856,7 +30104,6 @@ msgstr "crwdns103168:0crwdne103168:0"
#. 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 "crwdns103170:0crwdne103170:0"
@@ -29870,27 +30117,15 @@ msgstr "crwdns103172:0crwdne103172:0"
msgid "Workspace Quick List"
msgstr "crwdns103174:0crwdne103174:0"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "crwdns148348:0crwdne148348:0"
-
-#. 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 "crwdns148350:0crwdne148350:0"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "crwdns103176:0crwdne103176:0"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr "crwdns161440:0crwdne161440:0"
@@ -29900,13 +30135,7 @@ msgstr "crwdns161440:0crwdne161440:0"
msgid "Workspace Sidebar Item"
msgstr "crwdns161442:0crwdne161442:0"
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr "crwdns148352:0crwdne148352:0"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "crwdns148712:0{0}crwdne148712:0"
@@ -29935,11 +30164,12 @@ msgstr "crwdns127790:0crwdne127790:0"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "crwdns131894:0crwdne131894:0"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "crwdns103194:0crwdne103194:0"
@@ -29957,7 +30187,7 @@ msgstr "crwdns131896:0crwdne131896:0"
msgid "XLSX"
msgstr "crwdns131898:0crwdne131898:0"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr "crwdns161444:0crwdne161444:0"
@@ -29972,7 +30202,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "crwdns103206:0crwdne103206:0"
@@ -30020,10 +30250,14 @@ msgstr "crwdns131908:0crwdne131908:0"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30032,10 +30266,10 @@ msgstr "crwdns131908:0crwdne131908:0"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "crwdns103238:0crwdne103238:0"
@@ -30071,7 +30305,7 @@ msgstr "crwdns158988:0{0}crwdne158988:0"
msgid "You added {0} rows to {1}"
msgstr "crwdns158990:0{0}crwdnd158990:0{1}crwdne158990:0"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "crwdns159988:0crwdne159988:0"
@@ -30079,7 +30313,7 @@ msgstr "crwdns159988:0crwdne159988:0"
msgid "You are connected to internet."
msgstr "crwdns103256:0crwdne103256:0"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "crwdns163902:0crwdne163902:0"
@@ -30087,11 +30321,11 @@ msgstr "crwdns163902:0crwdne163902:0"
msgid "You are not allowed to access this resource"
msgstr "crwdns151618:0crwdne151618:0"
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
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:426
+#: frappe/permissions.py:432
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"
@@ -30114,7 +30348,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:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "crwdns103270:0crwdne103270:0"
@@ -30122,10 +30356,14 @@ msgstr "crwdns103270:0crwdne103270:0"
msgid "You are not allowed to print this report"
msgstr "crwdns103272:0crwdne103272:0"
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr "crwdns103274:0crwdne103274:0"
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr "crwdns194808:0crwdne194808:0"
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "crwdns103276:0crwdne103276:0"
@@ -30142,7 +30380,7 @@ msgstr "crwdns103280:0crwdne103280:0"
msgid "You are not permitted to access this page."
msgstr "crwdns103282:0crwdne103282:0"
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "crwdns155350:0crwdne155350:0"
@@ -30150,7 +30388,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "crwdns103288:0crwdne103288:0"
@@ -30163,7 +30401,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "crwdns103292:0{0}crwdne103292:0"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "crwdns103294:0crwdne103294:0"
@@ -30187,10 +30425,6 @@ msgstr "crwdns103300:0{0}crwdne103300:0"
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "crwdns157378:0crwdne157378: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 "crwdns111338:0crwdne111338:0"
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "crwdns103302:0{0}crwdne103302:0"
@@ -30245,7 +30479,7 @@ msgstr "crwdns148354:0crwdne148354:0"
msgid "You can try changing the filters of your report."
msgstr "crwdns103318:0crwdne103318:0"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "crwdns111342:0crwdne111342:0"
@@ -30275,6 +30509,10 @@ msgstr "crwdns103328:0{1}crwdne103328:0"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "crwdns103330:0crwdne103330:0"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr "crwdns194810:0{0}crwdnd194810:0{1}crwdnd194810:0{2}crwdnd194810:0{0}crwdnd194810:0{1}crwdne194810:0"
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "crwdns103334:0{0}crwdne103334:0"
@@ -30301,7 +30539,6 @@ msgid "You changed {0} to {1}"
msgstr "crwdns103344:0{0}crwdnd103344:0{1}crwdne103344:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "crwdns103346:0crwdne103346:0"
@@ -30310,11 +30547,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "crwdns155352:0{0}crwdne155352:0"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "crwdns103348:0crwdne103348:0"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "crwdns103350:0crwdne103350:0"
@@ -30326,15 +30559,19 @@ msgstr "crwdns103352:0crwdne103352:0"
msgid "You do not have import permission for {0}"
msgstr "crwdns161466:0{0}crwdne161466:0"
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr "crwdns194812:0{0}crwdne194812:0"
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "crwdns155600:0{0}crwdne155600:0"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0"
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "crwdns103360:0crwdne103360:0"
@@ -30370,7 +30607,7 @@ msgstr "crwdns103378:0crwdne103378:0"
msgid "You have hit the row size limit on database table: {0}"
msgstr "crwdns103380:0{0}crwdne103380:0"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "crwdns103382:0crwdne103382:0"
@@ -30390,7 +30627,7 @@ msgstr "crwdns103390:0{0}crwdne103390:0"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "crwdns111346:0crwdne111346:0"
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "crwdns103392:0{0}crwdne103392:0"
@@ -30399,7 +30636,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "crwdns103394:0crwdne103394:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "crwdns103396:0crwdne103396:0"
@@ -30415,12 +30651,12 @@ msgstr "crwdns103400:0crwdne103400:0"
msgid "You must login to submit this form"
msgstr "crwdns103402:0crwdne103402:0"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
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"
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "crwdns151460:0crwdne151460:0"
@@ -30428,7 +30664,7 @@ msgstr "crwdns151460:0crwdne151460:0"
msgid "You need to be Workspace Manager to edit this document"
msgstr "crwdns103404:0crwdne103404:0"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "crwdns112716:0crwdne112716:0"
@@ -30460,7 +30696,7 @@ msgstr "crwdns103414:0crwdne103414:0"
msgid "You need to have \"Share\" permission"
msgstr "crwdns103416:0crwdne103416:0"
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "crwdns103418:0crwdne103418:0"
@@ -30480,7 +30716,7 @@ msgstr "crwdns151844:0{0}crwdnd151844:0{1}crwdne151844:0"
msgid "You need write permission on {0} {1} to rename"
msgstr "crwdns151846:0{0}crwdnd151846:0{1}crwdne151846:0"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "crwdns103424:0{0}crwdnd103424:0{1}crwdnd103424:0{2}crwdne103424:0"
@@ -30527,7 +30763,7 @@ msgstr "crwdns103436:0crwdne103436:0"
msgid "You viewed this"
msgstr "crwdns103438:0crwdne103438:0"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "crwdns159990:0crwdne159990:0"
@@ -30604,7 +30840,7 @@ msgstr "crwdns103456:0crwdne103456:0"
msgid "Your exported report: {0}"
msgstr "crwdns158996:0{0}crwdne158996:0"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "crwdns103458:0crwdne103458:0"
@@ -30646,7 +30882,7 @@ msgstr "crwdns159246:0{0}crwdne159246:0"
msgid "Your session has expired, please login again to continue."
msgstr "crwdns103470:0crwdne103470:0"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "crwdns163904:0crwdne163904:0"
@@ -30668,7 +30904,7 @@ msgstr "crwdns131912:0crwdne131912:0"
msgid "[Action taken by {0}]"
msgstr "crwdns152382:0{0}crwdne152382:0"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "crwdns104504:0crwdne104504:0"
@@ -30687,7 +30923,7 @@ msgstr "crwdns131918:0crwdne131918:0"
msgid "amend"
msgstr "crwdns131920:0crwdne131920:0"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "crwdns103502:0crwdne103502:0"
@@ -30710,7 +30946,7 @@ msgstr "crwdns111356:0crwdne111356:0"
msgid "cProfile Output"
msgstr "crwdns131924:0crwdne131924:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "crwdns103538:0crwdne103538:0"
@@ -30726,7 +30962,9 @@ msgid "canceled"
msgstr "crwdns131928:0crwdne131928:0"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "crwdns160516:0crwdne160516:0"
@@ -30750,7 +30988,7 @@ msgid "cyan"
msgstr "crwdns131932:0crwdne131932:0"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "crwdns103578:0crwdne103578:0"
@@ -30808,7 +31046,7 @@ msgstr "crwdns131946:0crwdne131946:0"
msgid "descending"
msgstr "crwdns103598:0crwdne103598:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "crwdns103600:0crwdne103600:0"
@@ -30818,7 +31056,7 @@ msgstr "crwdns103600:0crwdne103600:0"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "crwdns131948:0crwdne131948:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "crwdns103608:0crwdne103608:0"
@@ -30860,15 +31098,19 @@ msgstr "crwdns131956:0crwdne131956:0"
msgid "email"
msgstr "crwdns131958:0crwdne131958:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "crwdns103630:0crwdne103630:0"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
msgid "empty"
msgstr "crwdns103632:0crwdne103632:0"
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
+msgid "empty"
+msgstr "crwdns194814:0crwdne194814:0"
+
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:41
msgid "esc"
msgstr "crwdns161468:0crwdne161468:0"
@@ -30921,12 +31163,12 @@ 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:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "crwdns103694:0crwdne103694:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "crwdns103712:0crwdne103712:0"
@@ -30941,6 +31183,20 @@ msgstr "crwdns131976:0crwdne131976:0"
msgid "import"
msgstr "crwdns131978:0crwdne131978:0"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr "crwdns194816:0crwdne194816:0"
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr "crwdns194818:0crwdne194818:0"
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "crwdns103730:0crwdne103730:0"
@@ -30980,16 +31236,11 @@ msgid "long"
msgstr "crwdns131990:0crwdne131990:0"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "crwdns103758:0crwdne103758:0"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr "crwdns161446:0crwdne161446:0"
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "crwdns103764:0{0}crwdnd103764:0{1}crwdne103764:0"
@@ -31008,15 +31259,15 @@ msgstr "crwdns131992:0crwdne131992:0"
msgid "mm/dd/yyyy"
msgstr "crwdns131994:0crwdne131994:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "crwdns103778:0crwdne103778:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "crwdns103784:0crwdne103784:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "crwdns103786:0crwdne103786:0"
@@ -31078,7 +31329,7 @@ msgstr "crwdns132014:0crwdne132014:0"
msgid "on_update_after_submit"
msgstr "crwdns132016:0crwdne132016:0"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "crwdns103824:0crwdne103824:0"
@@ -31151,7 +31402,7 @@ msgid "restored {0} as {1}"
msgstr "crwdns103898:0{0}crwdnd103898:0{1}crwdne103898:0"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "crwdns103904:0crwdne103904:0"
@@ -31235,11 +31486,11 @@ msgstr "crwdns132060:0{0}crwdnd132060:0{0}crwdne132060:0"
msgid "submit"
msgstr "crwdns132062:0crwdne132062:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "crwdns103962:0crwdne103962:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "crwdns103968:0crwdne103968:0"
@@ -31337,11 +31588,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "crwdns132074:0crwdne132074:0"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "crwdns154324:0crwdne154324:0"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "crwdns127800:0crwdne127800:0"
@@ -31377,11 +31630,11 @@ msgstr "crwdns132080:0crwdne132080:0"
msgid "{0}"
msgstr "crwdns104044:0{0}crwdne104044:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "crwdns104048:0{0}crwdne104048:0"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "crwdns104050:0{0}crwdnd104050:0${type}crwdne104050:0"
@@ -31398,8 +31651,8 @@ msgstr "crwdns104054:0{0}crwdnd104054:0{1}crwdne104054:0"
msgid "{0} ({1}) - {2}%"
msgstr "crwdns104056:0{0}crwdnd104056:0{1}crwdnd104056:0{2}crwdne104056:0"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "crwdns104058:0{0}crwdnd104058:0{1}crwdne104058:0"
@@ -31412,13 +31665,13 @@ msgid "{0} Chart"
msgstr "crwdns104062:0{0}crwdne104062:0"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "crwdns104064:0{0}crwdne104064:0"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31452,11 +31705,11 @@ msgstr "crwdns104076:0{0}crwdne104076:0"
msgid "{0} Map"
msgstr "crwdns104078:0{0}crwdne104078:0"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "crwdns104082:0{0}crwdne104082:0"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "crwdns104084:0{0}crwdnd104084:0{1}crwdnd104084:0{2}crwdnd104084:0{3}crwdne104084:0"
@@ -31464,7 +31717,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:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "crwdns111368:0{0}crwdne111368:0"
@@ -31477,11 +31730,11 @@ msgid "{0} Tree"
msgstr "crwdns104090:0{0}crwdne104090:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "crwdns104094:0{0}crwdne104094:0"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "crwdns104096:0{0}crwdne104096:0"
@@ -31543,7 +31796,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "crwdns104130:0{0}crwdnd104130:0{1}crwdne104130:0"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "crwdns151848:0{0}crwdne151848:0"
@@ -31572,16 +31825,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "crwdns104142:0{0}crwdnd104142:0{1}crwdnd104142:0{2}crwdne104142:0"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "crwdns127900:0{0}crwdne127900:0"
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr "crwdns194820:0{0}crwdnd194820:0{1}crwdne194820:0"
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "crwdns104146:0{0}crwdne104146:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "crwdns104148:0{0}crwdne104148:0"
@@ -31598,11 +31854,19 @@ msgstr "crwdns104162:0{0}crwdne104162:0"
msgid "{0} days ago"
msgstr "crwdns104164:0{0}crwdne104164:0"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr "crwdns194822:0{0}crwdnd194822:0{1}crwdne194822: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 "crwdns104166:0{0}crwdnd104166:0{1}crwdne104166:0"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr "crwdns194824:0{0}crwdnd194824:0{1}crwdne194824:0"
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
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"
@@ -31627,7 +31891,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/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr "crwdns161448:0{0}crwdnd161448:0{1}crwdne161448:0"
@@ -31648,7 +31912,11 @@ msgstr "crwdns104196:0{0}crwdnd104196:0{1}crwdne104196:0"
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "crwdns104198:0{0}crwdnd104198:0{1}crwdne104198:0"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr "crwdns194826:0{0}crwdnd194826:0{1}crwdne194826:0"
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "crwdns104200:0{0}crwdne104200:0"
@@ -31656,7 +31924,15 @@ msgstr "crwdns104200:0{0}crwdne104200:0"
msgid "{0} is a not a valid zip file"
msgstr "crwdns104202:0{0}crwdne104202:0"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr "crwdns194828:0{0}crwdnd194828:0{1}crwdne194828:0"
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr "crwdns194830:0{0}crwdnd194830:0{1}crwdne194830:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "crwdns104204:0{0}crwdne104204:0"
@@ -31664,6 +31940,15 @@ msgstr "crwdns104204:0{0}crwdne104204:0"
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "crwdns104206:0{0}crwdne104206:0"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr "crwdns194832:0{0}crwdnd194832:0{1}crwdne194832:0"
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr "crwdns194834:0{0}crwdnd194834:0{1}crwdne194834:0"
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "crwdns104208:0{0}crwdnd104208:0{1}crwdnd104208:0{2}crwdne104208:0"
@@ -31673,22 +31958,36 @@ msgstr "crwdns104208:0{0}crwdnd104208:0{1}crwdnd104208:0{2}crwdne104208:0"
msgid "{0} is currently {1}"
msgstr "crwdns104210:0{0}crwdnd104210:0{1}crwdne104210:0"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr "crwdns194836:0{0}crwdne194836:0"
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr "crwdns194838:0{0}crwdne194838:0"
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "crwdns104212:0{0}crwdnd104212:0{1}crwdne104212:0"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "crwdns104214:0{0}crwdnd104214:0{1}crwdne104214:0"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "crwdns104216:0{0}crwdnd104216:0{1}crwdne104216:0"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "crwdns104218:0{0}crwdnd104218:0{1}crwdne104218:0"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "crwdns104220:0{0}crwdnd104220:0{1}crwdne104220:0"
@@ -31701,10 +32000,14 @@ msgstr "crwdns104222:0{0}crwdnd104222:0{1}crwdne104222:0"
msgid "{0} is mandatory"
msgstr "crwdns104224:0{0}crwdne104224:0"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "crwdns155604:0{0}crwdnd155604:0{1}crwdne155604:0"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr "crwdns194840:0{0}crwdnd194840:0{1}crwdne194840: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"
@@ -31721,12 +32024,12 @@ msgstr "crwdns104230:0{0}crwdne104230:0"
msgid "{0} is not a valid Cron expression."
msgstr "crwdns111446:0{0}crwdne111446:0"
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "crwdns104232:0{0}crwdne104232:0"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "crwdns104234:0{0}crwdne104234:0"
@@ -31734,23 +32037,23 @@ 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:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "crwdns104236:0{0}crwdne104236:0"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "crwdns104238:0{0}crwdne104238:0"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "crwdns104240:0{0}crwdne104240:0"
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "crwdns104242:0{0}crwdnd104242:0{1}crwdne104242:0"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "crwdns104244:0{0}crwdnd104244:0{1}crwdne104244:0"
@@ -31766,6 +32069,11 @@ msgstr "crwdns104248:0{0}crwdne104248:0"
msgid "{0} is not an allowed role for {1}"
msgstr "crwdns157398:0{0}crwdnd157398:0{1}crwdne157398:0"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr "crwdns194842:0{0}crwdnd194842:0{1}crwdne194842:0"
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "crwdns104250:0{0}crwdnd104250:0{1}crwdne104250:0"
@@ -31774,10 +32082,12 @@ msgstr "crwdns104250:0{0}crwdnd104250:0{1}crwdne104250:0"
msgid "{0} is not like {1}"
msgstr "crwdns104252:0{0}crwdnd104252:0{1}crwdne104252:0"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "crwdns104254:0{0}crwdnd104254:0{1}crwdne104254:0"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "crwdns104256:0{0}crwdne104256:0"
@@ -31786,36 +32096,50 @@ msgstr "crwdns104256:0{0}crwdne104256:0"
msgid "{0} is now default print format for {1} doctype"
msgstr "crwdns104258:0{0}crwdnd104258:0{1}crwdne104258:0"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr "crwdns194844:0{0}crwdnd194844:0{1}crwdne194844:0"
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr "crwdns194846:0{0}crwdnd194846:0{1}crwdne194846:0"
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "crwdns104260:0{0}crwdnd104260:0{1}crwdne104260:0"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "crwdns104262:0{0}crwdne104262:0"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "crwdns104264:0{0}crwdne104264:0"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "crwdns104266:0{0}crwdnd104266:0{1}crwdne104266:0"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr "crwdns194848:0{0}crwdnd194848:0{1}crwdne194848:0"
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "crwdns104268:0{0}crwdne104268:0"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "crwdns111448:0{0}crwdnd111448:0{1}crwdne111448:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "crwdns104270:0{0}crwdne104270:0"
@@ -31843,35 +32167,35 @@ msgstr "crwdns104280:0{0}crwdne104280:0"
msgid "{0} months ago"
msgstr "crwdns104282:0{0}crwdne104282:0"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "crwdns104284:0{0}crwdnd104284:0{1}crwdne104284:0"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "crwdns148714:0{0}crwdnd148714:0{1}crwdne148714:0"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "crwdns148716:0{0}crwdnd148716:0{1}crwdne148716:0"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "crwdns148718:0{0}crwdnd148718:0{1}crwdne148718:0"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "crwdns104286:0{0}crwdnd104286:0{1}crwdne104286:0"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "crwdns104288:0{0}crwdne104288:0"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "crwdns104290:0{0}crwdne104290:0"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "crwdns148720:0{0}crwdnd148720:0{1}crwdnd148720:0{2}crwdne148720:0"
@@ -31888,11 +32212,11 @@ msgid "{0} not allowed to be renamed"
msgstr "crwdns104296:0{0}crwdne104296:0"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "crwdns104300:0{0}crwdnd104300:0{1}crwdne104300:0"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "crwdns104302:0{0}crwdnd104302:0{1}crwdnd104302:0{2}crwdne104302:0"
@@ -31921,7 +32245,7 @@ msgstr "crwdns104312:0{0}crwdnd104312:0{1}crwdne104312:0"
msgid "{0} records deleted"
msgstr "crwdns104314:0{0}crwdne104314:0"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "crwdns104316:0{0}crwdne104316:0"
@@ -31946,7 +32270,7 @@ msgstr "crwdns159006:0{0}crwdnd159006:0{1}crwdnd159006:0{2}crwdne159006:0"
msgid "{0} role does not have permission on any doctype"
msgstr "crwdns111370:0{0}crwdne111370:0"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "crwdns158750:0{0}crwdnd158750:0#{1}crwdne158750:0"
@@ -31960,7 +32284,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "crwdns159010:0{0}crwdnd159010:0{1}crwdne159010:0"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "crwdns104328:0{0}crwdne104328:0"
@@ -31968,7 +32292,7 @@ msgstr "crwdns104328:0{0}crwdne104328:0"
msgid "{0} self assigned this task: {1}"
msgstr "crwdns104330:0{0}crwdnd104330:0{1}crwdne104330:0"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "crwdns104332:0{0}crwdnd104332:0{1}crwdnd104332:0{2}crwdne104332:0"
@@ -32036,7 +32360,7 @@ msgstr "crwdns104360:0{0}crwdne104360:0"
msgid "{0} weeks ago"
msgstr "crwdns104362:0{0}crwdne104362:0"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr "crwdns164056:0{0}crwdnd164056:0{1}crwdne164056:0"
@@ -32048,7 +32372,7 @@ msgstr "crwdns104364:0{0}crwdne104364:0"
msgid "{0} years ago"
msgstr "crwdns104366:0{0}crwdne104366:0"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "crwdns104368:0{0}crwdnd104368:0{1}crwdne104368:0"
@@ -32056,11 +32380,11 @@ msgstr "crwdns104368:0{0}crwdnd104368:0{1}crwdne104368:0"
msgid "{0} {1} added to Dashboard {2}"
msgstr "crwdns104370:0{0}crwdnd104370:0{1}crwdnd104370:0{2}crwdne104370:0"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "crwdns104372:0{0}crwdnd104372:0{1}crwdne104372:0"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "crwdns104374:0{0}crwdnd104374:0{1}crwdnd104374:0{2}crwdnd104374:0{3}crwdne104374:0"
@@ -32072,11 +32396,11 @@ msgstr "crwdns104376:0{0}crwdnd104376:0{1}crwdne104376:0"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "crwdns104378:0{0}crwdnd104378:0{1}crwdne104378:0"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
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:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0"
@@ -32084,87 +32408,59 @@ msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "crwdns104384:0{0}crwdnd104384:0{1}crwdnd104384:0{2}crwdnd104384:0{3}crwdne104384:0"
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "crwdns104386:0{0}crwdnd104386:0{1}crwdne104386:0"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "crwdns151120:0{0}crwdnd151120:0{1}crwdne151120:0"
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "crwdns104388:0{0}crwdnd104388:0{1}crwdnd104388:0{3}crwdnd104388:0{2}crwdne104388:0"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "crwdns104390:0{0}crwdne104390:0"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "crwdns104392:0{0}crwdne104392:0"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "crwdns104394:0{0}crwdne104394:0"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "crwdns104396:0{0}crwdne104396:0"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "crwdns104398:0{0}crwdne104398:0"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "crwdns104400:0{0}crwdne104400:0"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "crwdns104402:0{0}crwdnd104402:0{1}crwdne104402:0"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "crwdns104404:0{0}crwdnd104404:0{1}crwdne104404:0"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "crwdns104406:0{0}crwdnd104406:0{1}crwdne104406:0"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "crwdns104408:0{0}crwdnd104408:0{1}crwdnd104408:0{2}crwdne104408:0"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "crwdns104410:0{0}crwdnd104410:0{1}crwdnd104410:0{2}crwdne104410:0"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "crwdns104412:0{0}crwdnd104412:0{1}crwdnd104412:0{2}crwdne104412:0"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "crwdns104414:0{0}crwdnd104414:0{1}crwdnd104414:0{2}crwdne104414:0"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "crwdns104416:0{0}crwdne104416:0"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "crwdns104418:0{0}crwdnd104418:0{1}crwdne104418:0"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "crwdns104420:0{0}crwdnd104420:0{1}crwdnd104420:0{2}crwdne104420:0"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "crwdns104422:0{0}crwdnd104422:0{1}crwdnd104422:0{2}crwdne104422:0"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "crwdns104424:0{0}crwdnd104424:0{1}crwdnd104424:0{2}crwdnd104424:0{3}crwdne104424:0"
@@ -32172,15 +32468,59 @@ msgstr "crwdns104424:0{0}crwdnd104424:0{1}crwdnd104424:0{2}crwdnd104424:0{3}crwd
msgid "{0}: Other permission rules may also apply"
msgstr "crwdns111372:0{0}crwdne111372:0"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "crwdns104426:0{0}crwdne104426:0"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr "crwdns194850:0{0}crwdne194850:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr "crwdns194852:0{0}crwdne194852:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr "crwdns194854:0{0}crwdne194854:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "crwdns194856:0{0}crwdne194856:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr "crwdns194858:0{0}crwdne194858:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr "crwdns194860:0{0}crwdne194860:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "crwdns194862:0{0}crwdne194862:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "crwdns194864:0{0}crwdne194864:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr "crwdns194866:0{0}crwdne194866:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr "crwdns194868:0{0}crwdne194868: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 "crwdns104428:0{0}crwdnd104428:0{1}crwdne104428:0"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr "crwdns194870:0{0}crwdnd194870:0{1}crwdne194870:0"
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "crwdns104430:0{0}crwdnd104430:0{1}crwdne104430:0"
@@ -32193,15 +32533,15 @@ 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:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "crwdns104436:0{0}crwdnd104436:0{1}crwdnd104436:0{2}crwdne104436:0"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "crwdns104438:0{0}crwdnd104438:0{1}crwdnd104438:0{2}crwdne104438:0"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "crwdns148358:0{1}crwdne148358:0"
@@ -32221,11 +32561,11 @@ msgstr "crwdns104444:0{count}crwdne104444:0"
msgid "{count} rows selected"
msgstr "crwdns104446:0{count}crwdne104446:0"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "crwdns104448:0{{{0}}}crwdnd104448:0{{field_name}}crwdne104448:0"
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "crwdns104450:0crwdne104450:0"
diff --git a/frappe/locale/es.po b/frappe/locale/es.po
index 19b2fe41c0..e3b68eed4b 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-29 21:45\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -38,9 +38,9 @@ msgstr "\"Padre\" significa la tabla padre en la que debe añadirse esta fila"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Team Members\" or \"Management\""
-msgstr "\"Miembros del equipo\" o \"Administración\""
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "El campo \"amended_from\" debe estar presente para hacer una modificación."
@@ -64,9 +64,9 @@ msgstr "© Frappe Technologies Pvt. Ltd. y colaboradores"
#. 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 ""
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "'En Búsqueda Global' no está permitido para el campo {0} del tipo {1}"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "'En Búsqueda Global' no está permitido para el tipo {0} en la fila {1}"
@@ -90,19 +90,19 @@ 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:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' no es un IBAN válido"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' no es una URL válida"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' no permitido para el tipo {1} en la fila {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Obligatorio)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0 es más alto"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Verdadero y 0 = Falso"
@@ -159,7 +159,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:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Informe"
@@ -190,7 +190,7 @@ msgstr "Hace 1 mes"
msgid "1 of 2"
msgstr "1 de 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "Se exportará 1 registro"
@@ -749,21 +749,21 @@ msgstr "Advertencia: Este campo es generado por el sistema y pu
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "="
-msgstr "="
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">"
-msgstr ">"
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">="
-msgstr ">="
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
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"
@@ -777,7 +777,7 @@ msgstr "Una instancia de Frappe Framework puede funcionar como cliente OAuth, re
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "Se enviará un enlace de descarga con sus datos a la dirección de correo electrónico asociada a su cuenta."
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "Ya existe un campo con el nombre {0} en {1}"
@@ -788,7 +788,7 @@ msgstr "Ya existe un archivo con el mismo nombre {}"
#. 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 "Una lista de los recursos que el cliente de aplicación tendrá acceso a la vez que el usuario lo permite.
por ejemplo, el proyecto"
+msgstr ""
#: frappe/templates/emails/new_user.html:5
msgid "A new account has been created for you at {0}"
@@ -823,52 +823,52 @@ msgstr "Una palabra de por sí es fácil de adivinar."
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A0"
-msgstr "A0"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A1"
-msgstr "A1"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A2"
-msgstr "A2"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A3"
-msgstr "A3"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A4"
-msgstr "A4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A5"
-msgstr "A5"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A6"
-msgstr "A6"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A7"
-msgstr "A7"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A8"
-msgstr "A8"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A9"
-msgstr "A9"
+msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -878,7 +878,7 @@ msgstr "TODOS"
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr "API"
+msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -959,7 +959,7 @@ msgstr "Secreto 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
@@ -1027,12 +1027,12 @@ msgstr "Registro de acceso"
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Access Token"
-msgstr "Token de Acceso"
+msgstr ""
#. Label of the access_token_url (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Access Token URL"
-msgstr "URL de Token de Acceso"
+msgstr ""
#: frappe/auth.py:497
msgid "Access not allowed from this IP Address"
@@ -1098,7 +1098,7 @@ msgstr "Acción / Ruta"
msgid "Action Complete"
msgstr "Acción completada"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Acción Fallida"
@@ -1110,7 +1110,7 @@ msgstr "Etiqueta de Acción"
#. Label of the action_timeout (Int) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Action Timeout (Seconds)"
-msgstr "Tiempo de espera de Acción (segundos)"
+msgstr ""
#. Label of the action_type (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
@@ -1147,13 +1147,13 @@ msgstr "La acción {0} falló en {1} {2}. Véalo en {3}"
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Acciones"
@@ -1210,20 +1210,20 @@ msgstr "Actividad"
msgid "Activity Log"
msgstr "Registro de Actividad"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Agregar"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Añadir / Eliminar Columnas"
@@ -1231,11 +1231,11 @@ msgstr "Añadir / Eliminar Columnas"
msgid "Add / Update"
msgstr "Agregar / Actualizar"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Añadir una nueva regla"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Añadir un adjunto"
@@ -1243,7 +1243,7 @@ msgstr "Añadir un adjunto"
#. 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 "Añadir imagen de fondo"
+msgstr ""
#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
@@ -1255,11 +1255,15 @@ msgstr "Añadir borde al final"
msgid "Add Border at Top"
msgstr "Añadir borde al principio"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Agregar Tarjeta al tablero"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Agregar gráfico al tablero"
@@ -1268,8 +1272,8 @@ msgid "Add Child"
msgstr "Agregar subnodo"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1302,7 +1306,7 @@ msgstr "Agregar filtros"
#. 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 "Agregar fondo gris"
+msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
#: frappe/public/js/frappe/ui/group_by/group_by.js:430
@@ -1313,11 +1317,7 @@ msgstr "Añadir Grupo"
msgid "Add Indexes"
msgstr "Agregar índices"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Añadir varios"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Agregar nueva regla de permisos"
@@ -1330,17 +1330,13 @@ msgstr "Agregar Participantes"
msgid "Add Query Parameters"
msgstr "Agregar parámetros de consulta"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Añadir Roles"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Agregar Firma"
@@ -1359,23 +1355,23 @@ msgstr "Añadir espacio al inicio"
msgid "Add Subscribers"
msgstr "Añadir Suscriptores"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Añadir etiquetas"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Añadir etiquetas"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Añadir plantilla"
#. Label of the add_total_row (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Add Total Row"
-msgstr "Añadir Fila Total"
+msgstr ""
#. Label of the add_translate_data (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -1385,7 +1381,7 @@ 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 "Añadir Enlace Darse de baja"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
@@ -1418,19 +1414,19 @@ msgstr "Añadir un comentario"
msgid "Add a new section"
msgstr "Agregar una nueva sección"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Agregar una fila encima de la fila actual"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Agregar una fila al final"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Añadir una fila en la parte superior"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Añadir una fila debajo de la fila actual"
@@ -1448,6 +1444,10 @@ msgstr "Agregar columna"
msgid "Add field"
msgstr "Agregar campo"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1461,6 +1461,10 @@ msgstr ""
msgid "Add page break"
msgstr "Añadir salto de página"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Agregar script para tabla secundaria"
@@ -1479,7 +1483,7 @@ msgid "Add tab"
msgstr "Agregar pestaña"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Agregar al tablero"
@@ -1513,14 +1517,14 @@ msgstr "Añadido"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO"
-msgstr "HTML añadido en la sección <head> de la página web, utiliza sobre todo para la verificación de la web y SEO"
+msgstr ""
#: frappe/core/doctype/log_settings/log_settings.py:81
msgid "Added default log doctypes: {}"
msgstr "Se añadieron Doctypes de registro predeterminado"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Añadido: {0} ({1})"
@@ -1589,7 +1593,7 @@ msgstr "Tipo de dirección"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address and other legal information you may want to put in the footer."
-msgstr "Dirección y otra información legal que desee poner en el pie de página."
+msgstr ""
#: frappe/contacts/doctype/address/address.py:205
msgid "Addresses"
@@ -1610,7 +1614,7 @@ msgstr "Agrega un script de cliente personalizado a un DocType"
msgid "Adds a custom field to a DocType"
msgstr "Agrega un campo personalizado a un DocType"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Administración"
@@ -1637,15 +1641,15 @@ msgstr "Administración"
msgid "Administrator"
msgstr "Administrador"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Administrador logeado"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
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}."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "El administrador no puede seguir"
@@ -1662,8 +1666,8 @@ msgstr "Opciones avanzadas"
msgid "Advanced Control"
msgstr "Control Avanzado"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Búsqueda Avanzada"
@@ -1744,7 +1748,7 @@ msgstr "El campo Función agregada es obligatorio para crear un cuadro de mandos
msgid "Alert"
msgstr "Alerta"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr "El alias debe ser una cadena"
@@ -1757,7 +1761,7 @@ msgstr "Alinear"
#. 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 "Alinee las etiquetas a la derecha"
+msgstr ""
#. Label of the right (Check) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
@@ -1768,6 +1772,15 @@ msgstr "Alinear a la derecha"
msgid "Align Value"
msgstr "Alinear Valor"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1800,7 +1813,7 @@ msgstr "Todos"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Todo el Día"
@@ -1812,11 +1825,11 @@ msgstr "Todas las imágenes adjuntas a la Presentación del Sitio Web deben ser
msgid "All Records"
msgstr "Todos los registros"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "Todas las entregas"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "Se eliminarán todas las personalizaciones. Por favor confirmar."
@@ -1897,31 +1910,31 @@ msgstr "Permitir ver al invitado"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Guests to Upload Files"
-msgstr "Permitir a los Invitados cargar archivos"
+msgstr ""
#. Label of the allow_import (Check) field in DocType 'DocType'
#. Label of the allow_import (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow Import (via Data Import Tool)"
-msgstr "Permitir la importación (a través de la Herramienta de Importación de Datos)"
+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 "Permitir inicio de sesión después de error"
+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 "Permitir inicio de sesión con número de teléfono móvil"
+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 "Permitir inicio de sesión con Nombre de Usuario"
+msgstr ""
#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -1932,7 +1945,7 @@ msgstr "Permitir módulos"
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Cancelled"
-msgstr "Permitir impresión para Cancelado"
+msgstr ""
#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
@@ -1944,7 +1957,7 @@ msgstr "Permitir Impresión para Borrador"
#. Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Allow Read On All Link Options"
-msgstr "Permitir leer en todas las opciones de enlace"
+msgstr ""
#. Label of the allow_rename (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -1969,13 +1982,13 @@ msgstr "Permitir la autoaprobación"
#. 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 "Permitir el envío de datos de uso para mejorar las aplicaciones"
+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 "Permitir aprobación para el creador del documento"
+msgstr ""
#. Label of the allow_comments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1992,7 +2005,7 @@ msgstr "Permitir eliminar"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow document creation via Email"
-msgstr "Permitir la creación de documentos por correo electrónico"
+msgstr ""
#. Label of the allow_edit (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -2045,13 +2058,13 @@ msgstr "Permitir en 'validar'"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow only one session per user"
-msgstr "Permitir sólo una sesión por usuario"
+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 "Permitir salto de página dentro de las tablas"
+msgstr ""
#. Label of the allow_print (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -2066,7 +2079,7 @@ msgstr ""
#. Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Allow saving if mandatory fields are not filled"
-msgstr "Permitir guardar si los campos obligatorios no están ingresados"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:424
msgid "Allow sending usage data for improving applications"
@@ -2091,24 +2104,24 @@ msgstr "Permitir a los usuarios iniciar sesión sin contraseña, utilizando un e
#. Label of the allowed (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allowed"
-msgstr "Permitido"
+msgstr ""
#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allowed File Extensions"
-msgstr "Extensiones de Archivos permitidas"
+msgstr ""
#. Label of the allowed_in_mentions (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Allowed In Mentions"
-msgstr "Permitido en Menciones"
+msgstr ""
#. Label of the allowed_modules_section (Section Break) field in DocType 'User
#. Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Allowed Modules"
-msgstr "Módulos Permitidos"
+msgstr ""
#. Label of the allowed_public_client_origins (Small Text) field in DocType
#. 'OAuth Settings'
@@ -2128,7 +2141,7 @@ msgstr "Roles permitidos"
msgid "Allowed embedding domains"
msgstr "Dominios integrados permitidos"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Precaución, autorizando 'DocType'"
@@ -2162,13 +2175,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Ya está Registrado"
@@ -2203,7 +2264,7 @@ 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 "Agregar siempre \"Borrador\" al imprimir borradores de documentos"
+msgstr ""
#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
#. 'Email Account'
@@ -2215,7 +2276,7 @@ msgstr "Utilice siempre esta dirección de correo electrónico como dirección d
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this name as sender name"
-msgstr "Utilizar siempre este nombre como nombre de remitente"
+msgstr ""
#. Label of the amend (Check) field in DocType 'Custom DocPerm'
#. Label of the amend (Check) field in DocType 'DocPerm'
@@ -2263,7 +2324,7 @@ msgstr "Corrigiento"
msgid "Amendment Naming Override"
msgstr "Sobrescribir la nomenclatura rectificada"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Enmienda no permitida"
@@ -2276,14 +2337,14 @@ msgstr "Reglas de nomenclatura rectificada actualizadas."
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Se produjo un error al configurar los valores predeterminados de la sesión"
#. 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 "Un archivo de icono con .ico extensión. Debería ser de 16 x 16 píxeles. Generado usando un generador de favicon. [favicon-generator.org]"
+msgstr ""
#: frappe/templates/includes/oauth_confirmation.html:38
msgid "An unexpected error occurred while authorizing {}."
@@ -2320,14 +2381,14 @@ msgstr "Anual"
#. Deletion Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Anonymization Matrix"
-msgstr "Matriz de anonimización"
+msgstr ""
#. Label of the anonymous (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Anonymous responses"
msgstr "Respuestas anónimas"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "Otra transacción está bloqueando esta. Por favor, inténtelo de nuevo en unos segundos."
@@ -2338,9 +2399,9 @@ msgstr "Otra {0} con el nombre {1} existe, seleccione otro nombre"
#. 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 "Se puede usar cualquier lenguaje de impresora basado en cadenas. Escribir comandos sin formato requiere el conocimiento del idioma nativo de la impresora proporcionado por el fabricante de la impresora. Consulte el manual del desarrollador proporcionado por el fabricante de la impresora sobre cómo escribir sus comandos nativos. Estos comandos se representan en el lado del servidor utilizando el lenguaje de plantillas Jinja."
+msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr "Además del Administrador del sistema, los roles con el derecho \"Establecer permisos de usuario\" pueden establecer permisos para otros usuarios para ese tipo de documento."
@@ -2360,7 +2421,7 @@ msgstr "Además del Administrador del sistema, los roles con el derecho \"Establ
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "App"
-msgstr "App"
+msgstr ""
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -2390,11 +2451,11 @@ msgstr "Nombre de la Aplicación"
msgid "App Name (Client Name)"
msgstr "Nombre de la aplicación (nombre del cliente)"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "App no encontrada para el módulo: {0}"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "Aplicación {0} no está instalada"
@@ -2405,7 +2466,7 @@ msgstr "Aplicación {0} no está instalada"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Append Emails to Sent Folder"
-msgstr "Agregar correos electrónicos a la carpeta enviada"
+msgstr ""
#. Label of the append_to (Link) field in DocType 'Email Account'
#. Label of the append_to (Link) field in DocType 'IMAP Folder'
@@ -2468,7 +2529,7 @@ msgstr ""
msgid "Apply"
msgstr "Aplicar"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Aplicar regla de asignación"
@@ -2477,11 +2538,15 @@ msgstr "Aplicar regla de asignación"
msgid "Apply Filters"
msgstr "Aplicar filtros"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+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 "Aplicar Permisos Estrictos de Usuario"
+msgstr ""
#. Label of the view (Select) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
@@ -2492,12 +2557,12 @@ msgstr "Aplicar a"
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Apply To All Document Types"
-msgstr "Aplicar a todos los tipos de documentos"
+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 "Aplicar permiso del usuario en"
+msgstr ""
#. Label of the apply_document_permissions (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -2510,13 +2575,13 @@ msgstr "Aplicar permisos de documentos"
#: 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 "Aplicar esta regla, si el usuario es el propietario"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
msgstr "Aplicar a todos los tipos de documentos"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Aplicando: {0}"
@@ -2524,18 +2589,11 @@ msgstr "Aplicando: {0}"
msgid "Approval Required"
msgstr "Aprobación requerida"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Apps"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2558,16 +2616,16 @@ msgstr "Columnas archivados"
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr "¿Está seguro de que desea borrar las asignaciones?"
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "¿Seguro que quieres eliminar todas las filas?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "¿Está seguro que desea eliminar el adjunto?"
@@ -2586,19 +2644,19 @@ 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 "¿Está seguro de que desea eliminar la sección? Todas las columnas y los campos de la sección se moverán a la sección anterior."
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
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:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "¿Está seguro de que desea generar un nuevo informe?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "¿Seguro que quieres fusionar {0} con {1}?"
@@ -2618,7 +2676,7 @@ msgstr "¿Seguro que desea volver a vincular esta comunicación a {0}?"
msgid "Are you sure you want to remove all failed jobs?"
msgstr "¿Está seguro de que desea eliminar todos los trabajos fallidos?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "¿Estás seguro de que deseas eliminar el filtro {0}?"
@@ -2647,7 +2705,7 @@ msgstr "Argumentos"
#. 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."
@@ -2667,7 +2725,7 @@ msgstr "De acuerdo con su solicitud, su cuenta y los datos de {0} asociados al c
msgid "Ask"
msgstr "Preguntar"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Asignar"
@@ -2680,7 +2738,7 @@ msgstr "Asignar condición"
msgid "Assign To"
msgstr "Asignar a"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Asignar a"
@@ -2728,9 +2786,9 @@ msgstr "Asignado por"
#. 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 "Asignado por Nombre Completo"
+msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2819,7 +2877,7 @@ msgstr "Asignaciones"
msgid "Asynchronous"
msgstr "Asíncrono"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "Se requiere al menos una columna para mostrar en la cuadrícula."
@@ -2844,7 +2902,7 @@ msgstr "Al menos un campo de Tipo de Documento Principal es obligatorio"
msgid "Attach"
msgstr "Adjuntar"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Adjuntar Documento para Imprimir"
@@ -2892,17 +2950,17 @@ msgstr "Archivo adjunto"
#. Label of the attached_to_doctype (Link) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To DocType"
-msgstr "Asociado a 'DocType'"
+msgstr ""
#. Label of the attached_to_field (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To Field"
-msgstr "Adjuntar al Campo"
+msgstr ""
#. Label of the attached_to_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To Name"
-msgstr "Asociado A Nombre"
+msgstr ""
#: frappe/core/doctype/file/file.py:153
msgid "Attached To Name must be a string or an integer"
@@ -2928,12 +2986,12 @@ msgstr "Límite de adjuntos alcanzado"
#. Label of the attachment_link (HTML) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attachment Link"
-msgstr "Enlace adjunto"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr "Adjunto Eliminado"
+msgstr ""
#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -2942,19 +3000,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Adjuntos"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "Intentando conectarse a la bandeja QZ..."
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "Intentando iniciar QZ Tray..."
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "Atribuciones"
@@ -3038,35 +3103,35 @@ msgstr "Error de autorización para {}."
#. 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 "Autorizar acceso a API"
+msgstr ""
#. Label of the authorize_api_indexing_access (Button) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Authorize API Indexing Access"
-msgstr "Autorizar el acceso a la indexación de API"
+msgstr ""
#. Label of the authorize_google_calendar_access (Button) field in DocType
#. 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Authorize Google Calendar Access"
-msgstr "Autorizar acceso a Google Calendar"
+msgstr ""
#. Label of the authorize_google_contacts_access (Button) field in DocType
#. 'Google Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Authorize Google Contacts Access"
-msgstr "Autorizar acceso a contactos de Google"
+msgstr ""
#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Authorize URL"
-msgstr "Autorizar URL"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Authorized"
-msgstr "Autorizado"
+msgstr ""
#: frappe/www/attribution.html:20
msgid "Authors"
@@ -3080,7 +3145,7 @@ msgstr "Autores / Mantenedores"
#. Provider Settings'
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Auto"
-msgstr "Auto"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -3092,7 +3157,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Auto Name"
-msgstr "Nombre Automático"
+msgstr ""
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -3133,13 +3198,13 @@ msgstr "La repetición automática falló para {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 "Respuestas Automáticas"
+msgstr ""
#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply Message"
-msgstr "Mensaje de Repuesta Automática"
+msgstr ""
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
@@ -3163,12 +3228,12 @@ msgstr "Sigue automáticamente los documentos a los que le has dado me gusta"
#. 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 "Seguir automáticamente los documentos sobre los que comenta"
+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 "Seguimiento automático de los documentos que cree"
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
@@ -3181,7 +3246,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Autocomplete"
-msgstr "Autocompletar"
+msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -3197,7 +3262,7 @@ msgstr "Automatice procesos y amplíe la funcionalidad estándar mediante script
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Automated Message"
-msgstr "Mensaje automático"
+msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -3229,7 +3294,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 "Eliminar cuenta automáticamente en (horas)"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
@@ -3279,11 +3344,6 @@ msgstr "Buen Trabajo"
msgid "Awesome, now try making an entry yourself"
msgstr "Genial, ahora intenta crear una entrada tú mismo."
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr "Awesomebar"
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3292,57 +3352,57 @@ msgstr "B"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B0"
-msgstr "B0"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B1"
-msgstr "B1"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B10"
-msgstr "B10"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B2"
-msgstr "B2"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B3"
-msgstr "B3"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B4"
-msgstr "B4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B5"
-msgstr "B5"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B6"
-msgstr "B6"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B7"
-msgstr "B7"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B8"
-msgstr "B8"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B9"
-msgstr "B9"
+msgstr ""
#. Label of the bcc (Code) field in DocType 'Communication'
#. Label of the bcc (Code) field in DocType 'Notification Recipient'
@@ -3389,17 +3449,12 @@ msgstr "Color de Fondo"
msgid "Background Image"
msgstr "Imagen de Fondo"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Trabajos en Segundo Plano"
@@ -3482,7 +3537,7 @@ msgstr "Imagen de banner"
#. 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 "El banner está sobre la barra de menú superior."
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -3512,8 +3567,8 @@ msgstr "URL Base"
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "Basado en"
@@ -3525,7 +3580,7 @@ msgstr "Basado en el campo"
#. 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 "Sobre la base de permisos para el usuario"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -3537,6 +3592,8 @@ msgstr "Básico"
msgid "Basic Info"
msgstr "Información básica"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3604,9 +3661,9 @@ msgstr "Empezando con"
#. Label of the beta (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Beta"
-msgstr "Beta"
+msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "Mejor añadir algunas más letras u otra palabra"
@@ -3654,7 +3711,7 @@ msgstr "Módulo de bloque"
#: frappe/core/doctype/module_profile/module_profile.json
#: frappe/core/doctype/user/user.json
msgid "Block Modules"
-msgstr "Módulos de Bloque"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -3690,7 +3747,7 @@ msgstr "Se requieren inicio de sesión y contraseña"
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
msgid "Bottom"
-msgstr "Fondo"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -3698,13 +3755,13 @@ msgstr "Fondo"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248
msgid "Bottom Center"
-msgstr "Parte inferior centro"
+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 "Parte inferior izquierda"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -3712,12 +3769,12 @@ msgstr "Parte inferior izquierda"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249
msgid "Bottom Right"
-msgstr "Parte inferior derecha"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Bounced"
-msgstr "Rebotados"
+msgstr ""
#. Label of the brand (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -3734,24 +3791,16 @@ msgstr "Marca HTML"
msgid "Brand Image"
msgstr "Imagen de marca"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr "Logo de la marca"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr ""
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
"has a transparent background and use the <img /> tag. Keep size as 200px x 30px"
-msgstr "Marca es lo que aparece en la parte superior izquierda de la barra de herramientas. Si es una imagen, asegúrese de que\n"
-"tiene un fondo transparente y utilice la etiqueta <img />. Mantener el tamaño como 200px x 30px"
+msgstr ""
#. Label of the breadcrumbs (Code) field in DocType 'Web Form'
#. Label of the breadcrumbs (Code) field in DocType 'Web Page'
@@ -3817,7 +3866,7 @@ msgstr "Eliminar a granel"
msgid "Bulk Edit"
msgstr "Edición masiva"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Editar en masa {0}"
@@ -3838,7 +3887,7 @@ msgstr "Exportación masiva de PDF"
msgid "Bulk Update"
msgstr "Actualización masiva"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr "La aprobación masiva solo admite hasta 500 documentos."
@@ -3850,7 +3899,7 @@ msgstr "La operación masiva está en cola en segundo plano."
msgid "Bulk operations only support up to 500 documents."
msgstr "Las operaciones masivas solo admiten hasta 500 documentos."
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr "La {0} masiva está en cola en segundo plano."
@@ -3861,7 +3910,7 @@ msgstr "La {0} masiva está en cola en segundo plano."
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Button"
-msgstr "Botón"
+msgstr ""
#. Label of the button_color (Select) field in DocType 'DocField'
#. Label of the button_color (Select) field in DocType 'Custom Field'
@@ -3875,24 +3924,24 @@ msgstr ""
#. Label of the button_gradients (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Gradients"
-msgstr "Gradientes de botones"
+msgstr ""
#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Rounded Corners"
-msgstr "Esquinas redondeadas con botones"
+msgstr ""
#. Label of the button_shadows (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Shadows"
-msgstr "Sombras de botones"
+msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By \"Naming Series\" field"
-msgstr "Por el campo \"Serie de nombres\""
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:111
#: frappe/website/doctype/web_page/web_page.js:118
@@ -3904,37 +3953,37 @@ msgstr "Por defecto, el título se usa como meta título, agregar un valor aquí
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By fieldname"
-msgstr "Por nombre de campo"
+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 "Por script"
+msgstr ""
#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
#. DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
-msgstr "Omitir dirección IP restringida Verificar si la autenticación de dos factores está habilitada"
+msgstr ""
#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
-msgstr "Saltear Two Factor Auth para usuarios que inician sesión desde una dirección IP restringida"
+msgstr ""
#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
-msgstr "Evite la verificación de la dirección IP restringida si la autenticación de dos factores está habilitada"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "C5E"
-msgstr "C5E"
+msgstr ""
#: frappe/templates/print_formats/standard_macros.html:216
msgid "CANCELLED"
@@ -3955,7 +4004,7 @@ msgstr "CC"
#. Label of the cmd (Data) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "CMD"
-msgstr "CMD"
+msgstr ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "COLOR PICKER"
@@ -3969,12 +4018,12 @@ msgstr "SELECTOR DE COLOR"
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/website/doctype/web_page/web_page.json
msgid "CSS"
-msgstr "CSS"
+msgstr ""
#. Label of the css_class (Small Text) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "CSS Class"
-msgstr "Clase CSS"
+msgstr ""
#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour
#. Step'
@@ -3987,7 +4036,7 @@ msgstr "Selector CSS para el elemento que desea resaltar."
#: 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 the cache_section (Section Break) field in DocType 'System Health
#. Report'
@@ -3999,7 +4048,7 @@ msgstr "Caché"
msgid "Cache Cleared"
msgstr "Memoria caché borrada"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Calcular"
@@ -4013,7 +4062,7 @@ msgstr "Calendario"
#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Calendar Name"
-msgstr "Nombre del Calendario"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/calendar_view/calendar_view.json
@@ -4030,31 +4079,31 @@ msgstr "Llamada"
#. 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 "Llamada a la acción"
+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 de llamada a la acción"
+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 "Mensaje de devolución de llamada"
+msgstr ""
#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Title"
-msgstr "Título de devolución de llamada"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Cámara"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4064,13 +4113,13 @@ msgstr ""
#. Campaign'
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Campaign Description (Optional)"
-msgstr "Descripción de la Campaña (opcional)"
+msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr "No se puede renombrar porque la columna {0} ya está presente en DocType."
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr "Solo puede cambiar a/desde la regla de nomenclatura Autoincremento cuando no hay datos en el Doctype"
@@ -4080,7 +4129,7 @@ msgstr "Solo puede cambiar a/desde la regla de nomenclatura Autoincremento cuand
msgid "Can only list down the document types which has been linked to the User document type."
msgstr "Sólo puede listar los tipos de documento que han sido vinculados al tipo de documento Usuario."
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr "No se pueden seguir, ya que no se hace un seguimiento de los cambios."
@@ -4102,7 +4151,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:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Cancelar"
@@ -4112,11 +4161,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Cancelar"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "Cancelar todo"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "Cancelar todos los documentos"
@@ -4128,7 +4177,7 @@ msgstr "Cancelar Importación"
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "¿Cancelar {0} documentos?"
@@ -4161,7 +4210,7 @@ msgstr "Cancelando"
msgid "Cancelling documents"
msgstr "Cancelar documentos"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "Cancelando {0}"
@@ -4169,7 +4218,7 @@ msgstr "Cancelando {0}"
msgid "Cannot Download Report due to insufficient permissions"
msgstr "No se puede Descargar el Informe debido a permisos insuficientes"
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr "No se pueden recuperar valores"
@@ -4177,7 +4226,7 @@ msgstr "No se pueden recuperar valores"
msgid "Cannot Remove"
msgstr "No se puede quitar"
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr "No se puede Actualizar Después de Validar"
@@ -4197,11 +4246,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:1062
+#: frappe/model/document.py:1061
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:1076
+#: frappe/model/document.py:1075
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)"
@@ -4213,7 +4262,7 @@ msgstr "No se puede cambiar el estado del documento cancelado (Estado{0})
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "No se puede cambiar el estado de un documento cancelado, Transition row {0}"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "No se puede cambiar a/desde autoincremento autonombre en Personalizar formulario"
@@ -4221,10 +4270,14 @@ msgstr "No se puede cambiar a/desde autoincremento autonombre en Personalizar fo
msgid "Cannot create a {0} against a child document: {1}"
msgstr "No se puede crear un {0} en contra de un documento secundario: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "No se puede crear un Área de Trabajo privado para otros usuarios"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "No se puede eliminar la carpeta principal y sus carpetas adjuntas"
@@ -4233,15 +4286,15 @@ msgstr "No se puede eliminar la carpeta principal y sus carpetas adjuntas"
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}"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "No se puede eliminar la acción estándar. Puedes esconderlo si quieres"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "No se puede eliminar el estado del documento estándar."
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "No se puede eliminar el campo estándar {0}. Puede ocultarlo en su lugar."
@@ -4252,11 +4305,11 @@ msgstr "No se puede eliminar el campo estándar {0}. Puede ocul
msgid "Cannot delete standard field. You can hide it if you want"
msgstr "No se puede eliminar el campo estándar. Puedes ocultarlo si lo deseas."
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "No se puede eliminar el enlace estándar. Puedes esconderlo si quieres"
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr "No se puede eliminar el campo generado por el sistema {0}. Puedes ocultarlo en su lugar."
@@ -4284,7 +4337,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:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "No se puede editar un documento cancelado"
@@ -4297,7 +4350,7 @@ msgstr "No se pueden editar filtros para gráficos estándar"
msgid "Cannot edit filters for standard number cards"
msgstr "No se pueden editar los filtros de los Widget numéricos estándar"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "No se pueden editar los campos estándar"
@@ -4313,15 +4366,15 @@ msgstr "No se puede encontrar el archivo {} en el disco"
msgid "Cannot get file contents of a Folder"
msgstr "No se pueden obtener los contenidos de archivo de una carpeta"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "No se pueden asignar varias impresoras a un único formato de impresión."
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "No se puede vincular al documento anulado: {0}"
@@ -4333,7 +4386,7 @@ msgstr "No se puede mapear porque falla la siguiente condición:"
msgid "Cannot match column {0} with any field"
msgstr "No se puede hacer coincidir la columna {0} con ningún campo"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "No se puede mover la fila"
@@ -4358,7 +4411,7 @@ msgid "Cannot submit {0}."
msgstr "No se puede validar {0}."
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "No se puede Actualizar {0}"
@@ -4378,7 +4431,7 @@ msgstr "No se puede {0} {1}."
msgid "Capitalization doesn't help very much."
msgstr "La capitalización no ayuda mucho."
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "Capturar"
@@ -4392,7 +4445,7 @@ msgstr "Tarjeta"
msgid "Card Break"
msgstr "Salto de tarjeta"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "Etiqueta de tarjeta"
@@ -4421,17 +4474,19 @@ msgstr "Descripción de categoría"
msgid "Category Name"
msgstr "Nombre Categoría"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr "Centro"
-#: 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 "Ciertos documentos, como una factura, no deben ser modificados una vez que están en su estado final. El estado final para estos documentos se llama 'Validado'. Puedes restringir qué roles pueden validar."
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4449,7 +4504,7 @@ msgstr "Cambia Imagen"
#. 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 "Cambiar Etiqueta (a través de Traducción Personalizada)"
+msgstr ""
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
@@ -4459,7 +4514,7 @@ msgstr "Cambiar membrete"
#. Label of the change_password (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Change Password"
-msgstr "Cambiar contraseña"
+msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
@@ -4504,7 +4559,7 @@ msgstr "Cambiar el método de redondeo in situ con los datos puede dar lugar a u
#. Label of the channel (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Channel"
-msgstr "Canal"
+msgstr ""
#. Label of the chart (Link) field in DocType 'Dashboard Chart Link'
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
@@ -4514,13 +4569,13 @@ msgstr "Gráfico"
#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Chart Configuration"
-msgstr "Configuración de gráfico"
+msgstr ""
#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Nombre del Gráfico"
@@ -4554,7 +4609,7 @@ msgstr "Gráficos"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Chat"
-msgstr "Chat"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -4585,6 +4640,12 @@ msgstr "Marque las columnas para seleccionar, arrastrar para establecer el orden
msgid "Check the Error Log for more information: {0}"
msgstr "Consulte el registro de errores para obtener más información: {0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr "Marque esto si no desea que los usuarios se registren para obtener una cuenta en su sitio. Los usuarios no tendrán acceso al escritorio a menos que usted lo proporcione explícitamente."
@@ -4593,7 +4654,7 @@ msgstr "Marque esto si no desea que los usuarios se registren para obtener una c
#. '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 "Seleccione esta opción si desea obligar al usuario a seleccionar una serie antes de guardar. No habrá ninguna por defecto si marca ésta casilla."
+msgstr ""
#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -4612,7 +4673,7 @@ msgstr "Marcar esto habilitará el seguimiento de las visitas a páginas para bl
#. DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Checking this will hide custom doctypes and reports cards in Links section"
-msgstr "Al marcar esto, se ocultarán los tipos de documentos personalizados y las tarjetas de informes en la sección Enlaces"
+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."
@@ -4629,14 +4690,14 @@ msgstr "No se permiten DocTypes hijos"
#. 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 "DocTypo hijo"
+msgstr ""
#. Label of the child (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4646,7 +4707,7 @@ msgstr ""
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:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4654,7 +4715,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr "Elija una tarjeta existente o cree una nueva tarjeta"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "Elija un bloque o continúe escribiendo"
@@ -4672,10 +4733,6 @@ msgstr "Elegir icono"
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Choose authentication method to be used by all users"
-msgstr "Elegir el método de autenticación que deben utilizar todos los usuarios"
-
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
@@ -4694,11 +4751,11 @@ msgstr "Ciudad"
msgid "Clear"
msgstr "Quitar"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "Borrar y Agregar Plantilla"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "Borrar y Agregar plantilla"
@@ -4706,7 +4763,7 @@ msgstr "Borrar y Agregar plantilla"
msgid "Clear All"
msgstr "Limpiar todo"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Borrar Asignación"
@@ -4732,7 +4789,7 @@ msgstr "Borrar registros después (días)"
msgid "Clear User Permissions"
msgstr "Borrar permisos de usuario"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "Borre el mensaje de correo electrónico y añada la plantilla"
@@ -4800,7 +4857,7 @@ msgstr "Haga clic para establecer Filtros Dinámicos"
msgid "Click to Set Filters"
msgstr "Clic para establecer filtros"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "Clic para ordenar por {0}"
@@ -4897,7 +4954,7 @@ 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 de Cliente"
+msgstr ""
#. Label of the client_script (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -4908,7 +4965,7 @@ msgstr "Guión del cliente"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Cerrar"
@@ -4916,9 +4973,9 @@ msgstr "Cerrar"
#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Close Condition"
-msgstr "Condición cerrada"
+msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr "Cerrar propiedades"
@@ -4974,12 +5031,12 @@ msgstr "Método de desafío de código"
msgid "Collapse"
msgstr "Colapso"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Contraer"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Desplegar todo"
@@ -5036,7 +5093,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5047,7 +5104,7 @@ msgstr "Color"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5092,11 +5149,11 @@ msgstr "Nombre de columna"
msgid "Column Name cannot be empty"
msgstr "Nombre de la columna no puede estar vacío"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "Ancho de Columna"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "El ancho de la columna no puede ser cero."
@@ -5134,12 +5191,12 @@ msgstr "No se permite la combinación del tipo de concesión ( {0}
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Comm10E"
-msgstr "Comm10E"
+msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5154,7 +5211,7 @@ msgstr "Comentado por"
#. Label of the comment_email (Data) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment Email"
-msgstr "Comentario de correo electrónico"
+msgstr ""
#. Label of the comment_type (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -5179,7 +5236,7 @@ msgstr "Comentarios"
#. 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 "Comentarios y Comunicaciones estarán asociados con este documento vinculado"
+msgstr ""
#: frappe/templates/includes/comments/comments.py:52
msgid "Comments cannot have links or email addresses"
@@ -5193,7 +5250,7 @@ msgstr "Redondeo comercial"
#. Label of the commit (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Commit"
-msgstr "Cometer"
+msgstr ""
#. Label of the committed (Check) field in DocType 'Console Log'
#: frappe/desk/doctype/console_log/console_log.json
@@ -5255,7 +5312,7 @@ msgstr "Historia de la compañía"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Company Introduction"
-msgstr "Presentación de la compañía"
+msgstr ""
#. Label of the company_name (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
@@ -5286,12 +5343,12 @@ msgstr "Completo"
msgid "Complete By"
msgstr "Completado por"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Registro completo"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "Completar Configuración"
@@ -5306,7 +5363,7 @@ msgstr "Completar Configuración"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Completado"
@@ -5314,7 +5371,7 @@ msgstr "Completado"
#. 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 "Completado por rol"
+msgstr ""
#. Label of the completed_by (Link) field in DocType 'Workflow Action'
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -5361,7 +5418,7 @@ msgstr ""
#. Label of the condition_json (JSON) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Condition JSON"
-msgstr "Condición JSON"
+msgstr ""
#. Label of the condition_type (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -5391,13 +5448,13 @@ msgstr ""
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Configuration"
-msgstr "Configuración"
+msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:486
msgid "Configure Chart"
msgstr "Configurar el Gráfico"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "Configurar columnas"
@@ -5460,7 +5517,7 @@ msgstr "Confirmar petición"
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr "Plantilla de correo electrónico de confirmación"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
@@ -5486,10 +5543,10 @@ msgstr "Aplicación conectada"
#. Label of the connected_user (Link) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Connected User"
-msgstr "Usuario conectado"
+msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "Conectado a la bandeja QZ!"
@@ -5518,7 +5575,7 @@ msgstr "Conexiones"
#. Label of the console (Code) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Console"
-msgstr "Consola"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/console_log/console_log.json
@@ -5532,7 +5589,7 @@ msgstr "Los registros de la consola no se pueden eliminar"
#. Label of the constraints_section (Section Break) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Constraints"
-msgstr "Restricciones"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact/contact.json
@@ -5547,7 +5604,7 @@ msgstr ""
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
-msgstr "Detalles de contacto"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact_email/contact_email.json
@@ -5557,7 +5614,7 @@ msgstr "Correo electrónico de contacto"
#. Label of the phone_nos (Table) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Numbers"
-msgstr "Números de contacto"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact_phone/contact_phone.json
@@ -5583,7 +5640,7 @@ 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 "Opciones de contacto, como \"Consulta de ventas, Consulta de soporte\", etc., cada una en una nueva línea o separada por comas."
+msgstr ""
#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -5607,7 +5664,7 @@ msgstr "Contiene {0} correcciones de seguridad"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5618,12 +5675,12 @@ msgstr "Contenido"
#. Label of the content_hash (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Content Hash"
-msgstr "Contenido Hash"
+msgstr ""
#. Label of the content_type (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
-msgstr "Tipo de contenido"
+msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:88
msgid "Content data shoud be a list"
@@ -5638,12 +5695,12 @@ msgstr "Tipo de contenido para construir la página"
#: frappe/core/doctype/translation/translation.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Context"
-msgstr "Contexto"
+msgstr ""
#. Label of the context_script (Code) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Context Script"
-msgstr "Guión de contexto"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:204
#: frappe/public/js/frappe/widgets/onboarding_widget.js:232
@@ -5659,28 +5716,28 @@ msgstr ""
#. Label of the contributed (Check) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contributed"
-msgstr "Contribuido"
+msgstr ""
#. Label of the contribution_docname (Data) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contribution Document Name"
-msgstr "Nombre del documento de contribución"
+msgstr ""
#. Label of the contribution_status (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contribution Status"
-msgstr "Estado de contribución"
+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 "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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "Copiado al portapapeles."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5692,12 +5749,12 @@ msgstr "Copiar Enlace"
msgid "Copy embed code"
msgstr "Copiar código incrustado"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "Copiar error al Portapapeles"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "Copiar al Portapapeles"
@@ -5718,7 +5775,7 @@ msgstr "Core DocTypes no se puede personalizar."
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "Los módulos principales {0} no se pueden buscar en la búsqueda global."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "Versión correcta:"
@@ -5726,7 +5783,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:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "No se pudo encontrar {0}"
@@ -5734,11 +5791,11 @@ 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:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5746,7 +5803,7 @@ msgstr ""
msgid "Could not start up:"
msgstr "No se pudo iniciar:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "No se pudo guardar, verifique los datos que ingresó"
@@ -5798,7 +5855,7 @@ msgstr "Contador"
msgid "Country"
msgstr "País"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "Código de País requerido"
@@ -5825,15 +5882,16 @@ msgstr "Cr"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Crear"
@@ -5846,13 +5904,13 @@ msgstr "Crear y Continuar"
msgid "Create Address"
msgstr "Crear dirección"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "Crear tarjeta"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "Crear gráfico"
@@ -5863,7 +5921,7 @@ msgstr "Crear Doctype hijo"
#. 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 "Crear contactos a partir de correos electrónicos entrantes"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -5886,7 +5944,7 @@ msgstr "Crear registro"
msgid "Create New"
msgstr "Crear"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Crear nuevo"
@@ -5899,7 +5957,7 @@ msgstr "Crear nuevo DocType"
msgid "Create New Kanban Board"
msgstr "Crear un nuevo Tablero Kanban"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5915,18 +5973,18 @@ msgstr "Crear un Nuevo Formato"
msgid "Create a Reminder"
msgstr "Crear un Recordatorio"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "Crear un nuevo..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "Crea un nuevo registro"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Crear: {0}"
@@ -5943,7 +6001,7 @@ msgstr "Crear o Editar Formato Impresión"
msgid "Create or Edit Workflow"
msgstr "Crear o editar Flujo de Trabajo"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "Crea tu primer {0}"
@@ -5962,13 +6020,21 @@ msgstr "Creado"
msgid "Created At"
msgstr "Creado el"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Creado por"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "Creado campo personalizado {0} en {1}"
@@ -5996,7 +6062,7 @@ msgstr "La creación de este documento solo está permitida en el modo de desarr
#: 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 the cron_format (Data) field in DocType 'Scheduled Job Type'
#. Label of the cron_format (Data) field in DocType 'Server Script'
@@ -6072,7 +6138,7 @@ msgstr ""
#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Current Job ID"
-msgstr "Id de Trabajo actual"
+msgstr ""
#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -6116,13 +6182,13 @@ msgstr "Personalizar"
#. 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 Base Personalizada"
+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 "Nombre de bloque personalizado"
+msgstr ""
#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
#. Label of the custom_blocks (Table) field in DocType 'Workspace'
@@ -6141,7 +6207,7 @@ msgstr "CSS personalizado"
#. 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Custom Configuration"
-msgstr "Configuración personalizada"
+msgstr ""
#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -6162,7 +6228,7 @@ msgstr "Tipos de documentos personalizados (Seleccionar permiso)"
msgid "Custom Document Types Limit Exceeded"
msgstr "Límite de tipos de documentos personalizados superado"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "Documentos personalizados"
@@ -6173,15 +6239,15 @@ msgstr "Documentos personalizados"
msgid "Custom Field"
msgstr "Campo Personalizado"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "El campo personalizado {0} lo crea el administrador y solo se puede eliminar a través de la cuenta de administrador."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Los campos personalizados solo se pueden agregar a un DocType estándar."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Los campos personalizados no se pueden agregar a los DocTypes principales."
@@ -6200,14 +6266,14 @@ msgstr "Formato Personalizado"
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Custom Group Search"
-msgstr "Búsqueda de grupo personalizada"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122
msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com"
msgstr "Búsqueda de grupo personalizada si se rellena necesita contener el marcador de posición de usuario {0}, por ejemplo 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/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "HTML Personalizado"
@@ -6236,7 +6302,7 @@ msgstr "Etiqueta personalizada"
#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Menu Items"
-msgstr "Menú Items Personalizados"
+msgstr ""
#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -6246,14 +6312,14 @@ msgstr "Opciones personalizadas"
#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom Overrides"
-msgstr "Anulaciones personalizadas"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Custom Report"
msgstr "Informe personalizado"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "Informes personalizados"
@@ -6265,24 +6331,24 @@ msgstr "Rol Personalizado"
#. Label of the custom_scss (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom SCSS"
-msgstr "SCSS personalizado"
+msgstr ""
#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Sidebar Menu"
-msgstr "Menú Lateral Personalizado"
+msgstr ""
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Custom Translation"
msgstr "Traducción personalizada"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "Campo personalizado renombrado a {0} exitosamente."
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6305,26 +6371,26 @@ msgstr "¿Es personalizado? (Solo para esta web)"
msgid "Customization"
msgstr "Personalización"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "Personalizaciones descartadas"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "Restablecimiento de Personalizaciones"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "Personalizaciones para {0} exportadas a:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Personalización"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Personalizar"
@@ -6377,7 +6443,7 @@ msgstr "Cian"
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "DELETE"
-msgstr "DELETE"
+msgstr ""
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
@@ -6421,7 +6487,7 @@ msgstr "Diario"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "Resumen Diario de Eventos se envía para Eventos en el Calendario cuando se han agregado recordatorios."
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "Los eventos diarios deben finalizar el mismo día."
@@ -6478,8 +6544,8 @@ msgstr "Tema Oscuro"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "Tablero"
@@ -6727,9 +6793,9 @@ msgstr "Días anteriores"
#. Label of the days_in_advance (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr "Días antes o despues"
+msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "Se produjo un bloqueo"
@@ -6806,7 +6872,7 @@ msgstr "Aplicación predeterminada"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Email Template"
-msgstr "Plantilla de Correo predeterminado"
+msgstr ""
#: frappe/email/doctype/email_account/email_account_list.js:13
msgid "Default Inbox"
@@ -6821,7 +6887,7 @@ msgstr "Por defecto entrante"
#. Label of the is_default (Check) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Default Letter Head"
-msgstr "Encabezado Predeterminado"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
@@ -6830,7 +6896,7 @@ msgstr "Encabezado Predeterminado"
#: 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 "Nomenclatura por defecto"
+msgstr ""
#. Label of the default_outgoing (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -6841,29 +6907,29 @@ msgstr "Predeterminar Saliente"
#. 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 "Inicio del portal predeterminado"
+msgstr ""
#. Label of the default_print_format (Data) field in DocType 'DocType'
#. Label of the default_print_format (Link) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "Formato de impresión por defecto"
+msgstr ""
#. Label of the default_print_language (Link) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Default Print Language"
-msgstr "Lenguaje de impresión predeterminado"
+msgstr ""
#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Default Redirect URI"
-msgstr "Predeterminado URI de redireccionamiento"
+msgstr ""
#. Label of the default_role (Link) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Role at Time of Signup"
-msgstr "El papel predeterminado en el momento de la Inscripción"
+msgstr ""
#: frappe/email/doctype/email_account/email_account_list.js:16
msgid "Default Sending"
@@ -6876,12 +6942,12 @@ msgstr "Bandeja de entrada y envío por defecto"
#. Label of the sort_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Field"
-msgstr "Campo de clasificación predeterminado"
+msgstr ""
#. Label of the sort_order (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Order"
-msgstr "Orden de clasificación predeterminado"
+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
@@ -6895,12 +6961,12 @@ msgstr "Tema predeterminado"
#. Label of the default_role (Link) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Role"
-msgstr "Rol de usuario por defecto"
+msgstr ""
#. Label of the default_user_type (Link) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Type"
-msgstr "Tipo de usuario por defecto"
+msgstr ""
#. Label of the default (Text) field in DocType 'Custom Field'
#. Label of the default_value (Data) field in DocType 'Property Setter'
@@ -6926,11 +6992,11 @@ msgstr "Espacio de trabajo predeterminado"
msgid "Default display currency"
msgstr "Moneda de visualización por defecto"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "El valor predeterminado para el tipo 'Verificar' del campo {0} debe ser '0' o '1'"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "El valor predeterminado para {0} debe estar en la lista de opciones."
@@ -6941,7 +7007,7 @@ msgstr "Predeterminado {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 "Por defecto: \"Contáctenos\""
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/defaultvalue/defaultvalue.json
@@ -6987,11 +7053,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6999,7 +7066,7 @@ msgstr ""
msgid "Delete"
msgstr "Eliminar"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Eliminar"
@@ -7013,10 +7080,6 @@ msgstr "Eliminar"
msgid "Delete Account"
msgstr "Eliminar Cuenta"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "Borrar Todo"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7046,7 +7109,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Eliminar pestaña"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "Eliminar y Generar Nuevo"
@@ -7074,6 +7145,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "Eliminar toda la sección con los campos"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7088,16 +7163,20 @@ 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:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
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:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "¿Eliminar {0} artículos de forma permanente?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7112,7 +7191,7 @@ msgstr "Eliminado"
#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted DocType"
-msgstr "DocType eliminado"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/deleted_document/deleted_document.json
@@ -7122,13 +7201,13 @@ msgstr "Documento Eliminado"
#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr "Nombre borrado"
+msgstr ""
#: frappe/desk/reportview.py:644
msgid "Deleted all documents successfully"
msgstr "Todos los documentos eliminados con éxito"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Eliminado!"
@@ -7201,7 +7280,7 @@ msgstr "Dependencias y Licencias"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Depends On"
-msgstr "Depende de"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:32
msgid "Descendants Of"
@@ -7235,6 +7314,7 @@ msgstr "Descendientes de (inclusive)"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7268,17 +7348,17 @@ msgstr ""
#. Label of the desk_access (Check) field in DocType 'Role'
#: frappe/core/doctype/role/role.json
msgid "Desk Access"
-msgstr "Acceso a Escritorio"
+msgstr ""
#. Label of the desk_settings_section (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Desk Settings"
-msgstr "Configuración del Escritorio"
+msgstr ""
#. Label of the desk_theme (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Desk Theme"
-msgstr "Tema de Escritorio"
+msgstr ""
#. Name of a role
#: frappe/automation/doctype/reminder/reminder.json
@@ -7317,16 +7397,21 @@ msgstr "Tema de Escritorio"
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr "Escritorio"
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "Icono de escritorio"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7356,11 +7441,11 @@ msgstr "Detalles"
msgid "Detect CSV type"
msgstr "Detectar tipo CSV"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "No se ha añadido"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "No se eliminó"
@@ -7371,23 +7456,23 @@ msgstr "Dif."
#. 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 "Pueden existir diferentes estados para este documento: 'Abierto', 'Pendiente de Aprobación', etc."
+msgstr ""
#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Digits"
-msgstr "Dígitos"
+msgstr ""
#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Directory Server"
-msgstr "Servidor de Directorio"
+msgstr ""
#. Label of the disable_auto_refresh (Check) field in DocType 'List View
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Auto Refresh"
-msgstr "Desactivar actualización automática"
+msgstr ""
#. Label of the disable_automatic_recency_filters (Check) field in DocType
#. 'List View Settings'
@@ -7399,13 +7484,13 @@ msgstr ""
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Change Log Notification"
-msgstr "Deshabilitar la notificación del Registro de Cambios"
+msgstr ""
#. Label of the disable_comment_count (Check) field in DocType 'List View
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Comment Count"
-msgstr "Desactivar recuento de comentarios"
+msgstr ""
#. Label of the disable_count (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
@@ -7431,7 +7516,7 @@ msgstr "Desactivar reporte"
#. 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 "Deshabilitar la autenticación del servidor SMTP"
+msgstr ""
#. Label of the disable_scrolling (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
@@ -7452,24 +7537,24 @@ msgstr "Desactivar el registro para su sitio"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Standard Email Footer"
-msgstr "Desactivar pie de página estándar en los correos electrónicos"
+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 "Desactivar la notificación de Actualización del Sistema"
+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 "Deshabilitar el inicio de sesión con nombre de Usuario/Contraseña"
+msgstr ""
#. Label of the disable_signup (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Disable signups"
-msgstr "Deshabilitar registros"
+msgstr ""
#. Label of the disabled (Check) field in DocType 'Assignment Rule'
#. Label of the disabled (Check) field in DocType 'Auto Repeat'
@@ -7508,10 +7593,11 @@ msgstr "Deshabilitado"
msgid "Disabled Auto Reply"
msgstr "Respuesta automática deshabilitada"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Descartar"
@@ -7525,11 +7611,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Descartar"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "Descartar {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "¿Descartar?"
@@ -7603,11 +7689,11 @@ msgstr "No crear nuevo usuario"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "No crear nuevo usuario si el usuario con correo electrónico no existe en el sistema"
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "No edite los encabezados que están preestablecidos en la plantilla"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7615,7 +7701,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr "¿Aún quiere continuar?"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "¿Desea cancelar todos los documentos vinculados?"
@@ -7673,7 +7759,6 @@ msgstr "El DocStatus de los siguientes estados ha cambiado:
{0}{0}{0}{0} provided for the field {1} must have atleast one Link field"
msgstr "El tipo de documento {0} proporcionado para el campo {1} debe tener al menos un campo de enlace"
@@ -7777,10 +7861,6 @@ msgstr "DocType es una Tabla/ Formulario en la aplicación."
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "El tipo de documento se debe poder Validar para el evento de Documento Seleccionado"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "DocType debe ser una cadena"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "DocType debe tener al menos un campo"
@@ -7792,21 +7872,21 @@ msgstr "DocType no soportado por la configuración del registro."
#. 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 "El flujo de trabajo será aplicable en el documento seleccionado."
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
msgid "DocType required"
msgstr "Doctype Requerido"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "DocType {0} no existe."
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "DocType {} no encontrado"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "El nombre de DocType no debe comenzar ni terminar con espacios en blanco"
@@ -7820,7 +7900,7 @@ msgstr "Los DocTypes no se pueden modificar, utilice {0} en su lugar"
msgid "Doctype"
msgstr "Doctype"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "El nombre de los Doctype está limitado a {0} caracteres ({1})"
@@ -7859,7 +7939,7 @@ msgstr "Acciones de documento"
msgid "Document Follow"
msgstr "Seguir documento"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "Notificación de seguimiento de documento"
@@ -7872,7 +7952,7 @@ msgstr "Enlace de documento"
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Document Linking"
-msgstr "Vinculación de documentos"
+msgstr ""
#. Label of the links (Table) field in DocType 'DocType'
#. Label of the document_links_section (Section Break) field in DocType
@@ -7882,19 +7962,19 @@ msgstr "Vinculación de documentos"
msgid "Document Links"
msgstr "Enlaces de documentos"
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "Fila de enlaces de documento #{0}: no se pudo encontrar el campo {1} en {2} DocType"
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "Fila de enlaces de documento #{0}: doctype o nombre de campo no válido."
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "Documento Links Row #{0}: El DocType padre es obligatorio para los enlaces internos"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr "Documento Links Row #{0}: El nombre del campo de tabla es obligatorio para los enlaces internos"
@@ -7913,9 +7993,9 @@ msgstr "Documento Links Row #{0}: El nombre del campo de tabla es obligatorio p
msgid "Document Name"
msgstr "Nombre de Documento"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "Nombre del documento debe ser una cadena"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7932,7 +8012,7 @@ msgstr "Condición de la regla de nomenclatura de documentos"
msgid "Document Naming Settings"
msgstr "Configuración de Nombres de documentos"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "Documento en Cola"
@@ -8036,7 +8116,7 @@ msgstr "Titulo del documento"
#: 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:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8056,18 +8136,18 @@ msgstr "Tipo de Documento"
msgid "Document Type and Function are required to create a number card"
msgstr "El tipo de documento y la función son necesarios para crear un Widget numérico"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "El tipo de documento no es importable"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "El tipo de documento no se puede ser validado"
#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr "Tipo de documento a seguir"
+msgstr ""
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
@@ -8089,27 +8169,27 @@ msgid "Document Types and Permissions"
msgstr "Tipos de documentos y permisos"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "Documento desbloqueado"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "El seguimiento de documentos no está habilitado para este usuario."
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "El documento ha sido cancelado"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "El documento ha sido validado"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "El documento está en estado de borrador"
@@ -8121,11 +8201,11 @@ msgstr "Este documento es solo editable por usuarios de ese rol"
msgid "Document not Relinked"
msgstr "Documento no re-vinculado"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "Documento renombrado de {0} a {1}"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "El cambio de nombre del documento de {0} a {1} está en cola"
@@ -8141,10 +8221,6 @@ msgstr "Documento {0} ya restaurado"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "El documento {0} se ha configurado en estado {1} por {2}"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "El documento {0} {1} no existe"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8196,13 +8272,13 @@ msgstr "Configuraciones de Dominio"
#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domains HTML"
-msgstr "Dominios HTML"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
#. Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr "No etiquetas HTML Codificar HTML, como <script> o simplemente caracteres como <u>, ya que podrían ser utilizados intencionadamente en este campo"
+msgstr ""
#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
@@ -8214,12 +8290,12 @@ msgstr "No importar"
#: frappe/workflow/doctype/workflow/workflow.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Don't Override Status"
-msgstr "No sobreescriba el estado"
+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 "No envíe correos electrónicos"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
@@ -8282,7 +8358,7 @@ msgstr "Enlace de descarga"
msgid "Download PDF"
msgstr "Descargar PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "Descargar Informe"
@@ -8353,7 +8429,7 @@ msgstr "Soltar archivos aquí"
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Dropdowns"
-msgstr "Listas deplegables"
+msgstr ""
#. Label of the date (Date) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
@@ -8363,10 +8439,10 @@ 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 "Fecha de Vencimiento basada en"
+msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr ""
@@ -8374,19 +8450,15 @@ msgstr ""
msgid "Duplicate Entry"
msgstr "Entrada duplicada"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "Nombre de Fltro Duplicado"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Nombre duplicado"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "Duplicar fila actual"
@@ -8394,6 +8466,18 @@ msgstr "Duplicar fila actual"
msgid "Duplicate field"
msgstr "Campo duplicado"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8420,20 +8504,20 @@ msgstr ""
#. 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Dynamic Filters"
-msgstr "Filtros dinámicos"
+msgstr ""
#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart'
#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Dynamic Filters JSON"
-msgstr "JSON de filtros dinámicos"
+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 "Sección de filtros dinámicos"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Name of a DocType
@@ -8454,17 +8538,17 @@ msgstr "Enlace Dinámico"
#. 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Dynamic Report Filters"
-msgstr "Filtros de informes dinámicos"
+msgstr ""
#. Label of the dynamic_route (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Route"
-msgstr "Ruta Dinámica"
+msgstr ""
#. Label of the dynamic_template (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Template"
-msgstr "Plantilla dinámica"
+msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
msgid "ESC"
@@ -8481,9 +8565,10 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8494,7 +8579,7 @@ msgstr "ESC"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8504,7 +8589,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8525,15 +8610,15 @@ msgstr "Editar gráfico"
msgid "Edit Custom Block"
msgstr "Editar bloque personalizado"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "Editar HTML personalizado"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "Editar DocType"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Editar DocType"
@@ -8547,7 +8632,7 @@ msgstr "Editar existente"
msgid "Edit Filters"
msgstr "Editar filtros"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "Editar filtros"
@@ -8560,7 +8645,7 @@ msgstr "Editar pie de página"
msgid "Edit Format"
msgstr "Editar formato"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8618,7 +8703,7 @@ msgstr "Editar Lista Rápida"
msgid "Edit Shortcut"
msgstr "Editar Atajo"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr "Editar barra lateral"
@@ -8641,11 +8726,11 @@ msgstr "Modo edición"
msgid "Edit the {0} Doctype"
msgstr "Editar el doctype {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "Editar para agregar contenido"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "Editar su respuesta"
@@ -8680,7 +8765,7 @@ msgstr "Editando {0}"
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Eg. smsgateway.com/api/send_sms.cgi"
-msgstr "Ej. smsgateway.com/api/send_sms.cgi"
+msgstr ""
#: frappe/rate_limiter.py:152
msgid "Either key or IP flag is required."
@@ -8689,7 +8774,7 @@ msgstr "Se requiere la clave o flag 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 "Selector de elementos"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Label of the email (Check) field in DocType 'Custom DocPerm'
@@ -8701,6 +8786,7 @@ msgstr "Selector de elementos"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8716,12 +8802,14 @@ msgstr "Selector de elementos"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8754,9 +8842,9 @@ msgstr "Cuenta de correo desactivada."
#. 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 "Cuenta de correo electrónico"
+msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "Cuenta de correo electrónico añadida varias veces"
@@ -8785,7 +8873,7 @@ msgstr "Dirección de correo electrónico"
#. 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 "Dirección de correo electrónico cuyos contactos de Google se deben sincronizar."
+msgstr ""
#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
@@ -8805,7 +8893,7 @@ msgstr "Señal de la bandera del correo electrónico"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr "Adjuntar dirección en pie de página"
+msgstr ""
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
@@ -8848,7 +8936,7 @@ msgstr ""
#. Label of the email_inbox (Section Break) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr "Bandeja de entrada de email"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/email_queue/email_queue.json
@@ -8872,12 +8960,12 @@ msgstr "Registros de Cola de Correo Electrónico."
#. 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 "Correo Electrónico Responder Ayuda"
+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 "Límite de reintentos de correo electrónico"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/email_rule/email_rule.json
@@ -8901,22 +8989,22 @@ msgstr "Correo enviado el"
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email Settings"
-msgstr "Configuración de Correo Electrónico"
+msgstr ""
#. Label of the email_signature (Text Editor) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Email Signature"
-msgstr "Firma de Correo Electrónico"
+msgstr ""
#. Label of the email_status (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Status"
-msgstr "Estado de Correo Electrónico"
+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 "Opción de Sincronizar Correo Electrónico"
+msgstr ""
#. Label of the email_template (Link) field in DocType 'Communication'
#. Name of a DocType
@@ -8935,7 +9023,7 @@ msgstr "Hilos de correo electrónico sobre el documento asignado"
#. Label of the email_to (Small Text) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email To"
-msgstr "Email para"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
@@ -8954,7 +9042,7 @@ msgstr "El correo electrónico se ha movido a la papelera"
msgid "Email is mandatory to create User Email"
msgstr "El correo electrónico es obligatorio para crear el correo electrónico del usuario."
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8987,13 +9075,13 @@ msgstr "Los correos electrónicos se silencian"
#. 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 "Los Correos Electrónicos se enviarán con las próximas acciones de flujo de trabajo posibles"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:34
msgid "Embed code copied"
msgstr "Código integrado copiado"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -9001,7 +9089,7 @@ msgstr ""
msgid "Empty column"
msgstr "Columna vacía"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9038,7 +9126,7 @@ msgstr "Habilitar Respuesta Automática"
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Automatic Linking in Documents"
-msgstr "Habilitar la vinculación automática en documentos"
+msgstr ""
#. Label of the enable_comments (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
@@ -9142,7 +9230,7 @@ msgstr "Habilitar seguridad"
#. 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 "Habilitar Sesión Social"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:139
msgid "Enable Tracking Page Views"
@@ -9218,7 +9306,7 @@ msgstr "Bandeja de entrada de correo electrónico habilitada para el usuario {0}
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enables Calendar and Gantt views."
-msgstr "Habilita las vistas Calendario y Gantt."
+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?"
@@ -9271,7 +9359,7 @@ msgstr "Fecha Final"
#. Label of the end_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "End Date Field"
-msgstr "Campo de Fecha de Finalización"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.py:208
msgid "End Date cannot be before Start Date!"
@@ -9286,28 +9374,28 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Ended At"
-msgstr "Terminado a las"
+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 "Endpoints"
+msgstr ""
#. Label of the ends_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr "Finaliza el"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Energy Point"
-msgstr "Punto de energía"
+msgstr ""
#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Enqueued By"
-msgstr "Encolado por"
+msgstr ""
#: frappe/core/doctype/recorder/recorder.py:125
msgid "Enqueued creation of indexes"
@@ -9321,18 +9409,18 @@ msgstr "Asegúrese de que las rutas de búsqueda de usuarios y grupos son correc
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Ingrese el ID del cliente y el secreto del cliente en la configuración de Google."
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "Ingrese el código que se muestra en la aplicación OTP."
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
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 "Seleccione el Tipo de Formulario"
+msgstr ""
#: frappe/public/js/frappe/ui/messages.js:94
msgctxt "Title of prompt dialog"
@@ -9346,29 +9434,33 @@ msgstr "Introduzca un nombre para este {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 "Ingrese campos del valor por defecto (claves) y valores. Si agrega varios valores para un campo, el primero de será elegido. Estos valores predeterminados se utilizan también para \"emparejar\" reglas de permisos. Para ver la lista de campos, vaya a \"Personalizar Formulario\"."
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:111
msgid "Enter folder name"
msgstr "Introduzca nombre de carpeta"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+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 "Introduzca los parámetros de URL aquí (Ej. sender = ERPNext , nombre de usuario = ERPNext , contraseña = 1234 etc )"
+msgstr ""
#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for message"
-msgstr "Introduzca el parámetro url para el mensaje"
+msgstr ""
#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for receiver nos"
-msgstr "Introduzca el parámetro url para los números de los receptores"
+msgstr ""
#: frappe/public/js/frappe/ui/messages.js:341
msgid "Enter your password"
@@ -9382,7 +9474,7 @@ msgstr "Nombre de la Entidad"
msgid "Entity Type"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Iguales"
@@ -9416,7 +9508,7 @@ msgstr "Iguales"
msgid "Error"
msgstr "Error"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Error"
@@ -9431,12 +9523,12 @@ msgstr "Registro de Errores"
msgid "Error Logs"
msgstr "Registros de errores"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Error al conectarse a la aplicación QZ Tray...
Debe tener la aplicación QZ Tray instalada y en ejecución, para usar la función de Impresión sin formato.
Haga clic aquí para descargar e instalar la bandeja QZ.
Haga clic aquí para obtener más información sobre la impresión sin procesar."
@@ -9474,15 +9566,15 @@ 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
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr "Error al analizar filtros anidados: {0}. {1}"
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9498,15 +9590,15 @@ msgstr "Error al evaluar Notificación {0}. Por favor arregla tu plantilla."
msgid "Error {0}: {1}"
msgstr "Error {0}: {1}"
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "Error: Faltan datos en la tabla {0}"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "Error: falta el valor para {0}: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Error: {0} Fila #{1}: Valor faltante para: {2}"
@@ -9516,6 +9608,12 @@ msgstr "Error: {0} Fila #{1}: Valor faltante para: {2}"
msgid "Errors"
msgstr "Errores"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9527,12 +9625,17 @@ msgstr "Evento"
#. Label of the event_category (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr "Categoría de Evento"
+msgstr ""
#. Label of the event_frequency (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
-msgstr "Frecuencia del Evento"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
@@ -9559,11 +9662,11 @@ msgstr "Evento sincronizado con Google Calendar."
msgid "Event Type"
msgstr "Tipo de Evento"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "Eventos"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "Eventos en el calendario de hoy"
@@ -9585,6 +9688,7 @@ msgid "Exact Copies"
msgstr "Copias exactas"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr "Ejemplo"
@@ -9603,24 +9707,24 @@ msgstr "Ejemplo: #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 "Ejemplo: 00001"
+msgstr ""
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
-msgstr "Ejemplo: al configurar esto en 24:00, cerrará la sesión de un usuario si no está activo durante las 24:00 horas."
+msgstr ""
#. Description of the 'Description' (Small Text) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Example: {{ subject }}"
-msgstr "Ejemplo: {{ subject }}"
+msgstr ""
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Excel"
-msgstr "Excel"
+msgstr ""
#: frappe/public/js/frappe/form/controls/password.js:90
msgid "Excellent"
@@ -9633,7 +9737,7 @@ msgstr "Excelente"
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Exception"
-msgstr "Excepción"
+msgstr ""
#. Label of the execute_section (Section Break) field in DocType 'System
#. Console'
@@ -9655,14 +9759,14 @@ msgstr ""
msgid "Executing..."
msgstr "Ejecutando..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "Tiempo de ejecución: {0} segundos"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Executive"
-msgstr "Ejecutivo"
+msgstr ""
#. Label of the existing_role (Link) field in DocType 'Role Replication'
#: frappe/core/doctype/role_replication/role_replication.json
@@ -9676,28 +9780,28 @@ msgstr "Rol existente"
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "Experimental"
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Expert"
-msgstr "Experto"
+msgstr ""
#. Label of the expiration_time (Datetime) field in DocType 'OAuth
#. Authorization Code'
@@ -9706,12 +9810,12 @@ msgstr "Experto"
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Expiration time"
-msgstr "Tiempo de expiración"
+msgstr ""
#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Expire Notification On"
-msgstr "Notificación Expirará en"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'User Invitation'
@@ -9725,7 +9829,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Expires In"
-msgstr "Expira en"
+msgstr ""
#. Label of the expires_on (Date) field in DocType 'Document Share Key'
#: frappe/core/doctype/document_share_key/document_share_key.json
@@ -9735,27 +9839,28 @@ 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 "Tiempo de expiración de Pagina de Código QR"
+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/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportar"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportar"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "Exportar 1 registro"
@@ -9779,7 +9884,7 @@ msgstr ""
#. Label of the export_from (Data) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Export From"
-msgstr "Exportar desde"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:544
msgid "Export Import Log"
@@ -9794,11 +9899,11 @@ msgstr "Exportar Reporte: {0}"
msgid "Export Type"
msgstr "Tipo de Exportación"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "¿Exportar todas las filas coincidentes?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "¿Exportar todas las {0} filas?"
@@ -9814,6 +9919,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr "Exportación no permitida. Se necesita el rol {0} para exportar."
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9826,7 +9935,7 @@ msgstr "Exportar los datos sin notas de encabezado ni descripciones de columnas"
msgid "Export without main header"
msgstr "Exportar sin encabezado principal"
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "Exportar {0} registros"
@@ -9837,27 +9946,27 @@ msgstr "Los permisos exportados se sincronizarán forzosamente en cada migració
#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr "Exponer Destinatarios"
+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 "Expresión"
+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 "Expresión (estilo antiguo)"
+msgstr ""
#. Description of the 'Condition' (Data) field in DocType 'Notification
#. Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Expression, Optional"
-msgstr "Expresión, Opcional"
+msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -9866,7 +9975,7 @@ msgstr "Externo"
#. Label of the external_link (Data) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "Enlace externo"
@@ -9874,13 +9983,13 @@ msgstr "Enlace externo"
#. App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Extra Parameters"
-msgstr "Parámetros extra"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Facebook"
-msgstr "Facebook"
+msgstr ""
#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
#. Health Report'
@@ -9907,7 +10016,7 @@ msgstr "Correos electrónicos fallidos"
#. 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 "Recuento de trabajos fallidos"
+msgstr ""
#. Label of the failed_jobs (Int) field in DocType 'System Health Report
#. Workers'
@@ -9915,12 +10024,17 @@ msgstr "Recuento de trabajos fallidos"
msgid "Failed Jobs"
msgstr "Trabajos fallidos"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+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 "Inicios de sesión fallidos (últimos 30 días)"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "Transacciones fallidas"
@@ -9983,7 +10097,7 @@ msgstr "No se pudo generar la vista previa de la serie"
msgid "Failed to get method for command {0} with {1}"
msgstr "Fallo al obtener el método para el comando {0} con {1}"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "Fallo al obtener el método {0} con {1}"
@@ -9995,7 +10109,7 @@ msgstr "Fallo al obtener la información del sitio"
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "Fallo al importar doctype virtual {}, ¿está presente el archivo controlador?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "Fallo en la optimización de la imagen: {0}"
@@ -10011,7 +10125,7 @@ msgstr "Fallo al procesar el asunto: {}"
msgid "Failed to request login to Frappe Cloud"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "Error al enviar correo electrónico con asunto:"
@@ -10046,14 +10160,14 @@ msgstr "Tasa de fallos"
#. 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 the fax (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr "Fax"
+msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr ""
@@ -10070,7 +10184,7 @@ msgstr "Femenino"
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr "Obtener De"
+msgstr ""
#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
@@ -10087,7 +10201,7 @@ msgstr "Recuperar imágenes adjuntas del documento"
#: 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 "Obtener en Guardar si está vacío"
+msgstr ""
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61
msgid "Fetching default Global Search documents."
@@ -10113,8 +10227,8 @@ msgstr "Obteniendo campos de {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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10124,7 +10238,7 @@ msgstr "Campo"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "El campo \"ruta\" es obligatoria para las vistas web"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "El campo \"título\" es obligatorio si se establece \"Campo de búsqueda en el sitio web\"."
@@ -10132,16 +10246,16 @@ msgstr "El campo \"título\" es obligatorio si se establece \"Campo de búsqueda
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "El campo \"valor\" es obligatorio. Por favor, especifique un valor a ser actualizado"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr "Campo {0} no encontrado en {1}"
#. Label of the description (Text) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr "Descripción de Campo"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Falta campo"
@@ -10178,18 +10292,18 @@ msgstr "Campo no permitido en consulta"
#. 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 "Campo que representa el estado del flujo de trabajo de la transacción (si el campo no está presente, se creará un nuevo campo personalizado oculto)"
+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 "Campo a seguir"
+msgstr ""
#: frappe/custom/doctype/property_setter/property_setter.py:52
msgid "Field type cannot be changed for {0}"
msgstr "El Tipo de Campo no se puede cambiar para {0}"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "El campo {0} no existe en {1}"
@@ -10197,11 +10311,11 @@ msgstr "El campo {0} no existe en {1}"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "El campo {0} se refiere a un doctype inexistente {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Campo {0} no encontrado."
@@ -10223,7 +10337,7 @@ msgstr "El campo {0} del documento {1} no es ni un campo de número de móvil ni
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Nombre del campo"
@@ -10232,7 +10346,7 @@ msgstr "Nombre del campo"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "Nombre de campo '{0}' en conflicto con un {1} del nombre {2} en {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "El nombre de campo llamado {0} debe existir para habilitar el nombre automático"
@@ -10240,7 +10354,7 @@ msgstr "El nombre de campo llamado {0} debe existir para habilitar el nombre aut
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Nombre de campo está limitado a 64 caracteres ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Nombre de campo no establecido para el dato personalizado"
@@ -10256,7 +10370,7 @@ msgstr "El nombre de campo {0} aparece varias veces"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "El nombre del campo {0} no puede tener caracteres especiales como {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Nombre de campo {0} en conflicto con el metaobjeto"
@@ -10294,7 +10408,7 @@ msgstr "Campos"
#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Fields Multicheck"
-msgstr "Campos Multicheck"
+msgstr ""
#: frappe/core/doctype/file/file.py:441
msgid "Fields `file_name` or `file_url` must be set for File"
@@ -10304,14 +10418,14 @@ 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:1011
+#: frappe/database/query.py:1054
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 "Los campos separados por coma (,) se incluirán en el area \"Buscar por\" en el cuadro de búsqueda"
+msgstr ""
#. Label of the fieldtype (Select) field in DocType 'Report Column'
#. Label of the fieldtype (Select) field in DocType 'Report Filter'
@@ -10326,9 +10440,9 @@ msgstr "Los campos separados por coma (,) se incluirán en el area \"Buscar por\
#: 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 ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Tipo de campo no se puede cambiar de {0} a {1}"
@@ -10355,7 +10469,7 @@ msgstr "Archivo '{0}' no encontrado"
#. Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "Información del archivo"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
@@ -10364,12 +10478,12 @@ msgstr "Administrador de archivos"
#. Label of the file_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "Nombre del Archivo"
+msgstr ""
#. Label of the file_size (Int) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "Tamaño de archivo"
+msgstr ""
#. Label of the section_break_ryki (Section Break) field in DocType 'System
#. Health Report'
@@ -10390,7 +10504,7 @@ msgstr "Tipo de Archivo"
#. Label of the file_url (Code) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "URL del archivo"
+msgstr ""
#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
@@ -10404,12 +10518,12 @@ msgstr "El nombre de archivo no puede tener {0}"
msgid "File not attached"
msgstr "Archivo no adjuntado"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "El tamaño del archivo supera el tamaño máximo permitido de {0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "El archivo es demasiado grande"
@@ -10436,17 +10550,22 @@ msgstr "Archivos"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filtrar"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+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 "Filtrar datos"
+msgstr ""
#. Label of the filter_list (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -10456,24 +10575,24 @@ 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 "Filtro Meta"
+msgstr ""
#. Label of the filter_name (Data) field in DocType 'List Filter'
#: frappe/desk/doctype/list_filter/list_filter.json
-#: frappe/public/js/frappe/list/list_filter.js:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Nombre del Filtro"
#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Valores del Filtro"
+msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10485,17 +10604,21 @@ msgstr "Filtrar..."
#. Step'
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Filtered By"
-msgstr "Filtrado por"
+msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:33
msgid "Filtered Records"
msgstr "Registros filtrados"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Filtrado por \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10519,19 +10642,19 @@ msgstr "Filtrado por \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
#. Label of the filters_config (Code) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Configuration"
-msgstr "Configuración de filtros"
+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 "Visualización de Filtros"
+msgstr ""
#. Label of the filters_editor (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -10543,16 +10666,12 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "Filtros JSON"
+msgstr ""
#. Label of the filters_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "Sección de filtros"
-
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Filtros aplicados para {0}"
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
@@ -10561,7 +10680,7 @@ msgstr "Filtros guardados"
#. 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 "Los filtros serán accesibles a través de filters.
Envíe la salida como resultado = [resultado], o para el estilo antiguo datos = [columnas], [resultado]"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter_list.js:133
msgid "Filters {0}"
@@ -10571,26 +10690,26 @@ msgstr "Filtros {0}"
msgid "Filters:"
msgstr "Filtros:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Buscar '{0}' en..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Encontrar {0} en {1}"
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Terminado"
+msgstr ""
#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Finished At"
-msgstr "Terminado el"
+msgstr ""
#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
#. Label of the first_day_of_the_week (Select) field in DocType 'System
@@ -10598,7 +10717,7 @@ msgstr "Terminado el"
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "First Day of the Week"
-msgstr "Primer día de la semana"
+msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
@@ -10614,7 +10733,7 @@ msgstr "Primer Nombre"
#. 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 "Primer Mensaje de Éxito"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
@@ -10631,7 +10750,7 @@ msgstr "Ajustar"
#. Label of the flag (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr "Bandera"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10646,12 +10765,12 @@ msgstr "Bandera"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Float"
-msgstr "Coma Flotante"
+msgstr ""
#. Label of the float_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr "Factor de Redondeo"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10664,13 +10783,13 @@ msgstr "Factor de Redondeo"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr "Plegar"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "El plegado no se puede utilizar al final del formulario"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "El plegado debe ir antes del salto de pagina"
@@ -10679,12 +10798,12 @@ msgstr "El plegado debe ir antes del salto de pagina"
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Folder"
-msgstr "Carpeta"
+msgstr ""
#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Folder Name"
-msgstr "Nombre de la carpeta"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:100
msgid "Folder name should not include '/' (slash)"
@@ -10697,14 +10816,14 @@ msgstr "Carpeta {0} no está vacía"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Folio"
-msgstr "Folio"
+msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Seguir"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Seguido por"
@@ -10712,7 +10831,7 @@ msgstr "Seguido por"
msgid "Following Report Filters have missing values:"
msgstr "Los siguientes filtros de informe tienen valores faltantes:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Documentos seguidos {0}"
@@ -10720,7 +10839,7 @@ msgstr "Documentos seguidos {0}"
msgid "Following fields are missing:"
msgstr "Siguientes campos faltan:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Los siguientes campos tienen valores no válidos:"
@@ -10728,19 +10847,19 @@ msgstr "Los siguientes campos tienen valores no válidos:"
msgid "Following fields have missing values"
msgstr "Siguientes campos tienen valores que faltan"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Siguientes campos tienen valores que faltan:"
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
-msgstr "Fuente"
+msgstr ""
#. Label of the font_properties (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr "Propiedades de fuente"
+msgstr ""
#. Label of the font_size (Int) field in DocType 'Print Format'
#. Label of the font_size (Float) field in DocType 'Print Settings'
@@ -10750,13 +10869,13 @@ msgstr "Propiedades de fuente"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr "Tamaño de la fuente"
+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 "Fuentes"
+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'
@@ -10769,12 +10888,12 @@ msgstr "Fuentes"
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr "Pie de página"
+msgstr ""
#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer \"Powered By\""
-msgstr "Pie de página \"Desarrollado por\""
+msgstr ""
#. Label of the footer_source (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -10784,20 +10903,20 @@ msgstr "Pie de página basado en"
#. Label of the footer (Text Editor) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Footer Content"
-msgstr "Contenido del Pie de Página"
+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 "Detalles del Pie de Página"
+msgstr ""
#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr "HTML de pie de página"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "HTML de pie de página establecido a partir del archivo adjunto {0}"
@@ -10805,36 +10924,36 @@ msgstr "HTML de pie de página establecido a partir del archivo adjunto {0}"
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Image"
-msgstr "Imagen del Pie de Página"
+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 "Elementos de pie de página"
+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 "Logotipo de pie de página"
+msgstr ""
#. Label of the footer_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Script"
-msgstr "Script de Pie de Página"
+msgstr ""
#. Label of the footer_template (Link) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr "Plantilla de pie de página"
+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 "Valores de plantilla de pie de página"
+msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "Es posible que el pie de página no sea visible porque la opción {0} está desactivada."
@@ -10842,7 +10961,7 @@ msgstr "Es posible que el pie de página no sea visible porque la opción {0} es
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer will display correctly only in PDF"
-msgstr "El pie de página se mostrará correctamente solo en PDF"
+msgstr ""
#. Label of the for_doctype (Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10852,7 +10971,7 @@ msgstr "Para el 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 "Para DocType Link / DocType Action"
+msgstr ""
#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10867,16 +10986,6 @@ msgstr "Por tipo de documento"
msgid "For Example: {} Open"
msgstr "Por ejemplo: {} Abrir"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "Para Enlaces, introduzca el DocType como rango.\n"
-"Para Seleccionar, introduzca la lista de Opciones, cada una en una nueva línea."
-
#. 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'
@@ -10893,39 +11002,35 @@ msgstr "Por Usuario"
#. Label of the for_value (Dynamic Link) field in DocType 'User Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "For Value"
-msgstr "Por valor"
+msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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)."
-#: 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 "Por ejemplo, si cancela y modifica el documento INV004, éste se convertirá en un nuevo documento INV004-1. Esto le ayuda a realizar un seguimiento de cada modificación."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "Por ejemplo:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Por ejemplo: Si desea incluir el ID de documento, utilice {0}"
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "Por ejemplo: {} Abrir"
+msgstr ""
#. Description of the 'Client script' (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "Para obtener ayuda, consulte Ejemplos y API de script de cliente"
+msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
@@ -10941,7 +11046,7 @@ msgstr "Para varias direcciones, introduzca la dirección en una línea diferent
msgid "For updating, you can update only selective columns."
msgstr "Para actualizar datos, puedes editar sólo las columnas que necesites"
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Para {0} en el nivel {1} en {2} de la línea {3}"
@@ -10951,7 +11056,7 @@ msgstr "Para {0} en el nivel {1} en {2} de la línea {3}"
#: frappe/core/doctype/package_import/package_import.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Force"
-msgstr "Fuerza"
+msgstr ""
#. Label of the force_re_route_to_default_view (Check) field in DocType
#. 'DocType'
@@ -10960,7 +11065,7 @@ msgstr "Fuerza"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Force Re-route to Default View"
-msgstr "Forzar redireccionamiento a la vista predeterminada"
+msgstr ""
#: frappe/core/doctype/rq_job/rq_job.js:13
msgid "Force Stop job"
@@ -10970,13 +11075,13 @@ msgstr "Forzar detención del trabajo"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force User to Reset Password"
-msgstr "Forzar al usuario a restablecer la contraseña"
+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 "Forzar el modo de captura web para las cargas"
+msgstr ""
#: frappe/www/login.html:37
msgid "Forgot Password?"
@@ -10991,7 +11096,8 @@ msgstr "¿Se te olvidó tu contraseña?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Formulario"
@@ -11001,7 +11107,7 @@ msgstr "Formulario"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Form Builder"
-msgstr "Creador de Formularios"
+msgstr ""
#. Label of the form_dict (Code) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -11019,7 +11125,7 @@ msgstr "Diccionario del Formulario"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Form Settings"
-msgstr "Configuraciones de formulario"
+msgstr ""
#. Name of a DocType
#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
@@ -11036,7 +11142,7 @@ msgstr "Formulario de paso de visita"
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr "Formulario codificado en URL"
+msgstr ""
#. Label of the format (Data) field in DocType 'Workspace Shortcut'
#. Label of the format (Select) field in DocType 'Auto Email Report'
@@ -11049,7 +11155,7 @@ msgstr "Formato"
#. Label of the format_data (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Format Data"
-msgstr "Formato de datos"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -11069,17 +11175,17 @@ 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 "Reenviar a la dirección de correo electrónico"
+msgstr ""
#. Label of the fraction (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Fraction"
-msgstr "Fracción"
+msgstr ""
#. Label of the fraction_units (Int) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Fraction Units"
-msgstr "Fracción de unidades"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -11170,7 +11276,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11189,9 +11295,9 @@ 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 "Desde campo de fecha"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Desde tipo de documento"
@@ -11203,7 +11309,7 @@ msgstr "Desde el campo"
#. Label of the sender_full_name (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "From Full Name"
-msgstr "Desde Nombre Completo"
+msgstr ""
#. Label of the from_user (Link) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -11217,7 +11323,7 @@ msgstr "Desde la versión"
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Full"
-msgstr "Completo"
+msgstr ""
#. Label of the full_name (Data) field in DocType 'Contact'
#. Label of the full_name (Data) field in DocType 'Activity Log'
@@ -11232,7 +11338,7 @@ msgstr "Completo"
msgid "Full Name"
msgstr "Nombre completo"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Página completa"
@@ -11240,12 +11346,12 @@ msgstr "Página completa"
#. Label of the full_width (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Full Width"
-msgstr "Ancho completo"
+msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Función"
@@ -11254,11 +11360,11 @@ msgstr "Función"
msgid "Function Based On"
msgstr "Función basada en"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "La función {0} no está en la lista blanca."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11273,22 +11379,22 @@ msgstr "Fw: {0}"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "GET"
-msgstr "GET"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType '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'
#: frappe/core/doctype/package/package.json
msgid "GNU Affero General Public License"
-msgstr "Licencia Pública General de GNU Affero"
+msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "GNU General Public License"
-msgstr "Licencia Pública General de GNU"
+msgstr ""
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -11321,13 +11427,13 @@ msgstr "General"
#. Label of the generate_keys (Button) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Generate Keys"
-msgstr "Generar Llaves"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Generar Nuevo Informe"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Generar Contraseña Aleatoria"
@@ -11337,8 +11443,8 @@ msgstr "Generar Contraseña Aleatoria"
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Generar URL de seguimiento"
@@ -11354,7 +11460,7 @@ msgstr "Geoapify"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Geolocation"
-msgstr "Geolocalización"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
@@ -11372,7 +11478,7 @@ msgstr "Obtener Clave de Cifrado de Copia de Seguridad"
#. Label of the get_contacts (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Get Contacts"
-msgstr "Obtener Contactos"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:93
msgid "Get Fields"
@@ -11409,18 +11515,18 @@ msgstr "Reciba una notificación cuando se reciba un correo electrónico sobre c
#. 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 "Obtenga su avatar reconocido globalmente desde Gravatar.com"
+msgstr ""
#. Label of the git_branch (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Git Branch"
-msgstr "Rama de Git"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "GitHub"
-msgstr "GitHub"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Github flavoured markdown syntax"
@@ -11447,9 +11553,9 @@ msgstr "Atajos globales"
#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Global Unsubscribe"
-msgstr "Darse de baja globalmente"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Buscar"
@@ -11465,7 +11571,7 @@ msgstr "Ir a la Lista de Ajustes de Notificaciones"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "Ir a la pagina"
+msgstr ""
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
@@ -11509,7 +11615,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr "Ir a la página {0}"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Objetivo"
@@ -11517,12 +11623,12 @@ msgstr "Objetivo"
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Google"
-msgstr "Google"
+msgstr ""
#. Label of the google_analytics_id (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics ID"
-msgstr "ID de Google Analytics"
+msgstr ""
#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
#. Settings'
@@ -11572,14 +11678,14 @@ msgstr "Google Calendar: no se pudo actualizar el evento {0} en Google Calendar,
#. 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 de evento de Google Calendar"
+msgstr ""
#. Label of the google_calendar_id (Data) field in DocType 'Event'
#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
#: frappe/desk/doctype/event/event.json
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr "ID de Google Calendar"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
@@ -11607,7 +11713,7 @@ msgstr "Contactos de Google: no se pudo actualizar el contacto en Contactos de G
#. Label of the google_contacts_id (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr "Id de contactos de Google"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
@@ -11617,13 +11723,13 @@ msgstr "Google Drive"
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker"
-msgstr "Google Drive Picker"
+msgstr ""
#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
-msgstr "Selector de Google Drive habilitado"
+msgstr ""
#. Label of the font (Data) field in DocType 'Print Format'
#. Label of the google_font (Data) field in DocType 'Website Theme'
@@ -11631,12 +11737,12 @@ msgstr "Selector de Google Drive habilitado"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr "Fuente de Google"
+msgstr ""
#. Label of the google_meet_link (Small Text) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
-msgstr "Enlace Google Meet"
+msgstr ""
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
@@ -11662,7 +11768,7 @@ msgstr "La URL de Google Sheets debe terminar con \"gid={number}\". Copie y pegu
#. Label of the grant_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Grant Type"
-msgstr "Tipo de Subvención"
+msgstr ""
#: frappe/public/js/frappe/form/dashboard.js:34
#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
@@ -11724,25 +11830,25 @@ 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 "Agrupar por según"
+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 "Agrupar por tipo"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
-msgstr "Clase de Objeto Grupo"
+msgstr ""
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -11756,7 +11862,7 @@ msgstr "Agrupados por {0}"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "HEAD"
-msgstr "HEAD"
+msgstr ""
#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
@@ -11768,14 +11874,14 @@ msgstr "AQUÍ"
#: 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'
@@ -11813,17 +11919,21 @@ msgstr "HTML"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr "Editor de HTML"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr "Página HTML"
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr "HTML para la sección de encabezado. opcional"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
msgid "HTML with jinja support"
@@ -11832,7 +11942,7 @@ msgstr "HTML con soporte 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 "Mitad"
+msgstr ""
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
@@ -11855,7 +11965,7 @@ msgstr "Correos Manejados"
#. Label of the has_attachment (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Has Attachment"
-msgstr "Tiene Adjunto"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/has_domain/has_domain.json
@@ -11881,7 +11991,7 @@ msgstr ""
#. Label of the has_web_view (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Has Web View"
-msgstr "Tiene vista Web"
+msgstr ""
#: frappe/templates/signup.html:19
msgid "Have an account? Login"
@@ -11896,14 +12006,14 @@ msgstr "¿Tiene una cuenta? Iniciar sesión"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Header"
-msgstr "Encabezado"
+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 de encabezado"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "Encabezado HTML establecido desde el archivo adjunto {0}"
@@ -11915,12 +12025,12 @@ msgstr "Icono del encabezado"
#. Label of the header_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header Script"
-msgstr "Script de Cabecera"
+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 "Encabezado y migas de pan"
+msgstr ""
#. Label of the section_break_38 (Tab Break) field in DocType 'Website
#. Settings'
@@ -11937,9 +12047,9 @@ msgstr "Los scripts de encabezado y pie de página se pueden utilizar para agreg
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Headers"
-msgstr "Encabezados"
+msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11960,7 +12070,7 @@ msgstr "Encabezado"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr "Mapa de calor"
+msgstr ""
#: frappe/templates/emails/new_user.html:2
msgid "Hello"
@@ -11976,7 +12086,7 @@ msgstr "Hola,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12009,7 +12119,7 @@ msgstr "Menú desplegable de ayuda"
#. 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 "Ayuda 'HTML'"
+msgstr ""
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -12019,19 +12129,19 @@ msgstr ""
#. Label of the helpful (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Helpful"
-msgstr "Útil"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica"
-msgstr "Helvética"
+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"
+msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Esta es tu URL de seguimiento"
@@ -12065,10 +12175,10 @@ msgstr "Oculto"
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hidden Fields"
-msgstr "Campos ocultos"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12084,7 +12194,7 @@ msgstr "Esconder"
#. 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 "Ocultar bloque"
+msgstr ""
#. Label of the hide_border (Check) field in DocType 'DocField'
#. Label of the hide_border (Check) field in DocType 'Custom Field'
@@ -12093,24 +12203,24 @@ msgstr "Ocultar bloque"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Border"
-msgstr "Ocultar borde"
+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 "Ocultar botones"
+msgstr ""
#. Label of the allow_copy (Check) field in DocType 'DocType'
#. Label of the allow_copy (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Hide Copy"
-msgstr "Ocultar copia"
+msgstr ""
#. Label of the hide_custom (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Hide Custom DocTypes and Reports"
-msgstr "Ocultar tipos de documentos e informes personalizados"
+msgstr ""
#. Label of the hide_days (Check) field in DocType 'DocField'
#. Label of the hide_days (Check) field in DocType 'Custom Field'
@@ -12119,7 +12229,7 @@ msgstr "Ocultar tipos de documentos e informes personalizados"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Days"
-msgstr "Ocultar días"
+msgstr ""
#. Label of the hide_descendants (Check) field in DocType 'User Permission'
#: frappe/core/doctype/user_permission/user_permission.json
@@ -12144,7 +12254,7 @@ msgstr "Ocultar etiqueta"
#. Label of the hide_login (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Hide Login"
-msgstr "Ocultar inicio de sesión"
+msgstr ""
#: frappe/public/js/form_builder/form_builder.bundle.js:43
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
@@ -12163,17 +12273,17 @@ msgstr "Ocultar los botones Anterior, Siguiente y Cerrar en el diálogo de resal
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Seconds"
-msgstr "Ocultar segundos"
+msgstr ""
#. Label of the hide_toolbar (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Hide Sidebar, Menu, and Comments"
-msgstr "Ocultar Barra Lateral, Menú y Comentarios"
+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 "Ocultar Menú Estándar"
+msgstr ""
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
@@ -12198,7 +12308,7 @@ msgstr "Ocultar Píe de página"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hide footer in auto email reports"
-msgstr "Ocultar pie de página en informes de correo electrónico automático"
+msgstr ""
#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -12219,12 +12329,12 @@ 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 "La regla de mayor prioridad se aplicará primero"
+msgstr ""
#. Label of the highlight (Text) field in DocType 'Company History'
#: frappe/website/doctype/company_history/company_history.json
msgid "Highlight"
-msgstr "Resaltar"
+msgstr ""
#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
@@ -12234,7 +12344,7 @@ msgstr "Sugerencia: Incluya símbolos, números y letras mayúsculas en la contr
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12248,12 +12358,12 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Home Page"
-msgstr "Página de inicio"
+msgstr ""
#. Label of the home_settings (Code) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Home Settings"
-msgstr "Configuraciones de inicio"
+msgstr ""
#: frappe/core/doctype/file/test_file.py:321
#: frappe/core/doctype/file/test_file.py:323
@@ -12276,14 +12386,14 @@ msgstr "Inicio / Carpeta de Prueba 2"
#: frappe/core/doctype/server_script/server_script.json
#: frappe/core/doctype/user/user.json
msgid "Hourly"
-msgstr "Cada Hora"
+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 "Cada hora"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -12294,7 +12404,7 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hourly rate limit for generating password reset links"
-msgstr "Límite de tarifa por hora para generar enlaces de restablecimiento de contraseña"
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:29
msgctxt "Duration"
@@ -12304,7 +12414,7 @@ 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"
+msgstr ""
#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -12317,18 +12427,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
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.
"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12347,7 +12457,7 @@ msgstr "ID (nombre)"
#. 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 "Identificación ( nombre) de la entidad cuya propiedad va a establecerse"
+msgstr ""
#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
@@ -12358,7 +12468,7 @@ msgstr "Los ID sólo deben contener caracteres alfanuméricos, no deben contener
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "IMAP Details"
-msgstr "Detalles IMAP"
+msgstr ""
#. Label of the imap_folder (Data) field in DocType 'Communication'
#. Label of the imap_folder (Table) field in DocType 'Email Account'
@@ -12376,10 +12486,9 @@ msgstr "Carpeta IMAP"
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/user_session_display/user_session_display.json
msgid "IP Address"
-msgstr "Dirección IP"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12400,11 +12509,16 @@ msgstr "Dirección IP"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Icono"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12415,27 +12529,31 @@ msgstr "Estilo del icono"
msgid "Icon Type"
msgstr "Tipo de ícono"
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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 "El icono aparecerá en el botón"
+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 "Detalles de Identidad"
+msgstr ""
#. Label of the idx (Int) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Idx"
-msgstr "Índice"
+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 "Si Aplicar Permisos de Usuario Estricto esta seleccionado y se ha definido Permiso de Usuario para un DocType para un Usuario, todos los documentos en los que el valor del enlace esté en blanco no se mostrarán a ese Usuario"
+msgstr ""
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow'
@@ -12444,15 +12562,15 @@ msgstr "Si Aplicar Permisos de Usuario Estricto esta seleccionado y se ha defini
#: 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 "Si el estado de flujo de trabajo facturado no anulará el estado en la vista de lista"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Si es dueño"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "Si un rol no tiene acceso al nivel 0, los niveles superiores carecen de sentido."
@@ -12465,30 +12583,30 @@ msgstr ""
#. Description of the 'Is Active' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr "Si se selecciona, los otros flujos de trabajo serán desactivados."
+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 "Si se marca, los valores numéricos negativos de Moneda, Cantidad o Recuento se mostrarán como positivos"
+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 "Si se selecciona, los usuarios no podrán ver el cuadro de diálogo de confirmación de acceso."
+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 "Si está desactivado, este rol será eliminado de todos los usuarios."
+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 "Si está habilitado, el usuario puede iniciar sesión desde cualquier dirección IP utilizando la autenticación de dos factores, esto también se puede configurar para todos los usuarios en la configuración del sistema"
+msgstr ""
#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -12499,17 +12617,17 @@ msgstr "Si está habilitado, todas las respuestas en el formulario web se enviar
#. 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 "Si se activa, todos los usuarios pueden iniciar sesión desde cualquier dirección IP utilizando la Autenticación de Dos Factores. Esto también se puede establecer sólo para usuario(s) específico(s) en la Página de Usuario"
+msgstr ""
#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, changes to the document are tracked and shown in timeline"
-msgstr "Si está habilitado, los cambios en el documento se rastrean y se muestran en la línea de tiempo"
+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 "Si está habilitado, se realiza un seguimiento de las vistas de documentos, esto puede suceder varias veces"
+msgstr ""
#. Description of the 'Only allow System Managers to upload public files'
#. (Check) field in DocType 'System Settings'
@@ -12520,13 +12638,13 @@ 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 "Si está habilitado, el documento se marca como visto, la primera vez que un usuario lo abre"
+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 "Si está habilitado, la notificación se mostrará en el menú desplegable de notificaciones en la esquina superior derecha de la barra de navegación."
+msgstr ""
#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
#. Settings'
@@ -12538,53 +12656,61 @@ 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 "Si está habilitado, a los usuarios que inicien sesión desde la Dirección IP Restringida, no se les solicitará la autenticación de dos factores."
+msgstr ""
#. Description of the 'Notify Users On Every Login' (Check) field in DocType
#. 'Note'
#: frappe/desk/doctype/note/note.json
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
-msgstr "Si está activado, los usuarios serán notificados cada vez que inicien sesión. Si no está habilitado, los usuarios solo serán notificados una vez."
+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 "Si se deja vacío, el Área de Trabajo predeterminado será la última Área de Trabajo visitado"
+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 "Si el puerto no es estándar (por ejemplo 587 )"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525."
-msgstr "Si el puerto no es estándar (p. Ej. 587). Si está en Google Cloud, intente con el puerto 2525."
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr "Si no es un puerto estándar (por ejemplo, POP3: 995/110, IMAP: 993/143)"
+msgstr ""
#. Description of the 'Currency Precision' (Select) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If not set, the currency precision will depend on number format"
-msgstr "Si no se establece, la precisión de la moneda dependerá del formato de número"
+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 "Si se establece, sólo los usuarios con estos roles podrán acceder a este gráfico. Si no se establece, se utilizarán los permisos DocType o Informe."
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+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 "Si el usuario tiene algún rol asignado, entonces el usuario se convierte en un \"Usuario del Sistema\". Los \"Usuarios del sistema\" tienen acceso al escritorio"
+msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "Si estas instrucciones no le resultan útiles, añada sus sugerencias en GitHub Issues."
@@ -12602,14 +12728,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 "Si no está marcado, el valor siempre será recuperado al guardar."
+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 "Si el usuario es el propietario"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:204
msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted."
@@ -12634,7 +12760,7 @@ msgstr ""
#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "If you set this, this Item will come in a drop-down under the selected parent."
-msgstr "Si usted habilita esto, el elemento creará un menú desplegable"
+msgstr ""
#: frappe/templates/emails/administrator_logged_in.html:3
msgid "If you think this is unauthorized, please change the Administrator password."
@@ -12648,7 +12774,7 @@ msgstr "Si su CSV utiliza un delimitador diferente, añada ese carácter aquí,
#. 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 "Si los datos están en formato HTML, por favor copiar y pegar el código HTML exacto con las etiquetas."
+msgstr ""
#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
@@ -12658,7 +12784,7 @@ msgstr "Si los datos están en formato HTML, por favor copiar y pegar el código
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore User Permissions"
-msgstr "Ignorar los permisos de usuario"
+msgstr ""
#. Label of the ignore_xss_filter (Check) field in DocType 'DocField'
#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field'
@@ -12668,7 +12794,7 @@ msgstr "Ignorar los permisos de usuario"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore XSS Filter"
-msgstr "Ignorar filtro XSS"
+msgstr ""
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Account'
@@ -12677,14 +12803,14 @@ msgstr "Ignorar filtro XSS"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Ignore attachments over this size"
-msgstr "Ignorar los adjuntos mayores que este tamaño"
+msgstr ""
#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Ignored Apps"
-msgstr "Aplicaciones ignoradas"
+msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "Estado del Documento ilegal para {0}"
@@ -12720,25 +12846,25 @@ msgstr "Plantilla ilegal"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Image"
-msgstr "Imagen"
+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 "Campo de Imagen"
+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 "Altura de la Imagen"
+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 "Enlace a la Imagen"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:209
msgid "Image View"
@@ -12748,13 +12874,13 @@ msgstr ""
#. Label of the footer_image_width (Float) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Image Width"
-msgstr "Ancho de la imagen"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "Campo de imagen debe ser un nombre de campo válido"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "Campo de imagen debe ser de tipo Adjuntar imagen"
@@ -12788,7 +12914,7 @@ msgstr "Suplantando a {0}"
msgid "Impersonated by {0}"
msgstr "Suplantado por {0}"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "Suplantando {0}"
@@ -12799,18 +12925,19 @@ msgstr "Implementar el método `clear_old_logs` para habilitar la limpieza autom
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Implicit"
-msgstr "Implícito"
+msgstr ""
#. Label of the import (Check) field in DocType 'Custom DocPerm'
#. Label of the import (Check) field in DocType 'DocPerm'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12822,13 +12949,13 @@ msgstr "Importar correo electrónico de"
#. Label of the import_file (Attach) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import File"
-msgstr "Importar archivo"
+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 "Importar errores y advertencias de archivos"
+msgstr ""
#. Label of the import_log_section (Section Break) field in DocType 'Data
#. Import'
@@ -12839,12 +12966,12 @@ 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 "Vista previa de registro de importación"
+msgstr ""
#. Label of the import_preview (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Preview"
-msgstr "Vista previa de importación"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:41
msgid "Import Progress"
@@ -12858,12 +12985,12 @@ msgstr "Importar suscriptores"
#. Label of the import_type (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Type"
-msgstr "Tipo de importación"
+msgstr ""
#. Label of the import_warnings (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Warnings"
-msgstr "Advertencias de importación"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:117
msgid "Import Zip"
@@ -12872,7 +12999,7 @@ msgstr "Importar 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 "Importar desde Google Sheets"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:612
msgid "Import template should be of type .csv, .xlsx or .xls"
@@ -12906,14 +13033,14 @@ msgstr "En"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In Days"
-msgstr "En días"
+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 "En filtro"
+msgstr ""
#. Label of the in_global_search (Check) field in DocType 'DocField'
#. Label of the in_global_search (Check) field in DocType 'Custom Field'
@@ -12923,7 +13050,7 @@ msgstr "En filtro"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Global Search"
-msgstr "En Búsqueda Global"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.js:88
msgid "In Grid View"
@@ -12932,7 +13059,7 @@ msgstr "En vista de cuadrícula"
#. Label of the in_standard_filter (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "In List Filter"
-msgstr "En filtro de Lista"
+msgstr ""
#. Label of the in_list_view (Check) field in DocType 'DocField'
#. Label of the in_list_view (Check) field in DocType 'Custom Field'
@@ -12955,7 +13082,7 @@ msgstr "En Minutos"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Preview"
-msgstr "En vista previa"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
@@ -12968,7 +13095,7 @@ msgstr "En modo de solo lectura"
#. Label of the in_reply_to (Link) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "In Reply To"
-msgstr "En respuesta a"
+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
@@ -12976,18 +13103,18 @@ msgstr "En respuesta a"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Standard Filter"
-msgstr "En Filtro predeterminado"
+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 "En puntos. el valor por defecto es 9."
+msgstr ""
#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In seconds"
-msgstr "En segundos"
+msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:209
msgid "Inactive"
@@ -13021,7 +13148,7 @@ msgstr "Incluir campo de nombre"
#. 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 "Incluir Buscar en Barra Superior"
+msgstr ""
#: frappe/website/doctype/website_theme/website_theme.js:61
msgid "Include Theme from Apps"
@@ -13030,18 +13157,18 @@ msgstr "Incluir tema de aplicaciones"
#. 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 "Enviar el enlace de la vista web del documento por correo electrónico"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "Incluir filtros"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "Incluir sangría"
@@ -13059,7 +13186,7 @@ msgstr ""
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Incoming (POP/IMAP) Settings"
-msgstr "Configuración entrante (POP/IMAP)"
+msgstr ""
#. Label of the incoming_emails_last_7_days_column (Column Break) field in
#. DocType 'System Health Report'
@@ -13072,13 +13199,13 @@ msgstr "Correos electrónicos entrantes (últimos 7 días)"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Server"
-msgstr "Servidor entrante"
+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 "Configuración entrante"
+msgstr ""
#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Incoming email account not correct"
@@ -13108,11 +13235,11 @@ msgstr "Usuario o Contraseña Incorrecta"
msgid "Incorrect Verification code"
msgstr "Código de Verificación incorrecto"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "Valor incorrecto en la fila {0}:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "Valor incorrecto:"
@@ -13136,7 +13263,7 @@ msgstr "Índice"
#. 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 "Índice de páginas web para búsqueda"
+msgstr ""
#: frappe/core/doctype/recorder/recorder.py:132
msgid "Index created successfully on column {0} of doctype {1}"
@@ -13157,14 +13284,14 @@ msgstr "Token de actualización de indexación"
#. Label of the indicator (Select) field in DocType 'Kanban Board Column'
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Indicator"
-msgstr "Indicador"
+msgstr ""
#. Label of the indicator_color (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Indicator Color"
-msgstr "Color del indicador"
+msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "Color del indicador"
@@ -13180,7 +13307,7 @@ msgstr "Color del indicador"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Info"
-msgstr "Información"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:144
msgid "Info:"
@@ -13189,12 +13316,12 @@ msgstr "Información:"
#. 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 "Conde de sincronización inicial"
+msgstr ""
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "InnoDB"
-msgstr "InnoDB"
+msgstr ""
#. Description of the 'New Role' (Data) field in DocType 'Role Replication'
#: frappe/core/doctype/role_replication/role_replication.json
@@ -13211,15 +13338,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "Insertar Después"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "Insertar después no se puede establecer como {0}"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "Inserción luego del campo '{0}' mencionado en el campo personalizado '{1}', con la etiqueta '{2}', no existe"
@@ -13238,19 +13365,19 @@ msgstr "Insertar imagen en 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 "Insertar nuevos registros"
+msgstr ""
#. Label of the insert_style (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Insert Style"
-msgstr "Insertar estilo"
+msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "Instale {0} desde Marketplace"
@@ -13274,17 +13401,17 @@ msgstr "Aplicaciones instaladas"
#. Label of the instructions (HTML) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Instructions"
-msgstr "Instrucciones"
+msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "Instrucciones enviadas por correo electrónico"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "Nivel de permiso insuficiente para {0}"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "Permiso insuficiente para {0}"
@@ -13315,7 +13442,7 @@ msgstr "Límite de archivos adjuntos insuficiente"
#: 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
#: frappe/integrations/doctype/integration_request/integration_request.json
@@ -13335,7 +13462,7 @@ msgstr "Integraciones"
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Integrations can use this field to set email delivery status"
-msgstr "Integraciones pueden utilizar este campo para establecer el estado de entrega de correo electrónico"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -13352,7 +13479,7 @@ msgstr "Intereses"
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "Error de Servidor Interno"
@@ -13361,6 +13488,11 @@ msgstr "Error de Servidor Interno"
msgid "Internal record of document shares"
msgstr "Registro interno de compartir documentos"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13370,7 +13502,7 @@ msgstr "URL del vídeo de introducción"
#. 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Introduce your company to the website visitor."
-msgstr "Dar a conocer su empresa al visitante del sitio Web."
+msgstr ""
#. Label of the introduction_section (Section Break) field in DocType 'Contact
#. Us Settings'
@@ -13386,7 +13518,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Introductory information for the Contact Us Page"
-msgstr "Información preliminar de la página de contacto"
+msgstr ""
#. Label of the introspection_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -13400,13 +13532,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "Expresión \"depende_on\" no válida"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Expresión \"depende_on\" no válida establecida en el filtro {0}"
@@ -13446,7 +13578,7 @@ msgstr "Fecha invalida"
msgid "Invalid DocType"
msgstr "DocType inválido"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "DocType no válido: {0}"
@@ -13454,7 +13586,8 @@ msgstr "DocType no válido: {0}"
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "Nombre de campo no válido"
@@ -13462,8 +13595,8 @@ msgstr "Nombre de campo no válido"
msgid "Invalid File URL"
msgstr "URL de archivo inválida"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13487,7 +13620,7 @@ msgstr "Link Inválido"
msgid "Invalid Login Token"
msgstr "Token de Acceso Inválido"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "Ingreso inválido. Intentar otra vez."
@@ -13495,7 +13628,7 @@ msgstr "Ingreso inválido. Intentar otra vez."
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Servidor de correo no válido. Por favor verifique la configuración y vuelva a intentarlo."
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "Serie de nombres no válida: {}"
@@ -13506,8 +13639,8 @@ msgstr "Serie de nombres no válida: {}"
msgid "Invalid Operation"
msgstr "Operación inválida"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "Opción inválida"
@@ -13519,7 +13652,7 @@ msgstr "Servidor o puerto de correo saliente no válido: {0}"
msgid "Invalid Output Format"
msgstr "Formato de salida no válido"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "Anulación no válida"
@@ -13532,11 +13665,11 @@ msgstr "Parámetros Inválidos."
msgid "Invalid Password"
msgstr "Contraseña invalida"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "Numero de telefono invalido"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Solicitud inválida"
@@ -13545,7 +13678,7 @@ msgstr "Solicitud inválida"
msgid "Invalid Search Field {0}"
msgstr "Campo de búsqueda no válido {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "Nombre del Campo de Tabla Inválido"
@@ -13564,7 +13697,7 @@ msgstr ""
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Nombre de usuario o contraseña de soporte inválido, por favor verifique e inténtelo de nuevo."
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "Valores inválidos"
@@ -13576,7 +13709,7 @@ msgstr "Secreto de Webhook inválido"
msgid "Invalid aggregate function"
msgstr "Función de agregación inválida"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13584,19 +13717,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13604,18 +13737,22 @@ msgstr ""
msgid "Invalid column"
msgstr "Columna inválida"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "Estado del documento no válido"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "Conjunto de expresión no válida en el filtro {0}"
@@ -13624,11 +13761,11 @@ msgstr "Conjunto de expresión no válida en el filtro {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Conjunto de expresión no válida en el filtro {0} ({1})"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13636,11 +13773,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr "Nombre de campo inválido {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Nombre de campo no válido '{0}' en nombre automático"
@@ -13648,11 +13785,11 @@ msgstr "Nombre de campo no válido '{0}' en nombre automático"
msgid "Invalid file path: {0}"
msgstr "Ruta no válida archivo: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13660,7 +13797,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "Filtro no válido: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13677,19 +13814,19 @@ msgstr "JSON no válido agregado en las opciones personalizadas: {0}"
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "Tipo de nombre no válido (entero) para la columna de nombre varchar"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "Serie de nombres {} no válida: falta el punto (.)"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13713,11 +13850,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13734,31 +13871,31 @@ msgstr "¡Estado de token no válido! Compruebe si el token ha sido creado por e
msgid "Invalid username or password"
msgstr "Nombre de usuario o contraseña inválidos"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "Valor no válido para UUID: {}"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "Valores inválidos para los campos:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "Versión wkhtmltopdf no válida"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "Condición {0} no válida"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Inverse"
-msgstr "inverso"
+msgstr ""
#: frappe/core/doctype/user_invitation/user_invitation.py:95
msgid "Invitation already accepted"
@@ -13813,14 +13950,14 @@ msgstr ""
#. Label of the is_attachments_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Attachments Folder"
-msgstr "Es carpeta Archivos adjuntos"
+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 "Es Calendario y Gantt"
+msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
@@ -13835,12 +13972,12 @@ msgstr "Es una tabla secundaria"
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Complete"
-msgstr "Esta completo"
+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 "Está completado"
+msgstr ""
#. Label of the is_current (Check) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -13852,12 +13989,12 @@ msgstr "Es Actual"
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Is Custom"
-msgstr "Es personalizado"
+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 "Es un campo personalizado"
+msgstr ""
#. Label of the is_default (Check) field in DocType 'Address Template'
#. Label of the is_default (Check) field in DocType 'User Permission'
@@ -13872,14 +14009,14 @@ msgstr "Es por defecto"
#. Label of the is_dynamic_url (Check) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Is Dynamic URL?"
-msgstr "¿Es una URL dinámica?"
+msgstr ""
#. Label of the is_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Folder"
-msgstr "Es Carpeta"
+msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Es Global"
@@ -13890,28 +14027,28 @@ msgstr ""
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
-msgstr "Está oculto"
+msgstr ""
#. Label of the is_home_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Home Folder"
-msgstr "Es Carpeta"
+msgstr ""
#. Label of the reqd (Check) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Is Mandatory Field"
-msgstr "Es un campo obligatorio"
+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 "Es un estado opcional"
+msgstr ""
#. Label of the is_primary (Check) field in DocType 'Contact Email'
#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Is Primary"
-msgstr "Es primaria"
+msgstr ""
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
msgid "Is Primary Address"
@@ -13921,36 +14058,36 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
-msgstr "Es el contacto principal"
+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 "Es el móvil principal"
+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 "Es el teléfono principal"
+msgstr ""
#. Label of the is_private (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Private"
-msgstr "Es privado"
+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 "Es público"
+msgstr ""
#. Label of the is_published_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Published Field"
-msgstr "Es campo publicable"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "Es Campo Publicable debe ser un nombre de campo válido"
@@ -13958,13 +14095,13 @@ msgstr "Es Campo Publicable debe ser un nombre de campo válido"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
-msgstr "Es Informe de Consulta"
+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 "¿Es la solicitud remota?"
+msgstr ""
#. Label of the is_setup_complete (Check) field in DocType 'Installed
#. Application'
@@ -13983,12 +14120,12 @@ msgstr "Es individual"
#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Skipped"
-msgstr "Se omite"
+msgstr ""
#. Label of the is_spam (Check) field in DocType 'Email Rule'
#: frappe/email/doctype/email_rule/email_rule.json
msgid "Is Spam"
-msgstr "Es Spam"
+msgstr ""
#. Label of the is_standard (Check) field in DocType 'Navbar Item'
#. Label of the is_standard (Select) field in DocType 'Report'
@@ -14007,7 +14144,7 @@ msgstr "Es Spam"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/email/doctype/notification/notification.json
msgid "Is Standard"
-msgstr "Es estándar"
+msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -14023,12 +14160,12 @@ msgstr "Se puede validar"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Is System Generated"
-msgstr "Es generado por el sistema"
+msgstr ""
#. Label of the istable (Check) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Table"
-msgstr "Es Tabla"
+msgstr ""
#. Label of the is_table_field (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -14038,12 +14175,12 @@ msgstr "Es campo de tabla"
#. Label of the is_tree (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Tree"
-msgstr "Es árbol"
+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 "Es único"
+msgstr ""
#. Label of the is_virtual (Check) field in DocType 'DocType'
#. Label of the is_virtual (Check) field in DocType 'Custom Field'
@@ -14052,7 +14189,7 @@ msgstr "Es único"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Virtual"
-msgstr "Es Virtual"
+msgstr ""
#. Label of the is_standard (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -14066,12 +14203,12 @@ msgstr "Es arriesgado eliminar este archivo: {0}. Por favor, póngase en contact
#. Label of the item_label (Data) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Label"
-msgstr "Etiqueta de artículo"
+msgstr ""
#. Label of the item_type (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Type"
-msgstr "Tipo de artículo"
+msgstr ""
#: frappe/utils/nestedset.py:229
msgid "Item cannot be added to its own descendants"
@@ -14085,12 +14222,12 @@ msgstr "Productos"
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "JS"
-msgstr "JS"
+msgstr ""
#. Label of the js_message (HTML) field in DocType 'Custom HTML Block'
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "JS Message"
-msgstr "Mensaje JS"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the json (Code) field in DocType 'Report'
@@ -14103,12 +14240,12 @@ msgstr "Mensaje JS"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON"
-msgstr "JSON"
+msgstr ""
#. Label of the webhook_json (Code) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON Request Body"
-msgstr "Cuerpo de solicitud JSON"
+msgstr ""
#: frappe/templates/signup.html:5
msgid "Jane Doe"
@@ -14117,12 +14254,12 @@ msgstr "María Pérez"
#. 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'
#: frappe/core/doctype/report/report.json
msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}"
-msgstr "Formato JavaScript: frappe.query_reports['REPORTNAME'] = {}"
+msgstr ""
#. Label of the javascript (Code) field in DocType 'Report'
#. Label of the javascript_section (Section Break) field in DocType 'Custom
@@ -14134,7 +14271,7 @@ msgstr "Formato JavaScript: frappe.query_reports['REPORTNAME'] = {}"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_script/website_script.json
msgid "Javascript"
-msgstr "Javascript"
+msgstr ""
#: frappe/www/login.html:74
msgid "Javascript is disabled on your browser"
@@ -14143,34 +14280,34 @@ msgstr "Javascript está deshabilitado en su navegador"
#. 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 ""
#. 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 del Trabajo"
+msgstr ""
#. Label of the job_id (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Job Id"
-msgstr "Id del Trabajo"
+msgstr ""
#. Label of the job_info_section (Section Break) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Info"
-msgstr "Info de Trabajo"
+msgstr ""
#. Label of the job_name (Data) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Name"
-msgstr "Nombre del Trabajo"
+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 "Estado del Trabajo"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:191
#: frappe/core/doctype/rq_job/rq_job.js:24
@@ -14195,8 +14332,8 @@ msgstr "Trabajo detenido correctamente"
msgid "Join video conference with {0}"
msgstr "Únase a la videoconferencia con {0}"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "Saltar al campo"
@@ -14212,7 +14349,7 @@ msgstr "K"
#: 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
#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut'
@@ -14272,7 +14409,7 @@ msgstr "Seguimiento de todas las comunicaciones"
#: frappe/integrations/doctype/webhook_header/webhook_header.json
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Key"
-msgstr "Clave"
+msgstr ""
#. Label of a standard help item
#. Type: Action
@@ -14317,33 +14454,33 @@ msgstr "L"
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Auth"
-msgstr "Autenticación LDAP"
+msgstr ""
#. Label of the ldap_custom_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Custom Settings"
-msgstr "Configuración personalizada de LDAP"
+msgstr ""
#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Email Field"
-msgstr "Campo de correo electrónico de LDAP"
+msgstr ""
#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP First Name Field"
-msgstr "LDAP Campo Nombre"
+msgstr ""
#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group"
-msgstr "Grupo LDAP"
+msgstr ""
#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Field"
-msgstr "Campo de grupo LDAP"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
@@ -14355,28 +14492,28 @@ msgstr "Mapeo de grupo LDAP"
#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Mappings"
-msgstr "Asignaciones de grupo LDAP"
+msgstr ""
#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Member attribute"
-msgstr "Atributo Miembro del grupo LDAP"
+msgstr ""
#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Last Name Field"
-msgstr "Campo de apellido LDAP"
+msgstr ""
#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Middle Name Field"
-msgstr "Campo de segundo nombre de LDAP"
+msgstr ""
#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Mobile Field"
-msgstr "Campo móvil LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
msgid "LDAP Not Installed"
@@ -14385,12 +14522,12 @@ msgstr "LDAP No Instalado"
#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Phone Field"
-msgstr "Campo de teléfono LDAP"
+msgstr ""
#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search String"
-msgstr "Cadena de búsqueda LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
@@ -14400,23 +14537,23 @@ msgstr "La cadena de búsqueda LDAP debe estar entre '()' y debe contener el mar
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search and Paths"
-msgstr "Búsqueda y rutas de LDAP"
+msgstr ""
#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Security"
-msgstr "Seguridad LDAP"
+msgstr ""
#. Label of the ldap_server_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Settings"
-msgstr "Configuración del servidor LDAP"
+msgstr ""
#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Url"
-msgstr "Url del servidor LDAP"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
@@ -14429,12 +14566,12 @@ msgstr "Configuraciones LDAP"
#. DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP User Creation and Mapping"
-msgstr "Creación y mapeo de usuarios LDAP"
+msgstr ""
#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Username Field"
-msgstr "Campo nombre de usuario de LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:310
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:429
@@ -14444,12 +14581,12 @@ msgstr "LDAP no está habilitado."
#. 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 "Ruta de búsqueda LDAP para Grupos"
+msgstr ""
#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Users"
-msgstr "Ruta de búsqueda LDAP para Usuarios"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102
msgid "LDAP settings incorrect. validation response was: {0}"
@@ -14511,22 +14648,22 @@ msgstr "Etiqueta"
#. Label of the label_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Label Help"
-msgstr "Ayuda de 'Etiquetas'"
+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 "Etiqueta y Tipo"
+msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "La etiqueta es obligatoria"
#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr "Pagina de inicio"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
@@ -14542,7 +14679,7 @@ msgstr "Paisaje"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Idioma"
@@ -14550,12 +14687,12 @@ msgstr "Idioma"
#. Label of the language_code (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr "Código de lenguaje"
+msgstr ""
#. Label of the language_name (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr "Nombre del lenguaje"
+msgstr ""
#. Label of the last_10_active_users (Code) field in DocType 'System Health
#. Report'
@@ -14586,32 +14723,40 @@ msgstr ""
#. Label of the last_active (Datetime) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr "Último Activo"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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 "Última ejecución"
+msgstr ""
#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Last Heartbeat"
-msgstr "Último latido"
+msgstr ""
#. Label of the last_ip (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr "Última IP"
+msgstr ""
#. Label of the last_known_versions (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Known Versions"
-msgstr "Últimas versiones conocidas"
+msgstr ""
#. Label of the last_login (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr "Último ingreso"
+msgstr ""
#: frappe/email/doctype/notification/notification.js:32
msgid "Last Modified Date"
@@ -14626,7 +14771,7 @@ msgstr "Modificada por última vez"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/public/js/frappe/ui/filters/filter.js:643
msgid "Last Month"
-msgstr "El mes pasado"
+msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
@@ -14642,13 +14787,13 @@ msgstr "Apellido"
#. Label of the last_password_reset_date (Date) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Password Reset Date"
-msgstr "Fecha de restablecimiento de la última contraseña"
+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:647
msgid "Last Quarter"
-msgstr "Último cuarto"
+msgstr ""
#. Label of the last_received_at (Datetime) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -14669,12 +14814,12 @@ msgstr "Última ejecución"
#. 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 "Última Sincronización Activada"
+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 "Última sincronización en"
+msgstr ""
#. Label of the last_updated (Datetime) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -14694,24 +14839,29 @@ msgstr "Última actualización el"
#. Label of the last_user (Link) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr "Último usuario"
+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:639
msgid "Last Week"
-msgstr "La semana pasada"
+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:655
msgid "Last Year"
-msgstr "El año pasado"
+msgstr ""
#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
msgstr "Última sincronización {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "Restablecer diseño"
@@ -14727,7 +14877,7 @@ msgstr "Aprender más"
#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Leave blank to repeat always"
-msgstr "Dejar en blanco para repetir siempre"
+msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
#: frappe/email/doctype/email_account/email_account.py:720
@@ -14739,9 +14889,15 @@ msgstr "Abandonar esta conversación"
msgid "Ledger"
msgstr "Tabloide"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14829,13 +14985,13 @@ msgstr "Volvamos a la incorporación"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Letter"
-msgstr "Carta"
+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:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14846,25 +15002,25 @@ msgstr "Membrete"
#. Label of the source (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Based On"
-msgstr "Cabecera de carta basada en"
+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 "Imagen de encabezado de carta"
+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 "Nombre del Encabezado"
+msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "Letter Head Scripts"
msgstr "Scripts del membrete"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "El Membrete no puede estar deshabilitado y ser predeterminado al mismo tiempo"
@@ -14872,7 +15028,7 @@ msgstr "El Membrete no puede estar deshabilitado y ser predeterminado al mismo t
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head in HTML"
-msgstr "Membrete en HTML"
+msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
#. Label of the permlevel (Int) field in DocType 'DocPerm'
@@ -14886,7 +15042,7 @@ msgstr "Membrete en HTML"
msgid "Level"
msgstr "Nivel"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "El nivel 0 es para permisos de nivel de documento, los niveles superiores para permisos de nivel de campo."
@@ -14902,12 +15058,12 @@ msgstr "Licencia"
#. Label of the license_type (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "License Type"
-msgstr "Tipo de Licencia"
+msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Light"
-msgstr "Claro"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -14919,7 +15075,7 @@ msgstr "Azul claro"
#. Label of the light_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Light Color"
-msgstr "Color claro"
+msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:60
msgid "Light Theme"
@@ -14927,7 +15083,7 @@ msgstr "Tema Claro"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Como"
@@ -14949,16 +15105,16 @@ msgstr ""
#. Label of the limit (Int) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Limit"
-msgstr "Límite"
+msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
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 "Línea"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -14996,18 +15152,18 @@ msgstr ""
#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Link Cards"
-msgstr "Tarjetas de enlace"
+msgstr ""
#. Label of the link_count (Int) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Count"
-msgstr "Recuento de enlaces"
+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 "Detalles del enlace"
+msgstr ""
#. Label of the link_doctype (Link) field in DocType 'Activity Log'
#. Label of the link_doctype (Link) field in DocType 'Communication Link'
@@ -15016,12 +15172,12 @@ msgstr "Detalles del enlace"
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link DocType"
-msgstr "Enlazar DocType"
+msgstr ""
#. Label of the link_doctype (Link) field in DocType 'Dynamic Link'
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Document Type"
-msgstr "Tipo de documento de enlace"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
@@ -15037,7 +15193,7 @@ msgstr "Límite de resultados del campo de enlace"
#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link Fieldname"
-msgstr "Nombre del campo de enlace"
+msgstr ""
#. Label of the link_filters (JSON) field in DocType 'DocField'
#. Label of the link_filters (JSON) field in DocType 'Custom Field'
@@ -15057,14 +15213,14 @@ msgstr "Filtros de Enlaces"
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Name"
-msgstr "Nombre del enlace"
+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 "Título del Hipervínculo"
+msgstr ""
#. Label of the link_to (Dynamic Link) field in DocType 'Desktop Icon'
#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
@@ -15077,11 +15233,11 @@ msgstr "Título del Hipervínculo"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
-msgstr "Enlace a"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
@@ -15095,10 +15251,10 @@ msgstr "Enlace a en fila"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
-msgstr "Tipo de enlace"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
@@ -15116,14 +15272,14 @@ msgstr "Enlace que será la página principal de inicio del sitio web. Enlaces e
#. 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 "Enlace a la página que desea abrir. Dejar en blanco si desea que sea un grupo principal."
+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 "Vinculado"
+msgstr ""
#: frappe/public/js/frappe/form/linked_with.js:23
msgid "Linked With"
@@ -15138,6 +15294,7 @@ msgstr "Linkedin"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15159,16 +15316,16 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
-msgstr "Lista"
+msgstr ""
#. Label of the list__search_settings_section (Section Break) field in DocType
#. 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "List / Search Settings"
-msgstr "Configuración de Lista / Búsqueda"
+msgstr ""
#. Label of the list_columns (Table) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -15190,7 +15347,7 @@ msgstr "Filtro de Lista"
msgid "List Settings"
msgstr "Configuración de lista"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Configuración de lista"
@@ -15204,7 +15361,7 @@ msgstr "Vista de Lista"
msgid "List View Settings"
msgstr "Configuración de vista de lista"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "Listar un tipo de documento"
@@ -15213,7 +15370,7 @@ msgstr "Listar un tipo de documento"
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
-msgstr "Lista como [{ \"etiqueta\": _( \"trabajos\"), \"ruta\": \"trabajos\"}]"
+msgstr ""
#. Description of the 'Send Notification to' (Small Text) field in DocType
#. 'Email Account'
@@ -15231,16 +15388,16 @@ msgstr "Lista de parches ejecutados"
msgid "List setting message"
msgstr "Mensaje de configuración de lista"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "Listas"
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Load Balancing"
-msgstr "Balanceo de carga"
+msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15258,10 +15415,10 @@ msgstr "Cargar más"
#: 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "Cargando"
@@ -15278,8 +15435,8 @@ msgid "Loading versions..."
msgstr "Cargando versiones..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15289,14 +15446,15 @@ msgid "Loading..."
msgstr "Cargando..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
#. Label of the log (Code) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
msgid "Log"
-msgstr "Registro"
+msgstr ""
#. Label of the log_api_requests (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15306,7 +15464,7 @@ msgstr "Registrar solicitudes API"
#. Label of the log_data_section (Section Break) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Log Data"
-msgstr "Dato de registro"
+msgstr ""
#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear'
#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
@@ -15362,15 +15520,20 @@ msgstr "Desconectado"
msgid "Login"
msgstr "Iniciar sesión"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
-msgstr "Iniciar después"
+msgstr ""
#. Label of the login_before (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login Before"
-msgstr "Iniciar antes"
+msgstr ""
#: frappe/public/js/frappe/desk.js:256
msgid "Login Failed please try again"
@@ -15437,7 +15600,7 @@ msgstr "Inicie sesión para iniciar una nueva discusión"
msgid "Login to {0}"
msgstr "Iniciar sesión en {0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "Se requiere token de inicio de sesión"
@@ -15457,7 +15620,7 @@ msgstr "Ingresar con LDAP"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login with email link"
-msgstr "Iniciar sesión con enlace de correo"
+msgstr ""
#. Label of the login_with_email_link_expiry (Int) field in DocType 'System
#. Settings'
@@ -15486,7 +15649,7 @@ msgstr "URL del logo"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/me.html:91
msgid "Logout"
-msgstr "Salir"
+msgstr ""
#: frappe/core/doctype/user/user.js:195
msgid "Logout All Sessions"
@@ -15496,16 +15659,15 @@ msgstr "Cerrar sesión en todas las sesiones"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Logout All Sessions on Password Reset"
-msgstr "Cerrar sesión en todas las sesiones al restablecer la contraseña"
+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 "Cerrar sesión en todos los dispositivos después de cambiar la contraseña"
+msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Registros"
@@ -15517,7 +15679,7 @@ msgstr "Registros a borrar"
#. 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 "Registros a borrar"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -15526,7 +15688,7 @@ msgstr "Registros a borrar"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Long Text"
-msgstr "Texto largo"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
msgid "Looks like you didn't change the value"
@@ -15536,7 +15698,7 @@ msgstr "Parece que no cambiaste el valor"
msgid "Looks like you haven’t added any third party apps."
msgstr "Parece que no ha añadido ninguna aplicación de terceros."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "Parece que no has recibido ninguna notificación."
@@ -15554,7 +15716,7 @@ msgstr " M"
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "MIT License"
-msgstr "Licencia MIT"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:48
msgid "Madam"
@@ -15563,17 +15725,17 @@ msgstr "Señora"
#. Label of the main_section (Text Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section"
-msgstr "Sección Principal"
+msgstr ""
#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (HTML)"
-msgstr "Sección principal (HTML)"
+msgstr ""
#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (Markdown)"
-msgstr "Sección principal (Markdown)"
+msgstr ""
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
@@ -15589,7 +15751,7 @@ msgstr ""
#. Label of the major (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Major"
-msgstr "Mayor"
+msgstr ""
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
@@ -15597,7 +15759,7 @@ msgstr "Mayor"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
-msgstr "Hacer el \"nombre\" buscable en la búsqueda global"
+msgstr ""
#. Label of the make_attachment_public (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -15659,12 +15821,12 @@ 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 "Obligatorio depende de"
+msgstr ""
#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Mandatory Depends On (JS)"
-msgstr "Obligatorio Depende de (JS)"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.py:537
msgid "Mandatory Information missing:"
@@ -15686,7 +15848,7 @@ msgstr "Campos obligatorios requeridos en la tabla {0}, Fila {1}"
msgid "Mandatory fields required in {0}"
msgstr "Los siguientes campos son obligatorios en {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "Campos obligatorios requeridos:"
@@ -15698,7 +15860,7 @@ msgstr "Obligatorio:"
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Map"
-msgstr "Mapa"
+msgstr ""
#: frappe/public/js/frappe/data_import/import_preview.js:194
#: frappe/public/js/frappe/data_import/import_preview.js:306
@@ -15716,7 +15878,7 @@ msgstr "Mapear columnas de {0} a campos en {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 "Asigne parámetros de ruta a variables de formulario. Ejemplo /project/<name>"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:923
msgid "Mapping column {0} to field {1}"
@@ -15748,7 +15910,7 @@ msgstr "Margen superior"
msgid "MariaDB Variables"
msgstr "Variables de MariaDB"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "Marcar todo como leídas"
@@ -15783,12 +15945,12 @@ 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 "Editor Markdown"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Marked As Spam"
-msgstr "Marcado como Spam"
+msgstr ""
#. Name of a role
#: frappe/website/doctype/utm_campaign/utm_campaign.json
@@ -15800,9 +15962,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "Máscara"
@@ -15813,29 +15978,29 @@ 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 "Máximo 500 registros a la vez"
+msgstr ""
#. Label of the max_attachments (Int) field in DocType 'DocType'
#. Label of the max_attachments (Int) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr "Máximo de adjuntos"
+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 "Tamaño máximo del archivo (MB)"
+msgstr ""
#. Label of the max_height (Data) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Max Height"
-msgstr "Altura Máxima"
+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 "Longitud Máxima"
+msgstr ""
#. Label of the max_report_rows (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15845,7 +16010,7 @@ 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 "Valor Máximo"
+msgstr ""
#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -15864,14 +16029,14 @@ msgstr "Informes de correo electrónico automático máximos por usuario"
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "El ancho máximo para el tipo de divisa es 100px en la línea {0}"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "Máximo"
+msgstr ""
#: frappe/core/doctype/file/file.py:342
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
@@ -15885,20 +16050,27 @@ msgstr "Límite máximo de adjuntos de {0} ha sido alcanzado."
msgid "Maximum {0} rows allowed"
msgstr "Máximo: {0} lineas permitidas"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Yo"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "Significado de Validar, Cancelar, Rectificar"
+msgid "Meaning of Different Permission Types"
+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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15914,12 +16086,12 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:210
#: frappe/integrations/doctype/webhook/webhook.js:96
msgid "Meets Condition?"
-msgstr "¿Cumple las condiciones?"
+msgstr ""
#. Group in Email Group's connections
#: frappe/email/doctype/email_group/email_group.json
msgid "Members"
-msgstr "Miembros"
+msgstr ""
#. Label of the cache_memory_usage (Data) field in DocType 'System Health
#. Report'
@@ -15934,20 +16106,20 @@ msgstr "Uso de memoria en MB"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Mention"
-msgstr "Mencionar"
+msgstr ""
#. Label of the enable_email_mention (Check) field in DocType 'Notification
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr "Menciones"
+msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "Menú"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15981,13 +16153,13 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Mensaje"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Mensaje"
@@ -15995,19 +16167,19 @@ msgstr "Mensaje"
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr "Ejemplos de Mensaje"
+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 "ID de mensaje"
+msgstr ""
#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr "Parámetro del mensaje"
+msgstr ""
#: frappe/templates/includes/contact.js:36
msgid "Message Sent"
@@ -16016,9 +16188,9 @@ msgstr ""
#. Label of the message_type (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Type"
-msgstr "Tipo de mensaje"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Mensaje marcado"
@@ -16038,17 +16210,17 @@ msgstr "Mensaje que se mostrará al finalizar con éxito"
#. Label of the message_id (Code) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Message-id"
-msgstr "Mensaje-id"
+msgstr ""
#. Label of the messages (Code) field in DocType 'Data Import Log'
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Messages"
-msgstr "Mensajes"
+msgstr ""
#. Label of the meta_section (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta"
-msgstr "Meta"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
@@ -16063,7 +16235,7 @@ msgstr "Meta imagen"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr "Metaetiquetas"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
@@ -16113,9 +16285,9 @@ msgstr "Metadatos"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Método"
+msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "Método no permitido"
@@ -16133,7 +16305,7 @@ msgstr "Centro medio"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
msgid "Middle Name"
-msgstr "Segundo Nombre"
+msgstr ""
#. Label of a field in the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
@@ -16155,18 +16327,18 @@ msgstr "Rastreador de Hitos"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Minimum"
-msgstr "Mínimo"
+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 "Puntuación mínima de contraseña"
+msgstr ""
#. Label of the minor (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Minor"
-msgstr "Menor"
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:30
msgctxt "Duration"
@@ -16204,7 +16376,7 @@ msgstr "Srta."
msgid "Missing DocType"
msgstr "Falta DocType"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "Campo faltante"
@@ -16224,7 +16396,7 @@ msgstr "Faltan permisos"
msgid "Missing Value"
msgstr "Falta un valor"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16289,7 +16461,7 @@ msgstr "Función del modal"
#: 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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16307,7 +16479,7 @@ msgstr "Módulo"
#: frappe/custom/doctype/property_setter/property_setter.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Module (for export)"
-msgstr "Módulo (para exportar)"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Build Workspace
@@ -16320,12 +16492,12 @@ msgstr "Módulo Def"
#. Label of the module_html (HTML) field in DocType 'Module Profile'
#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module HTML"
-msgstr "Módulo HTML"
+msgstr ""
#. Label of the module_name (Data) field in DocType 'Module Def'
#: frappe/core/doctype/module_def/module_def.json
msgid "Module Name"
-msgstr "Nombre del módulo"
+msgstr ""
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -16336,16 +16508,15 @@ msgstr "Incorporación del módulo"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "Perfil del Módulo"
#. 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 "Nombre de Perfil del Módulo"
+msgstr ""
#: frappe/desk/doctype/module_onboarding/module_onboarding.py:73
msgid "Module onboarding progress reset"
@@ -16355,7 +16526,7 @@ msgstr "Restablecimiento del progreso de módulo de incorporación"
msgid "Module to Export"
msgstr "Módulo para Exportar"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "Módulo {} no encontrado"
@@ -16369,7 +16540,7 @@ msgstr "Módulos"
#. Label of the modules_html (HTML) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr "Módulos HTML"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -16395,7 +16566,7 @@ msgstr "Supervise los registros de errores, trabajos en segundo plano, comunicac
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Monospace"
-msgstr "Monoespaciado"
+msgstr ""
#: frappe/public/js/frappe/views/calendar/calendar.js:275
msgid "Month"
@@ -16426,7 +16597,7 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr "Largo mensual"
+msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:39
#: frappe/public/js/frappe/form/multi_select_dialog.js:45
@@ -16457,7 +16628,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
-msgstr "Más información"
+msgstr ""
#: frappe/website/doctype/help_article/templates/help_article.html:19
#: frappe/website/doctype/help_article/templates/help_article.html:33
@@ -16468,9 +16639,9 @@ msgstr "Más artículos sobre {0}"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr "Más contenido de la parte inferior de la página."
+msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "Más usado"
@@ -16485,7 +16656,7 @@ msgstr "Probablemente su contraseña es demasiado larga."
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Mover a"
@@ -16497,19 +16668,19 @@ msgstr "Mover a la papelera"
msgid "Move current and all subsequent sections to a new tab"
msgstr "Mover la sección actual y todas las siguientes a una nueva pestaña"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "Mover el cursor a la fila superior"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "Mover el cursor a la fila inferior"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "Mover el cursor a la siguiente columna"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "Mover el cursor a la columna anterior"
@@ -16521,7 +16692,7 @@ msgstr "Mover secciones a una nueva pestaña"
msgid "Move the current field and the following fields to a new column"
msgstr "Mover el campo actual y los siguientes campos a una nueva columna"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Mover al número de fila"
@@ -16556,7 +16727,7 @@ msgstr "Múltiples nodos raíz no permitidos."
#. Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr "Debe ser una URL de Google Sheets de acceso público"
+msgstr ""
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
@@ -16569,7 +16740,7 @@ msgstr "Debe ir encerrado entre '()' e incluir '{0}', que es un marcador de posi
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Must be of type \"Attach Image\""
-msgstr "Debe ser del tipo \"Adjuntar Imagen\""
+msgstr ""
#: frappe/desk/query_report.py:211
msgid "Must have report permission to access this report."
@@ -16582,7 +16753,7 @@ msgstr "Debe especificar una consulta para poder ejecutar"
#. Label of the mute_sounds (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Mute Sounds"
-msgstr "Sonidos Silenciados"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:45
msgid "Mx"
@@ -16602,7 +16773,7 @@ msgstr "Mi dispositivo"
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "MyISAM"
-msgstr "MyISAM"
+msgstr ""
#: frappe/workflow/doctype/workflow/workflow.js:19
msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA."
@@ -16639,7 +16810,7 @@ msgstr "Nombre (Doc Name)"
msgid "Name already taken, please set a new name"
msgstr "Nombre ya usado, por favor establezca un nuevo nombre"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "El nombre no puede contener caracteres especiales como {0}"
@@ -16651,7 +16822,7 @@ msgstr "Nombre del tipo de documento (DocType) al que quieres que se vincule est
msgid "Name of the new Print Format"
msgstr "Nombre del nuevo formato de impresión"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "Nombre de {0} no puede ser {1}"
@@ -16668,7 +16839,7 @@ msgstr "Nombres y apellidos por sí mismos son fáciles de adivinar."
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr "Nombrando"
+msgstr ""
#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
@@ -16684,7 +16855,7 @@ msgstr "Opciones de Nombrado:\n"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming Rule"
-msgstr "Regla de Nomenclatura"
+msgstr ""
#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming
#. Settings'
@@ -16692,7 +16863,7 @@ msgstr "Regla de Nomenclatura"
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Las secuencias e identificadores son obligatorios"
@@ -16702,7 +16873,7 @@ msgstr "Las secuencias e identificadores son obligatorios"
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar"
-msgstr "Barra de navegación"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/navbar_item/navbar_item.json
@@ -16716,57 +16887,57 @@ msgstr "Elemento de la barra de navegación"
msgid "Navbar Settings"
msgstr "Configuración de la barra de navegación"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-msgstr "Estilo de la Barra de navegación"
-
#. 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 "Plantilla de barra de navegación"
+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 "Valores de la plantilla de la barra de navegación"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
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:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navegar lista arriba"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "Ir al contenido principal"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
-msgstr "Configuración de Navegación"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "¿Necesita ayuda?"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
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:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Valor negativo"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16788,6 +16959,7 @@ msgstr "Nunca"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16804,7 +16976,7 @@ msgstr "Nueva Actividad"
#: 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "Nueva Dirección"
@@ -16820,8 +16992,8 @@ msgstr "Nuevo Contacto"
msgid "New Custom Block"
msgstr "Nuevo Bloque personalizado"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "Nuevo formato de impresión personalizado"
@@ -16870,7 +17042,7 @@ msgstr "Nuevo mensaje desde la página de contacto del sitio web"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Nuevo Nombre"
@@ -16891,8 +17063,8 @@ msgstr "Nuevo módulo de incorporación"
msgid "New Password"
msgstr "Nueva Contraseña"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Nuevo nombre de formato de impresión"
@@ -16919,8 +17091,8 @@ msgstr "Nuevo Atajo"
msgid "New Users (Last 30 days)"
msgstr "Usuarios nuevos (últimos 30 días)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "Nuevo Valor"
@@ -16928,7 +17100,7 @@ msgstr "Nuevo Valor"
msgid "New Workflow Name"
msgstr "Nuevo nombre del flujo de trabajo"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "Nueva Área de Trabajo"
@@ -16969,34 +17141,34 @@ msgstr "Los nuevos usuarios tendrán que ser registrados manualmente por los res
#. Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "New value to be set"
-msgstr "Nuevo valor a establecer"
+msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Nuevo/a: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Nuevo {0} creado"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
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:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "Nuevo {0} {1} creado"
@@ -17008,7 +17180,7 @@ msgstr "Nuevo {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Las nuevas {} versiones para las siguientes aplicaciones están disponibles"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "El usuario recién creado {0} no tiene ningún rol habilitado."
@@ -17029,7 +17201,7 @@ msgstr "Administrador de boletínes"
msgid "Next"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr ""
@@ -17054,21 +17226,25 @@ msgstr "Próximos 7 días"
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Next Action Email Template"
-msgstr "Plantilla de Correo Electrónico de próxima acción"
+msgstr ""
+
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 "Acciones Siguientes HTML"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr "Siguiente Documento"
#. 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 "Próxima ejecución"
+msgstr ""
#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -17086,7 +17262,7 @@ 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 "Siguiente Fecha Programada"
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
msgid "Next Scheduled Date"
@@ -17095,7 +17271,7 @@ msgstr "Próxima fecha programada"
#. Label of the next_state (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Next State"
-msgstr "Siguiente estado"
+msgstr ""
#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -17107,7 +17283,7 @@ msgstr "Condición para siguiente paso"
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Next Sync Token"
-msgstr "Siguiente token de sincronización"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:691
msgid "Next Week"
@@ -17128,20 +17304,24 @@ msgstr "Siguiente al hacer clic"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "No"
@@ -17167,7 +17347,7 @@ msgstr "No hay Sesiones Activas"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "No Copy"
-msgstr "No copiar"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
#: frappe/email/doctype/auto_email_report/auto_email_report.py:309
@@ -17211,7 +17391,7 @@ msgstr "No hay filtros establecidos"
msgid "No Google Calendar Event to sync."
msgstr "No hay eventos de Google Calendar para sincronizar."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "No hay imágenes"
@@ -17230,23 +17410,23 @@ msgstr "No se encontró ningún usuario LDAP para el correo electrónico: {0}"
msgid "No Label"
msgstr "Sin Etiqueta"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: 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 "Sin Membrete"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "Sin nombre especificado para {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "No hay nuevas notificaciones"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "No hay Permisos Especificados"
@@ -17266,11 +17446,11 @@ msgstr "No hay gráficos permitidos en este Tablero"
msgid "No Preview"
msgstr "Sin vista previa"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "Vista previa no disponible"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "No hay impresora disponible."
@@ -17278,7 +17458,7 @@ msgstr "No hay impresora disponible."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "No hay trabajadores RQ conectados. Intente reiniciar el bench."
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "No hay resultados"
@@ -17286,7 +17466,7 @@ msgstr "No hay resultados"
msgid "No Results found"
msgstr "No se encontraron resultados"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "No hay Roles especificados"
@@ -17302,7 +17482,7 @@ msgstr "No hay sugerencias"
msgid "No Tags"
msgstr "Sin Etiquetas"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "No hay próximos eventos"
@@ -17322,7 +17502,7 @@ msgstr "No hay sugerencias de optimización automática disponibles."
msgid "No changes in document"
msgstr "Sin cambios en el documento"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "No se ha realizado ningún cambio"
@@ -17386,7 +17566,7 @@ msgstr "No se han encontrado campos que puedan utilizarse como Columna Kanban. U
msgid "No file attached"
msgstr "No hay archivos adjuntos"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "No hay filtros"
@@ -17427,18 +17607,18 @@ msgstr "Nº de SMS solicitados"
#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "No of Rows (Max 500)"
-msgstr "No se de filas (máx 500)"
+msgstr ""
#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Sent SMS"
msgstr "Nº de SMS enviados"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "Sin permiso para {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "No tiene permiso para '{0} ' {1}"
@@ -17447,7 +17627,7 @@ msgstr "No tiene permiso para '{0} ' {1}"
msgid "No permission to read {0}"
msgstr "No tiene permiso para leer {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "No tiene permiso para {0} {1} {2}"
@@ -17463,7 +17643,7 @@ msgstr "No hay registros presentes en {0}"
msgid "No records tagged."
msgstr "Ningún registro etiquetado."
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "No se exportarán registros"
@@ -17471,7 +17651,7 @@ msgstr "No se exportarán registros"
msgid "No rows"
msgstr "Sin filas"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17483,11 +17663,12 @@ msgstr "Sin asunto"
msgid "No template found at path: {0}"
msgstr "No se encontraron plantillas en la ruta: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "No hay valores para mostrar"
@@ -17499,7 +17680,7 @@ msgstr "No {0}"
msgid "No {0} found"
msgstr "Ningún {0} encontrado"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "No se ha encontrado ningún {0} que coincida con filtros. Borre los filtros para ver todos los {0}."
@@ -17508,7 +17689,7 @@ msgid "No {0} mail"
msgstr "No {0} electrónico"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Nº"
@@ -17525,7 +17706,7 @@ msgstr "Nominatim"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Non Negative"
-msgstr "No negativo"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:33
msgid "Non-Conforming"
@@ -17549,14 +17730,14 @@ msgstr "Copias normalizadas"
#. Label of the normalized_query (Data) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Query"
-msgstr "Consulta normalizada"
+msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr ""
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "No Permitido: Usuario Deshabilitado"
@@ -17579,7 +17760,7 @@ msgstr "No encontrado"
#. Label of the not_helpful (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Not Helpful"
-msgstr "No útil"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:21
msgid "Not In"
@@ -17598,7 +17779,7 @@ msgstr "No está vinculado a ningún registro"
msgid "Not Nullable"
msgstr "No nulo"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17607,7 +17788,7 @@ msgstr "No nulo"
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "No permitido leer {0}"
@@ -17616,8 +17797,8 @@ msgstr "No permitido leer {0}"
msgid "Not Published"
msgstr "No publicado"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17637,7 +17818,7 @@ msgstr "No visto"
msgid "Not Sent"
msgstr "No enviado"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "No especificado"
@@ -17651,15 +17832,15 @@ 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:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "No es una Imagen de Usuario Válida."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "No es una acción de flujo de trabajo válida"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "Usuario no válido"
@@ -17667,7 +17848,7 @@ msgstr "Usuario no válido"
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "No permitido para {0}: {1}"
@@ -17687,11 +17868,11 @@ msgstr "No se permite imprimir documentos cancelados"
msgid "Not allowed to print draft documents"
msgstr "No se puede imprimir documentos en borrador"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "No permitido mediante el controlador de comprobación de permisos"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Extraviado"
@@ -17704,11 +17885,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "No se encuentra en modo desarrollador! Debe establecerlo en el archivo site_config.json o crear un 'DocType' personalizado."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17736,7 +17917,7 @@ msgstr "Nota vista por"
msgid "Note:"
msgstr "Nota:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Nota: Cambiar el nombre de la página romperá la URL anterior a esta página."
@@ -17748,13 +17929,13 @@ msgstr "Nota: Las zonas horarias Etc tienen sus signos invertidos."
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Note: For best results, images must be of the same size and width must be greater than height."
-msgstr "Nota: Para obtener mejores resultados, las imágenes deben ser del mismo tamaño y el ancho debe ser mayor que la altura."
+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 "Nota: Varias sesiones serán permitidas en el caso de los dispositivos móviles"
+msgstr ""
#: frappe/core/doctype/user/user.js:394
msgid "Note: This will be shared with user."
@@ -17768,7 +17949,7 @@ msgstr "Nota: Su solicitud de eliminación de cuenta se completará dentro de {0
msgid "Notes:"
msgstr "Notas:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "Nada nuevo"
@@ -17780,8 +17961,8 @@ msgstr "No queda nada que rehacer"
msgid "Nothing left to undo"
msgstr "Nada que deshacer"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17792,11 +17973,13 @@ msgid "Nothing to update"
msgstr "Nada que actualizar"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr ""
@@ -17812,7 +17995,7 @@ msgstr "Receptor de Notificaciones"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17821,11 +18004,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr "Notificación de documento suscrito"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "Notificación enviada a"
@@ -17843,13 +18021,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "Notificación: el usuario {0} no tiene número de móvil establecido"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Notificaciones"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "Notificaciones Desactivadas"
@@ -17857,37 +18037,37 @@ msgstr "Notificaciones Desactivadas"
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Notifications and bulk mails will be sent from this outgoing server."
-msgstr "Las notificaciones y los Emails masivos serán enviados desde este servidor saliente."
+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 "Notificar a los usuarios en cada inicio de sesión"
+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 "Notificar por correo electrónico"
+msgstr ""
#. Label of the notify_by_email (Check) field in DocType 'DocShare'
#: frappe/core/doctype/docshare/docshare.json
msgid "Notify by email"
-msgstr "Notificar por Email"
+msgstr ""
#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied"
-msgstr "Notificarme si no tiene respuesta"
+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 "Notificarme si no tiene respuesta durante (en minutos)"
+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 "Notificar a los usuarios con un mensaje emergente cuando se conectan"
+msgstr ""
#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
@@ -17897,7 +18077,7 @@ msgstr "Ahora"
#. Label of the phone (Data) field in DocType 'Contact Phone'
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr "Número"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
@@ -17930,22 +18110,22 @@ msgstr "Tarjetas de números"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/currency/currency.json
msgid "Number Format"
-msgstr "Formato de Número"
+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 "Número de copias de seguridad"
+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 "Numero de grupos"
+msgstr ""
#. Label of the number_of_queries (Int) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Number of Queries"
-msgstr "Número de consultas"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.py:444
#: frappe/public/js/frappe/doctype/index.js:66
@@ -17959,14 +18139,14 @@ msgstr "El número de copias de seguridad debe ser superior a cero."
#. 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 "Número de columnas para un campo en una cuadrícula (Total de columnas en una cuadrícula debe ser inferior a 11)"
+msgstr ""
#. Description of the 'Columns' (Int) field in DocType 'DocField'
#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr "Número de columnas para un campo en Vista de Lista o Cuadricula (El total de Columnas debe ser inferior a 11)"
+msgstr ""
#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
#. DocType 'System Settings'
@@ -17987,7 +18167,7 @@ msgstr "Número de copias de seguridad en el sitio"
#. Option for the 'Method' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "OAuth"
-msgstr "OAuth"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
@@ -18009,7 +18189,7 @@ msgstr "Cliente OAuth"
#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "OAuth Client ID"
-msgstr "ID de cliente de OAuth"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -18044,7 +18224,7 @@ msgstr "OAuth ha sido habilitado pero no autorizado. Por favor, utilice el botó
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "OPTIONS"
-msgstr "OPTIONS"
+msgstr ""
#: frappe/public/js/form_builder/components/Tabs.vue:190
msgid "OR"
@@ -18054,12 +18234,12 @@ msgstr "O"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP App"
-msgstr "Aplicación OTP"
+msgstr ""
#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP Issuer Name"
-msgstr "Nombre del Emisor de OTP"
+msgstr ""
#. Label of the otp_sms_template (Small Text) field in DocType 'System
#. Settings'
@@ -18085,7 +18265,7 @@ msgstr "OTP Secret ha sido restablecido. Re-registro será necesario en el próx
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "La configuración de OTP mediante la aplicación OTP no se completó. Por favor contacte al Administrador."
@@ -18098,18 +18278,18 @@ msgstr "Ocurrencias"
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Off"
-msgstr "Apagado"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Office"
-msgstr "Oficina"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Office 365"
-msgstr "Office 365"
+msgstr ""
#: frappe/core/doctype/server_script/server_script.js:36
msgid "Official Documentation"
@@ -18118,14 +18298,14 @@ msgstr "Documentación Oficial"
#. 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 "Desplazamiento X"
+msgstr ""
#. Label of the offset_y (Int) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset Y"
-msgstr "Desplazamiento Y"
+msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -18133,7 +18313,7 @@ msgstr ""
msgid "Old Password"
msgstr "Contraseña anterior"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Los nombres de campos antiguos y nuevos son iguales."
@@ -18141,7 +18321,7 @@ msgstr "Los nombres de campos antiguos y nuevos son iguales."
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Older backups will be automatically deleted"
-msgstr "Copias de seguridad anteriores se eliminarán de forma automática"
+msgstr ""
#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health
#. Report'
@@ -18200,7 +18380,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:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "El {0}, {1} escribió:"
@@ -18244,7 +18424,7 @@ msgstr "Incorporación completada"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Una vez validados, los documentos que se pueden validar no se pueden cambiar. Solo pueden cancelarse y rectificarse."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "Una vez establecido esto, los usuarios sólo podrán acceder a los documentos (p. ej., entradas de blog) en los que exista el enlace (p. ej., Blogger)."
@@ -18260,11 +18440,11 @@ msgstr "Código de registro de contraseña de un solo uso (OTP) de {}"
msgid "One of"
msgstr "Uno de"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Sólo 200 inserciones se permiten en una petición"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Sólo el administrador puede eliminar la cola de correo electrónico"
@@ -18283,16 +18463,16 @@ msgstr "Solo el administrador puede usar la grabadora"
#. 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 "Permitir editar para"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Solo las opciones permitidas para el campo de datos son:"
#. 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 "Sólo enviar registros actualizados en las últimas X horas"
+msgstr ""
#: frappe/core/doctype/file/file.py:167
msgid "Only System Managers can make this file public."
@@ -18308,11 +18488,11 @@ msgstr "Solo el Administrador del Área de Trabajo puede editar Áreas de Trabaj
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "Solo se permite exportar personalizaciones en modo desarrollador"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Solo pueden descartarse los borradores de documentos"
@@ -18320,7 +18500,7 @@ msgstr "Solo pueden descartarse los borradores de documentos"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
-msgstr "Solo para"
+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."
@@ -18355,7 +18535,7 @@ msgstr "Solo el asignado puede completar esta tarea."
msgid "Only {0} emailed reports are allowed per user."
msgstr "Sólo se permiten {0} informes enviados por correo electrónico por usuario."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "¡Ups! Algo salió mal."
@@ -18378,8 +18558,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18399,7 +18579,7 @@ msgstr "Abrir documento"
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Open Documents"
-msgstr "Documentos abiertos"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
@@ -18409,12 +18589,16 @@ msgstr "Abrir Ayuda"
#. Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr "Abrir documento de referencia"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
msgstr "Configuración abierta"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Aplicaciones de Código Abierto para la web"
@@ -18422,14 +18606,14 @@ msgstr "Aplicaciones de Código Abierto para la 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 "Abrir URL en una pestaña nueva"
+msgstr ""
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr "Abre un diálogo con campos obligatorios para crear un nuevo registro rápidamente. Debe haber al menos un campo obligatorio para que aparezca en el diálogo."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Abrir un módulo o herramienta"
@@ -18441,11 +18625,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr "Abrir en una nueva pestaña"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Abrir elemento de lista"
@@ -18460,23 +18644,23 @@ msgstr "Abre tu aplicación de autenticación en tu teléfono móvil."
#: 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:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Abrir {0}"
#. Label of the openid_configuration (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "OpenID Configuration"
-msgstr "Configuración de OpenID"
+msgstr ""
#: frappe/integrations/doctype/connected_app/connected_app.js:15
msgid "OpenID Configuration fetched successfully!"
@@ -18485,12 +18669,12 @@ msgstr ""
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "OpenLDAP"
-msgstr "OpenLDAP"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Opened"
-msgstr "Abierto"
+msgstr ""
#. Label of the operation (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
@@ -18501,7 +18685,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr "El Operador debe ser uno de {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18527,19 +18711,19 @@ msgstr "Opción 2"
msgid "Option 3"
msgstr "Opción 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "La opción {0} para el campo {1} no es una tabla secundaria"
#. 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 "Opcional: Enviar siempre a estos identificadores. Cada dirección de correo electrónico en una nueva fila"
+msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr "Opcional: La alerta será enviada si esta expresión es verdadera"
+msgstr ""
#. Label of the options (Small Text) field in DocType 'DocField'
#. Label of the options (Data) field in DocType 'Report Column'
@@ -18561,16 +18745,16 @@ msgstr "Opcional: La alerta será enviada si esta expresión es verdadera"
msgid "Options"
msgstr "Opciones"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Las opciones de campo de tipo 'Vinculo Dinámico' debe apuntar a otro campo con propiedades 'DocType'"
#. Label of the options_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr "Opciones de ayuda"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Las opciones para el campo Calificación pueden ir de 3 a 10"
@@ -18578,7 +18762,7 @@ msgstr "Las opciones para el campo Calificación pueden ir de 3 a 10"
msgid "Options for select. Each option on a new line."
msgstr "Opciones para seleccionar. Cada opción en una nueva línea."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Las opciones para {0} deben configurarse antes de configurar el valor predeterminado."
@@ -18586,7 +18770,7 @@ msgstr "Las opciones para {0} deben configurarse antes de configurar el valor pr
msgid "Options is required for field {0} of type {1}"
msgstr "Se requieren opciones para el campo {0} de tipo {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Las opciones no establecidas para el campo enlazado {0}"
@@ -18600,9 +18784,9 @@ msgstr "Naranja"
#. Label of the order (Code) field in DocType 'Kanban Board Column'
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Order"
-msgstr "Orden"
+msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18610,20 +18794,24 @@ msgstr ""
#. 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 "Historia de la organización"
+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 "Encabezado de la historia de la organización"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr "Orientación"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Valor Original"
@@ -18637,7 +18825,7 @@ msgstr "Valor Original"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr "Otro"
+msgstr ""
#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -18648,7 +18836,7 @@ msgstr ""
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Outgoing (SMTP) Settings"
-msgstr "Configuración saliente (SMTP)"
+msgstr ""
#. Label of the outgoing_emails_column (Column Break) field in DocType 'System
#. Health Report'
@@ -18661,13 +18849,13 @@ msgstr "Correos electrónicos salientes (últimos 7 días)"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Server"
-msgstr "Servidor de salida"
+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 "Configuración saliente"
+msgstr ""
#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Outgoing email account not correct"
@@ -18676,7 +18864,7 @@ msgstr "Cuenta de Correo Electrónico Saliente no correcta"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Outlook.com"
-msgstr "Outlook.com"
+msgstr ""
#. Label of the output (Code) field in DocType 'Permission Inspector'
#. Label of the output (Code) field in DocType 'System Console'
@@ -18685,7 +18873,7 @@ msgstr "Outlook.com"
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Output"
-msgstr "Salida"
+msgstr ""
#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
msgid "Overview"
@@ -18694,46 +18882,48 @@ msgstr "Resumen"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "PATCH"
-msgstr "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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "Generación de PDF en progreso"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.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 "Altura de página PDF (en mm)"
+msgstr ""
#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr "Tamaño de página PDF"
+msgstr ""
#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Width (in mm)"
-msgstr "Ancho de página PDF (en mm)"
+msgstr ""
#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr "Configuración de paginas PDF"
+msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "La generación de PDF falló"
@@ -18741,32 +18931,32 @@ msgstr "La generación de PDF falló"
msgid "PDF generation failed because of broken image links"
msgstr "Error en la generación del archivo PDF debido a problema con los enlaces de las imágenes"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "Es posible que la generación de PDF no funcione como se esperaba."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "La impresión en PDF a través de \"Impresión sin formato\" no está soportada."
#. Label of the pid (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "PID"
-msgstr "PID"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "POST"
-msgstr "POST"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "PUT"
-msgstr "PUT"
+msgstr ""
#. Label of the package (Link) field in DocType 'Module Def'
#. Name of a DocType
@@ -18789,7 +18979,7 @@ msgstr "Importación de Paquetes"
#. Label of the package_name (Data) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "Package Name"
-msgstr "Nombre del Paquete"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/package_release/package_release.json
@@ -18835,7 +19025,7 @@ msgstr "Página"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Page Break"
-msgstr "Salto de Página"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.js:92
@@ -18846,12 +19036,12 @@ msgstr "Creador de páginas"
#. Label of the page_blocks (Table) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Page Building Blocks"
-msgstr "Bloques de creación de páginas"
+msgstr ""
#. Label of the page_html (Section Break) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page HTML"
-msgstr "Página HTML"
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
@@ -18864,24 +19054,24 @@ msgstr "Márgenes de la página"
#. Label of the page_name (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page Name"
-msgstr "Nombre de la página"
+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 "Número de página"
+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 "Ruta de la página"
+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 "Configuración de Página"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
@@ -18894,7 +19084,7 @@ msgstr "Tamaño de página"
#. 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 "Título de Página"
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:80
msgid "Page Width (in mm)"
@@ -18904,7 +19094,7 @@ msgstr "Ancho de página (en mm)"
msgid "Page has expired!"
msgstr "La página ha expirado!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "El alto y el ancho de la página no pueden ser cero"
@@ -18920,7 +19110,7 @@ msgstr "Página para mostrar en el sitio web\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:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18931,21 +19121,21 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Principal"
#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Parent DocType"
-msgstr "DocType padre"
+msgstr ""
#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
#. Label of the parent_document_type (Link) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
-msgstr "Tipo de documento padre"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
@@ -18955,20 +19145,20 @@ msgstr "Se requiere el tipo de documento padre para crear un Widget numérico"
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Parent Element Selector"
-msgstr "Selector de elemento padre"
+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 "Campo padre"
+msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Campo principal (árbol)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "El campo principal debe ser un nombre de campo válido"
@@ -18980,16 +19170,16 @@ 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 "Etiqueta Principal"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "Falta padre"
#. Label of the parent_page (Link) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Parent Page"
-msgstr "Página Padre"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:24
msgid "Parent Table"
@@ -19007,18 +19197,18 @@ msgstr "Parent es el nombre del documento al que se agregarán los datos."
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "Campo padre no especificado en {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "Parenttype, Parent y Parentfield son necesarios para insertar un registro hijo"
#. 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 "Parcial"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -19030,7 +19220,7 @@ msgstr ""
msgid "Partially Sent"
msgstr "Enviado parcialmente"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Participantes"
@@ -19044,7 +19234,7 @@ msgstr "Correcto"
#. Option for the 'Status' (Select) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr "Pasivo"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the password_settings (Section Break) field in DocType 'System
@@ -19067,20 +19257,20 @@ msgstr "Pasivo"
msgid "Password"
msgstr "Contraseña"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "Correo de Contraseña enviado"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Restablecer contraseña"
#. 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 "Límite de generación de enlaces de restablecimiento de contraseña"
+msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "No se puede filtrar por contraseña"
@@ -19091,7 +19281,7 @@ msgstr "Contraseña cambiada satisfactoriamente."
#. Label of the password (Password) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Password for Base DN"
-msgstr "Contraseña para la base DN"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
@@ -19109,11 +19299,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:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
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 {}."
@@ -19125,7 +19315,7 @@ msgstr "Contraseña establecida"
msgid "Password size exceeded the maximum allowed size"
msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "El tamaño de la contraseña superó el tamaño máximo permitido."
@@ -19146,7 +19336,7 @@ msgstr "Pegar"
#: frappe/core/doctype/package_release/package_release.json
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch"
-msgstr "Parche"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/patch_log/patch_log.json
@@ -19174,20 +19364,20 @@ msgstr "Camino"
#. 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 "Ruta al archivo de certificados de CA"
+msgstr ""
#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr "Ruta al certificado del servidor"
+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 "Ruta al archivo de clave privada"
+msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19221,7 +19411,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr "Aprobación pendiente"
+msgstr ""
#. Label of the pending_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19238,7 +19428,7 @@ msgstr "Trabajos pendientes"
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Verification"
-msgstr "Verificación pendiente"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -19252,7 +19442,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "Porcentaje"
+msgstr ""
#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
#. Report'
@@ -19265,22 +19455,22 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Perm Level"
-msgstr "Nivel permitido"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Permanent"
-msgstr "Permanente"
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "¿Cancelar permanentemente {0}?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "¿Descartar permanentemente {0}?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "¿Validar permanentemente {0}?"
@@ -19288,7 +19478,11 @@ msgstr "¿Validar permanentemente {0}?"
msgid "Permanently delete {0}?"
msgstr "¿Eliminar permanentemente \"{0}\"?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Error de Permiso"
@@ -19298,12 +19492,12 @@ msgid "Permission Inspector"
msgstr "Supervisor de Permisos"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Nivel de permisos"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Nivel de Permisos"
@@ -19312,11 +19506,6 @@ msgstr "Nivel de Permisos"
msgid "Permission Log"
msgstr "Registro de permisos"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "Administrador de Permisos"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19325,7 +19514,7 @@ msgstr "Consulta de permisos"
#. Label of the permission_rules (Section Break) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "Permission Rules"
-msgstr "Reglas de permisos"
+msgstr ""
#. Label of the permission_type (Select) field in DocType 'Permission
#. Inspector'
@@ -19334,7 +19523,7 @@ msgstr "Reglas de permisos"
#: frappe/core/doctype/permission_inspector/permission_inspector.json
#: frappe/core/doctype/permission_type/permission_type.json
msgid "Permission Type"
-msgstr "Tipo de Permiso"
+msgstr ""
#: frappe/core/doctype/permission_type/permission_type.py:40
msgid "Permission Type '{0}' is reserved. Please choose another name."
@@ -19347,7 +19536,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19358,13 +19546,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Permisos"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Error de Permisos"
@@ -19376,11 +19563,11 @@ msgstr "Los permisos se aplican automáticamente a los Informes estándar y a la
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 "Los permisos son configurados en Roles y Tipos de Documento (llamados DocTypes) configurando derechos como Leer, Escribir, Eliminar, Validar, Cancelar, Rectificar, Reportar, Importar, Exportar, Imprimir, Email y Configurar Permisos de Usuarios."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "Los permisos de niveles superiores son permisos de Nivel de Campo. Todos los Campos tienen un Nivel de Permiso establecido contra ellos y las reglas definidas en ese permiso se aplican al campo. Esto es útil en caso de que desee ocultar o hacer que ciertos campos sean de sólo lectura para ciertos Roles."
-#: frappe/core/page/permission_manager/permission_manager_help.html:24
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Los permisos en el nivel 0 son permisos de nivel de documento, es decir, son primordiales para acceder al documento."
@@ -19399,12 +19586,12 @@ msgstr "Documentos permitidos a los usuarios"
#. Action'
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Permitted Roles"
-msgstr "Roles permitidos"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Personal"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -19448,22 +19635,22 @@ msgstr ""
#. Label of the phone_no (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Phone No."
-msgstr "No. de teléfono"
+msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
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:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Seleccionar columnas"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr "Tarta"
+msgstr ""
#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19491,7 +19678,7 @@ msgstr "Marcador de posición"
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Plain Text"
-msgstr "Texto sin formato"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -19514,7 +19701,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Por favor, establezca el gráfico"
@@ -19530,7 +19717,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:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Por favor, consulte a su administrador para verificar su registro"
@@ -19538,11 +19725,11 @@ msgstr "Por favor, consulte a su administrador para verificar su registro"
msgid "Please attach a file first."
msgstr "Por favor, adjunte un archivo"
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Por favor, adjunte un archivo de imagen para establecer el HTML para el pie de página."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Por favor, adjunte un archivo de imagen para establecer el HTML para el membrete."
@@ -19554,11 +19741,11 @@ msgstr "Por favor adjunte el paquete"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Compruebe los valores de filtro establecidos para el gráfico del tablero: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
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:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Por favor, consultar su correo electrónico para la verificación"
@@ -19590,7 +19777,7 @@ msgstr "Por favor, haga clic en el siguiente enlace para configurar su nueva con
msgid "Please confirm your action to {0} this document."
msgstr "Confirma tu acción a {0} este documento."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Póngase en contacto con el responsable de su sistema para instalar la versión correcta."
@@ -19620,10 +19807,10 @@ msgstr "Por favor, habilite al menos una Clave de Inicio de Sesión Social o LDA
#: 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19636,7 +19823,7 @@ msgstr "Habilite las ventanas emergentes en su navegador"
msgid "Please enable {} before continuing."
msgstr "Habilite {} antes de continuar."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
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"
@@ -19710,15 +19897,15 @@ 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:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Por favor, actualice para obtener el último documento."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Por favor, elimine la asignación de la impresora en Configuración de la impresora e inténtelo de nuevo."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Por favor, guarde los cambios antes de adjuntar"
@@ -19734,7 +19921,7 @@ msgstr "Por favor, guarde el documento antes de remover la asignación"
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Por favor, guarde el informe primero"
@@ -19754,7 +19941,7 @@ 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:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Por favor, seleccione campos X e Y"
@@ -19762,7 +19949,7 @@ msgstr "Por favor, seleccione campos X e Y"
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Por favor, seleccione un código de país para el campo {1}."
@@ -19812,11 +19999,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr "Por favor, establece Dirección de correo electrónico"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
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:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19824,7 +20011,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr "Defina el valor de los filtros en la tabla Filtro de informes."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Por favor, establezca el nombre del documento"
@@ -19844,19 +20031,19 @@ msgstr "Configure SMS antes de configurarlo como un método de autenticación, a
msgid "Please setup a message first"
msgstr "Configura un mensaje primero"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Por favor, configure la cuenta de correo saliente por defecto desde Ajustes > Cuenta de Correo"
#: frappe/email/doctype/email_account/email_account.py:432
msgid "Please setup default outgoing Email Account from Tools > Email Account"
-msgstr ""
+msgstr "Por favor, configure la cuenta de correo saliente por defecto desde Ajustes > Cuenta de Correo"
#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Por favor, especifique un DocType padre válido para {0}"
@@ -19884,7 +20071,7 @@ msgstr "Por favor especifique la fecha que debe ser verificada"
msgid "Please specify which value field must be checked"
msgstr "Por favor, especifique qué campo debe ser revisado"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Por favor, inténtelo de nuevo"
@@ -19936,7 +20123,7 @@ msgstr "Descripción modal o ventana emergente"
#: frappe/email/doctype/email_domain/email_domain.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr "Puerto"
+msgstr ""
#: frappe/www/me.html:81
msgid "Portal"
@@ -19945,7 +20132,7 @@ msgstr "Portal"
#. Label of the menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Portal Menu"
-msgstr "Menú del Portal"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
@@ -19964,7 +20151,7 @@ msgstr "Retrato"
#. Label of the position (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Position"
-msgstr "Posición"
+msgstr ""
#: frappe/templates/discussions/comment_box.html:29
#: frappe/templates/discussions/reply_card.html:15
@@ -20003,13 +20190,13 @@ msgstr "Marca de tiempo de la publicación"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr "Precisión"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Precisión debe estar entre 1 y 6"
@@ -20024,12 +20211,12 @@ msgstr "Prefiero no decirlo"
#. Label of the is_primary_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Billing Address"
-msgstr "Dirección de facturación preferida"
+msgstr ""
#. Label of the is_shipping_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Shipping Address"
-msgstr "Dirección de envío preferida"
+msgstr ""
#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
@@ -20037,7 +20224,7 @@ msgstr "Dirección de envío preferida"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr "Prefijo"
+msgstr ""
#. Name of a DocType
#. Label of the prepared_report (Check) field in DocType 'Report'
@@ -20050,7 +20237,7 @@ msgstr "Informe Preparado"
#. Name of a report
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
msgid "Prepared Report Analytics"
-msgstr ""
+msgstr "Análisis de informes preparados"
#. Name of a role
#: frappe/core/doctype/prepared_report/prepared_report.json
@@ -20061,11 +20248,11 @@ msgstr "Usuario de informe preparado"
msgid "Prepared report render failed"
msgstr "Error en la representación del informe preparado"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Preparando Informe"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Anexar la plantilla al mensaje de correo electrónico"
@@ -20073,7 +20260,7 @@ msgstr "Anexar la plantilla al mensaje de correo electrónico"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Presione la tecla Alt para activar accesos directos adicionales en Menú y Barra lateral"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Presione Enter para guardar"
@@ -20091,19 +20278,19 @@ msgstr "Presione Enter para guardar"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
#. Label of the preview_html (HTML) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr "Vista Previa HTML"
+msgstr ""
#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr "Mensaje de Vista Previa"
+msgstr ""
#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
@@ -20113,7 +20300,7 @@ msgstr "Modo de previsualización"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Preview of generated names"
-msgstr "Vista previa de los nombres generados"
+msgstr ""
#: frappe/public/js/frappe/views/render_preview.js:19
msgid "Preview on {0}"
@@ -20135,16 +20322,16 @@ msgstr "Vista Previa:"
msgid "Previous"
msgstr "Anterior"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Anterior"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Documento anterior"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Envío anterior"
@@ -20158,7 +20345,7 @@ msgstr "Envío anterior"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Primary"
-msgstr "Primario"
+msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:27
msgid "Primary Address"
@@ -20167,7 +20354,7 @@ msgstr "Dirección Primaria"
#. Label of the primary_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Primary Color"
-msgstr "Color primario"
+msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:23
msgid "Primary Contact"
@@ -20197,19 +20384,19 @@ msgstr "La clave primaria del doctype {0} no puede modificarse, ya que existen v
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20227,8 +20414,9 @@ msgstr "Imprimir Documentos"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20246,7 +20434,7 @@ msgstr ""
#. Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Builder Beta"
-msgstr "Diseñador de formatos de impresión Beta"
+msgstr ""
#: frappe/utils/pdf.py:64
msgid "Print Format Error"
@@ -20265,14 +20453,14 @@ 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 "Ayuda de formato de impresión"
+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 "Tipo de formato de impresión"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20293,7 +20481,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide"
-msgstr "Ocultar en impresión"
+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'
@@ -20303,13 +20491,13 @@ msgstr "Ocultar en impresión"
#: 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 "Impresión Oculta si no hay Valor"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Lenguaje de impresión"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "¡La impresión ha sido enviada a la impresora!"
@@ -20317,13 +20505,13 @@ msgstr "¡La impresión ha sido enviada a la impresora!"
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "Servidor de Impresión"
+msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Ajustes de Impresión"
@@ -20340,12 +20528,12 @@ 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 "Nombre del Estilo de Impresión"
+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 "Vista previa de estilo"
+msgstr ""
#. Label of the print_width (Data) field in DocType 'DocField'
#. Label of the print_width (Data) field in DocType 'Custom Field'
@@ -20354,28 +20542,28 @@ msgstr "Vista previa de estilo"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr "Ancho de Impresión"
+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 "Imprimir el ancho del campo, si el campo es una columna en una tabla"
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Imprimir Documento"
#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "Imprimir con membrete"
+msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Impresora"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Mapeo de impresora"
@@ -20383,17 +20571,17 @@ msgstr "Mapeo de impresora"
#. Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "Nombre de la Impresora"
+msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Configuración de la impresora"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "El mapeo de impresora no está establecido."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Impresión Fallida"
@@ -20436,13 +20624,13 @@ msgstr ""
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "Protip: Agregar Reference: {{ reference_doctype }} {{ reference_name }} enviar referencia del documento"
+msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
msgstr "Proceder"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Procede de todas maneras"
@@ -20461,7 +20649,7 @@ msgstr "Prof"
#. Group in User's connections
#: frappe/core/doctype/user/user.json
msgid "Profile"
-msgstr "Perfil"
+msgstr ""
#. Label of a field in the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
@@ -20482,9 +20670,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20496,7 +20684,7 @@ 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 "La propiedad depende de"
+msgstr ""
#. Name of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -20511,7 +20699,7 @@ msgstr "Property Setter sobreescribe una propiedad de un DocType o Field estánd
#. Label of the property_type (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr "Tipo de Inmueble"
+msgstr ""
#. Label of the protect_attached_files (Check) field in DocType 'DocType'
#. Label of the protect_attached_files (Check) field in DocType 'Customize
@@ -20529,14 +20717,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 "Proporcione una lista de extensiones de archivo permitidas para la carga de archivos. Cada línea debe contener un tipo de archivo permitido. Si no está configurado, se permiten todas las extensiones de archivo. Ejemplo:
CSV
JPG
PNG"
+msgstr ""
#. Label of the provider (Data) field in DocType 'User Social Login'
#. Label of the provider (Select) field in DocType 'Geolocation Settings'
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr "Proveedor"
+msgstr ""
#. Label of the provider_name (Data) field in DocType 'Connected App'
#. Label of the provider_name (Data) field in DocType 'Social Login Key'
@@ -20545,7 +20733,7 @@ msgstr "Proveedor"
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Provider Name"
-msgstr "Nombre del Proveedor"
+msgstr ""
#. Option for the 'Event Type' (Select) field in DocType 'Event'
#. Label of the public (Check) field in DocType 'Note'
@@ -20554,7 +20742,7 @@ msgstr "Nombre del Proveedor"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Público"
@@ -20615,23 +20803,23 @@ msgstr "Comprobar correos electrónicos entrantes"
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr "Tire de Google Calendar"
+msgstr ""
#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr "Tire de los contactos de Google"
+msgstr ""
#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr "Extraído de Google Calendar"
+msgstr ""
#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr "Extraído de los contactos de Google"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.js:209
msgid "Pulling emails..."
@@ -20677,13 +20865,13 @@ msgstr "Notificaciones Push"
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr "Empuje a Google Calendar"
+msgstr ""
#. Label of the push_to_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr "Empuje a Contactos de Google"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
@@ -20694,7 +20882,7 @@ msgstr "Poner en espera"
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/email/doctype/notification/notification.json
msgid "Python"
-msgstr "Python"
+msgstr ""
#: frappe/www/qrcode.html:3
msgid "QR Code"
@@ -20704,7 +20892,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:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "Bandeja QZ fallida:"
@@ -20725,18 +20913,18 @@ msgstr ""
#: frappe/core/doctype/recorder_query/recorder_query.json
#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr "Consulta"
+msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr "Consulta / Script"
+msgstr ""
#. Label of the query_options (Small Text) field in DocType 'Contact Us
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Query Options"
-msgstr "Opciones de Consulta"
+msgstr ""
#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
@@ -20764,9 +20952,9 @@ msgstr "La consulta debe ser de tipo SELECT o WITH de sólo lectura."
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "Queue"
-msgstr "Cola"
+msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20778,23 +20966,23 @@ msgstr "Estado de la cola"
#. Label of the queue_type (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue Type(s)"
-msgstr "Tipo(s) de Cola"
+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 "Cola en segundo plano (BETA)"
+msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Cola debe ser una de {0}"
#. Label of the queue (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue(s)"
-msgstr "Cola(s)"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
@@ -20808,12 +20996,12 @@ msgstr "En cola"
#. Label of the queued_at (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued At"
-msgstr "En cola el"
+msgstr ""
#. Label of the queued_by (Data) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued By"
-msgstr "En cola por"
+msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:186
msgid "Queued for Submission. You can track the progress over {0}."
@@ -20828,7 +21016,7 @@ msgstr "En cola para la copia de seguridad. Recibirá un correo electrónico con
msgid "Queues"
msgstr "Colas"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "Poniendo en cola {0} para su envío"
@@ -20853,7 +21041,7 @@ msgstr "Filtro de lista rápida"
#. Label of the quick_lists (Table) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Quick Lists"
-msgstr "Listas rápidas"
+msgstr ""
#: frappe/public/js/frappe/views/reports/report_utils.js:314
msgid "Quoting must be between 0 and 3"
@@ -20863,7 +21051,7 @@ msgstr "La Cotización debe estar entre 0 y 3"
#. 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "RAW Information Log"
-msgstr "Registro de información RAW"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/rq_job/rq_job.json
@@ -20880,7 +21068,7 @@ msgstr "Trabajador RQ"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Random"
-msgstr "Aleatorio"
+msgstr ""
#: frappe/website/report/website_analytics/website_analytics.js:20
msgid "Range"
@@ -20918,7 +21106,16 @@ msgstr "Comandos sin formato"
#. Label of the raw (Code) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Raw Email"
-msgstr "Correo electrónico sin procesar"
+msgstr ""
+
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
@@ -20926,9 +21123,9 @@ msgstr "Correo electrónico sin procesar"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Raw Printing"
-msgstr "Impresión en bruto"
+msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Configuración de Impresión sin formato"
@@ -20946,7 +21143,7 @@ msgstr "Re:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Re: {0}"
@@ -20957,11 +21154,12 @@ msgstr "Re: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20991,14 +21189,14 @@ msgstr "Sólo lectura"
#: 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 "Solo lectura depende de"
+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 "Solo lectura Depende de (JS)"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Modo de solo lectura"
@@ -21006,13 +21204,13 @@ msgstr "Modo de solo lectura"
#. Label of the read_by_recipient (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient"
-msgstr "Leído por el Destinatario"
+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 "Leído por el Destinatario en"
+msgstr ""
#: frappe/desk/doctype/note/note.js:10
msgid "Read mode"
@@ -21025,7 +21223,7 @@ msgstr "Lea la documentación para saber más"
#. Label of the readme (Markdown Editor) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "Readme"
-msgstr "Léeme"
+msgstr ""
#. Label of the realtime_socketio_section (Section Break) field in DocType
#. 'System Health Report'
@@ -21038,7 +21236,7 @@ msgstr "Tiempo real (SocketIO)"
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Reconstruir"
@@ -21063,24 +21261,24 @@ msgstr "Se recibió un tipo de token no válido."
#. 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr "Receptor por campo de documento"
+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 "Receptor por función"
+msgstr ""
#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr "Parámetro del receptor"
+msgstr ""
#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
msgstr "Años recientes son fáciles de adivinar."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Recientes"
@@ -21089,7 +21287,7 @@ msgstr "Recientes"
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr "Beneficiario"
+msgstr ""
#. Label of the recipient_account_field (Data) field in DocType 'DocType'
#. Label of the recipient_account_field (Data) field in DocType 'Customize
@@ -21102,7 +21300,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr "Receptor no suscrito"
+msgstr ""
#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
@@ -21110,7 +21308,7 @@ msgstr "Receptor no suscrito"
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr "Destinatarios"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/recorder/recorder.json
@@ -21131,7 +21329,7 @@ msgstr "Registro del Índice sugerido"
msgid "Records for following doctypes will be filtered"
msgstr "Se filtrarán los registros de los siguientes doctypes"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Obtención recursiva desde"
@@ -21162,19 +21360,19 @@ msgstr "Redirigir URI"
#. DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr "URI de redireccionamiento obligado a Auth Code"
+msgstr ""
#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Redirect URIs"
-msgstr "URIs de Redireccionamiento"
+msgstr ""
#. Label of the redirect_url (Small Text) field in DocType 'User'
#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
#: frappe/core/doctype/user/user.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr "Redireccionar URL"
+msgstr ""
#. Description of the 'Default App' (Select) field in DocType 'System Settings'
#. Description of the 'Default App' (Select) field in DocType 'User'
@@ -21186,30 +21384,30 @@ msgstr "Redirigir a la aplicación seleccionada tras el inicio de sesión"
#. 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 "Redirigir a esta URL tras una confirmación satisfactoria."
+msgstr ""
#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Redirects"
-msgstr "Redirección"
+msgstr ""
#: frappe/sessions.py:149
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:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Rehacer"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Rehacer última acción"
#. Label of the ref_doctype (Link) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Ref DocType"
-msgstr "Ref. DocType"
+msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
@@ -21255,14 +21453,14 @@ msgstr ""
#. Label of the reference_name (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr "DocName de referencia"
+msgstr ""
#. Label of the reference_doctype (Link) field in DocType 'Error Log'
#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/error_log/error_log.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr "DocType de referencia"
+msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
@@ -21274,7 +21472,7 @@ msgstr "'DocType' de referencia y nombre referencia son requeridos"
#: frappe/core/doctype/submission_queue/submission_queue.json
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr "Referencia DocName"
+msgstr ""
#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
@@ -21385,7 +21583,7 @@ msgstr ""
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/communication/communication.json
msgid "Reference Owner"
-msgstr "Propietario de Referencia"
+msgstr ""
#. Label of the reference_report (Data) field in DocType 'Report'
#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
@@ -21394,19 +21592,19 @@ msgstr "Propietario de Referencia"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr "Informe de referencia"
+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 "Tipo de referencia"
+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 "Nombre de referencia"
+msgstr ""
#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
@@ -21418,12 +21616,12 @@ msgstr "Referencia: {0} {1}"
msgid "Referrer"
msgstr "Referente"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21438,9 +21636,9 @@ msgstr "Refrescar todo"
#. 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 "Actualizar hoja de Google"
+msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21453,9 +21651,9 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr "Actualizar Token"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Refrescando"
@@ -21466,7 +21664,7 @@ msgstr "Refrescando"
msgid "Refreshing..."
msgstr "Refrescando..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Registrado pero discapacitados"
@@ -21485,18 +21683,18 @@ msgstr "Falta la URL del servidor de retransmisión"
#. Notification Settings'
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "Relay Settings"
-msgstr "Configuración del Relé"
+msgstr ""
#. Group in Package's connections
#: frappe/core/doctype/package/package.json
msgid "Release"
-msgstr "Versión"
+msgstr ""
#. Label of the release_notes (Markdown Editor) field in DocType 'Package
#. Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
-msgstr "Notas de Versión"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:48
#: frappe/core/doctype/communication/communication.js:159
@@ -21510,12 +21708,10 @@ msgstr "Volver a vincular la Comunicación"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Relinked"
-msgstr "Re-enlazado"
+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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Recargar"
@@ -21527,7 +21723,7 @@ msgstr "Recargar archivo"
msgid "Reload List"
msgstr "Recargar lista"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Recargar Informe"
@@ -21538,7 +21734,7 @@ msgstr "Recargar Informe"
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr "Recordar el último valor seleccionado"
+msgstr ""
#. Label of the remind_at (Datetime) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
@@ -21546,7 +21742,7 @@ msgstr "Recordar el último valor seleccionado"
msgid "Remind At"
msgstr "Recordar el"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Recuérdemelo"
@@ -21626,9 +21822,9 @@ msgid "Removed"
msgstr "Eliminado"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21656,29 +21852,29 @@ msgstr "Renderice las etiquetas a la izquierda y los valores a la derecha en est
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Repetir"
#. 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 "Repetir Encabezado y Pie de página"
+msgstr ""
#. Label of the repeat_on (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr "Repetir en"
+msgstr ""
#. Label of the repeat_till (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr "Repitir hasta"
+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 "Repita el Día"
+msgstr ""
#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -21688,12 +21884,12 @@ msgstr "Repetir los días"
#. 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 "Repita el último día del mes"
+msgstr ""
#. Label of the repeat_this_event (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr "Repetir este evento"
+msgstr ""
#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
@@ -21703,7 +21899,7 @@ msgstr "Repeticiones como \"aaa\" son fáciles de adivinar"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Repeticiones como \"abcabcabc\" son sólo un poco más difícil de adivinar que el \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Se repite {0}"
@@ -21766,6 +21962,7 @@ msgstr "Responder a todos"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21780,10 +21977,9 @@ msgstr "Responder a todos"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21803,7 +21999,7 @@ msgstr "Columna de informe"
#. Label of the report_description (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr "Descripción del reporte"
+msgstr ""
#: frappe/core/doctype/report/report.py:156
msgid "Report Document Error"
@@ -21818,7 +22014,7 @@ msgstr "Filtro de informe"
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr "Filtros de informe"
+msgstr ""
#. Label of the report_hide (Check) field in DocType 'DocField'
#. Label of the report_hide (Check) field in DocType 'Custom Field'
@@ -21827,13 +22023,13 @@ msgstr "Filtros de informe"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr "Ocultar reporte"
+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 "Informar información"
+msgstr ""
#. Name of a role
#: frappe/core/doctype/report/report.json
@@ -21852,7 +22048,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Nombre del reporte"
@@ -21871,7 +22067,7 @@ msgstr "Tipo de documento de referencia del informe"
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Reference Doctype"
-msgstr "Tipo de documento de referencia del informe"
+msgstr ""
#. Label of the report_type (Select) field in DocType 'Report'
#. Label of the report_type (Data) field in DocType 'Onboarding Step'
@@ -21880,20 +22076,16 @@ msgstr "Tipo de documento de referencia del informe"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr "Tipo de reporte"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:204
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Reportar error"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "El reporte no se puede definir para un solo tipo"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21904,7 +22096,7 @@ msgstr "El informe no tiene datos, modifique los filtros o cambie el Nombre del
msgid "Report has no numeric fields, please change the Report Name"
msgstr "El informe no tiene campos numéricos, cambie el nombre del informe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Informe iniciado, haga clic para ver el estado"
@@ -21916,7 +22108,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:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Informe actualizado con éxito"
@@ -21924,12 +22116,12 @@ 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:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
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."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Informe {0}"
@@ -21952,7 +22144,7 @@ msgstr "Informe:"
#. 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21960,7 +22152,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr "Informes y Maestros"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Informes ya en cola"
@@ -21984,7 +22176,7 @@ msgstr "Body de la solicitud"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
-msgstr "Datos de Solicitud"
+msgstr ""
#. Label of the request_description (Data) field in DocType 'Integration
#. Request'
@@ -22012,27 +22204,27 @@ msgstr "Límite de solicitud"
#. Label of the request_method (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Method"
-msgstr "Método de solicitud"
+msgstr ""
#. Label of the request_structure (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
-msgstr "Estructura de solicitud"
+msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "Tiempo de espera agotado"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Tiempo de espera de la solicitud"
#. Label of the request_url (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request URL"
-msgstr "URL de Solicitud"
+msgstr ""
#. Title of the request-to-delete-data Web Form
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
@@ -22048,19 +22240,19 @@ msgstr "Números solicitados"
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Require Trusted Certificate"
-msgstr "Requerir certificado de confianza"
+msgstr ""
#. Description of the 'LDAP search path for Groups' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com"
-msgstr "Requiere cualquier ruta fdn válida. es decir, ou=grupos,dc=ejemplo,dc=com"
+msgstr ""
#. Description of the 'LDAP search path for Users' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com"
-msgstr "Requiere cualquier ruta fdn válida. es decir ou=users,dc=example,dc=com"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:279
msgid "Res: {0}"
@@ -22115,7 +22307,7 @@ msgstr "Restablecer contraseña"
#. Label of the reset_password_key (Data) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Reset Password Key"
-msgstr "Restablecer contraseña/clave"
+msgstr ""
#. Label of the reset_password_link_expiry_duration (Duration) field in DocType
#. 'System Settings'
@@ -22127,7 +22319,7 @@ msgstr "Duración de la caducidad del enlace de restablecimiento de contraseña"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Template"
-msgstr "Plantilla para Restablecer Contraseña"
+msgstr ""
#: frappe/core/page/permission_manager/permission_manager.js:116
msgid "Reset Permissions for {0}?"
@@ -22141,7 +22333,7 @@ msgstr "Restablecer a valores por defecto"
msgid "Reset sorting"
msgstr "Restaurar orden"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Restaurar valores"
@@ -22187,7 +22379,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Response"
-msgstr "Respuesta"
+msgstr ""
#. Label of the response_headers (Code) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
@@ -22197,9 +22389,9 @@ msgstr ""
#. Label of the response_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
-msgstr "Tipo de respuesta"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Resto del día"
@@ -22208,7 +22400,7 @@ msgstr "Resto del día"
msgid "Restore"
msgstr "Restaurar"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Restaurar permisos originales"
@@ -22219,7 +22411,7 @@ msgstr "Restaurar a la configuración predeterminada?"
#. Label of the restored (Check) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Restored"
-msgstr "Restaurado"
+msgstr ""
#: frappe/core/doctype/deleted_document/deleted_document.py:74
msgid "Restoring Deleted Document"
@@ -22228,7 +22420,12 @@ msgstr "Restaurar documento eliminado"
#. Label of the restrict_ip (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr "Restringir IP"
+msgstr ""
+
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
@@ -22238,27 +22435,27 @@ msgstr "Restringir 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 "Restringir al dominio"
+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 "Restringir a Domiñio"
+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 "Restringir el usuario a esta dirección IP. Todas las direcciones IP se pueden agregar separadas con comas, también se aceptan direcciones IP parciales como ( 111.111.111 )"
+msgstr ""
#: frappe/public/js/frappe/list/list_view.js:199
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Restricciones"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Resultado"
@@ -22297,7 +22494,7 @@ msgstr "Revocar"
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Revoked"
-msgstr "Revocado"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.js:92
@@ -22305,9 +22502,15 @@ msgstr "Revocado"
msgid "Rich Text"
msgstr "Texto Enriquecido"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22323,17 +22526,17 @@ msgstr "derecho"
#. 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 "Abajo derecha"
+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 "Centro-derecha"
+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'
@@ -22342,8 +22545,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22358,8 +22559,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22381,7 +22581,7 @@ msgstr "El rol 'Usuario de escritorio' se otorgará a todos los usuarios del sis
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr "Nombre del rol"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Users Workspace
@@ -22403,7 +22603,7 @@ msgstr "Permisos de Rol"
msgid "Role Permissions Manager"
msgstr "Administrar permisos"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Administrar permisos"
@@ -22411,11 +22611,9 @@ msgstr "Administrar permisos"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Perfil de Rol"
@@ -22435,9 +22633,9 @@ msgstr "Replicación de roles"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr "Rol y nivel"
+msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Se ha establecido el rol según el tipo de usuario {0}"
@@ -22470,27 +22668,27 @@ msgstr "Roles"
#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Roles & Permissions"
-msgstr "Roles y Permisos"
+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 "Roles Asignados"
+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 Rol"
+msgstr ""
#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
#. and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr "Roles HTML"
+msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:7
msgid "Roles can be set for users from their User page."
@@ -22503,12 +22701,12 @@ msgstr "Root {0} no se puede eliminar"
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Round Robin"
-msgstr "Round Robin"
+msgstr ""
#. Label of the rounding_method (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Rounding Method"
-msgstr "Método de Redondeo"
+msgstr ""
#. Label of the route (Data) field in DocType 'DocType'
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
@@ -22549,27 +22747,27 @@ msgstr ""
#. Label of the route_redirects (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Route Redirects"
-msgstr "Redirecciones de ruta"
+msgstr ""
#. Description of the 'Home Page' (Data) field in DocType 'Role'
#: frappe/core/doctype/role/role.json
msgid "Route: Example \"/app\""
-msgstr "Ruta: Ejemplo \"/app\""
+msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Línea"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Fila # {0}: El usuario no administrador no puede establecer el rol {1} al doctype personalizado"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Fila #{0}:"
@@ -22590,13 +22788,13 @@ msgstr "Índice de Fila"
#. Label of the row_name (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Row Name"
-msgstr "Nombre de fila"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:509
msgid "Row Number"
msgstr "Número de fila"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Valores de la Fila Cambiaron"
@@ -22615,14 +22813,14 @@ msgstr "Fila {0}: No se permite activar 'Permitir al validar' para los campos es
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Filas Añadidas"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Filas Eliminadas"
@@ -22637,15 +22835,15 @@ msgstr ""
#. Label of the rule (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr "Regla"
+msgstr ""
#. Label of the section_break_3 (Section Break) field in DocType 'Document
#. Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr "Condiciones de la regla"
+msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
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."
@@ -22657,37 +22855,37 @@ 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 "Reglas que definen la transición del estado en el flujo de trabajo."
+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 "Reglas para transición entre estados y la función que permite cambiar entre ellos, etc."
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rules with higher priority number will be applied first."
-msgstr "Las reglas con un número de prioridad más alto se aplicarán primero."
+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 "Ejecutar trabajos solo diariamente si está inactivo durante (días)"
+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 "Ejecutar las tareas programadas solamente si están comprobadas"
+msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Minutes"
-msgstr ""
+msgstr "Tiempo de ejecución en minutos"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Seconds"
-msgstr ""
+msgstr "Tiempo de ejecución en segundos"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
@@ -22697,12 +22895,12 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/notification/notification.json
msgid "SMS"
-msgstr "SMS"
+msgstr ""
#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "SMS Gateway URL"
-msgstr "URL de pasarela SMS"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/sms_log/sms_log.json
@@ -22725,7 +22923,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr "SMS enviado correctamente"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "No se ha enviado el SMS. Póngase en contacto con el administrador."
@@ -22736,12 +22934,12 @@ msgstr "Se necesita un servidor SMTP"
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL"
-msgstr "SQL"
+msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "SQL Conditions. Example: status=\"Open\""
-msgstr "Condiciones SQL. Ejemplo: estado=\"Abierto\""
+msgstr ""
#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder/recorder.js:85
@@ -22752,21 +22950,21 @@ msgstr "Explicación SQL"
#. Label of the sql_output (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
-msgstr "Salida SQL"
+msgstr ""
#. Label of the sql_queries (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
-msgstr "Consultas SQL"
+msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "SSL/TLS Mode"
-msgstr "Modo SSL / TLS"
+msgstr ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
@@ -22793,7 +22991,7 @@ msgstr ""
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Salesforce"
-msgstr "Fuerza de Ventas"
+msgstr ""
#. Label of the salutation (Link) field in DocType 'Contact'
#. Name of a DocType
@@ -22810,7 +23008,7 @@ msgstr "El mismo Campo se ingresa más de una vez"
#. Label of the sample (HTML) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr "Muestra."
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -22831,22 +23029,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22859,7 +23058,7 @@ msgid "Save Anyway"
msgstr "Guardar de todos modos"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Guardar como"
@@ -22867,7 +23066,7 @@ msgstr "Guardar como"
msgid "Save Customizations"
msgstr "Guardar Personalización"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Guardar reporte"
@@ -22885,20 +23084,20 @@ msgid "Save the document."
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:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Guardado"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Filtros Guardados"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Guardando"
@@ -22907,11 +23106,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Guardando"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Guardando personalización..."
@@ -22956,12 +23155,12 @@ msgstr "Programado."
#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event'
#: frappe/core/doctype/scheduler_event/scheduler_event.json
msgid "Scheduled Against"
-msgstr ""
+msgstr "Programado contra"
#. 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 "Trabajo programado"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
@@ -23004,7 +23203,7 @@ msgstr "Programador"
#: frappe/core/doctype/scheduler_event/scheduler_event.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Scheduler Event"
-msgstr "Evento del programador"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.py:124
msgid "Scheduler Inactive"
@@ -23034,7 +23233,7 @@ msgstr "Programador: Inactivo"
#. Label of the scope (Data) field in DocType 'OAuth Scope'
#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "Scope"
-msgstr "Alcance"
+msgstr ""
#. Label of the sb_scope_section (Section Break) field in DocType 'Connected
#. App'
@@ -23049,7 +23248,7 @@ msgstr "Alcance"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Scopes"
-msgstr "Alcances"
+msgstr ""
#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -23069,7 +23268,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Script"
-msgstr "Script"
+msgstr ""
#. Name of a role
#: frappe/core/doctype/server_script/server_script.json
@@ -23079,12 +23278,12 @@ msgstr "Administrador de guiones"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Script Report"
-msgstr "Reporte de script"
+msgstr ""
#. Label of the script_type (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Script Type"
-msgstr "Tipo de script"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/website_script/website_script.json
@@ -23101,12 +23300,12 @@ msgstr "Scripting"
#. 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 "Scripting / Estilo"
+msgstr ""
#. Label of the scripts_section (Section Break) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Scripts"
-msgstr "Scripts"
+msgstr ""
#. Label of the search_section (Section Break) field in DocType 'System
#. Settings'
@@ -23115,7 +23314,7 @@ msgstr "Scripts"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23126,16 +23325,16 @@ msgstr ""
#. Label of the search_bar (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Search Bar"
-msgstr "Barra de Búsqueda"
+msgstr ""
#. Label of the search_fields (Data) field in DocType 'DocType'
#. Label of the search_fields (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr "Buscar campos"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Ayuda en la Búsqueda"
@@ -23143,7 +23342,7 @@ msgstr "Ayuda en la Búsqueda"
#. Search Settings'
#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Search Priorities"
-msgstr "Prioridades de búsqueda"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132
msgid "Search Results"
@@ -23153,7 +23352,7 @@ msgstr "Resultados de la búsqueda"
msgid "Search by filename or extension"
msgstr "Búsqueda por nombre de archivo o extensión"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "campo de búsqueda {0} no es válido"
@@ -23170,12 +23369,12 @@ msgstr "Buscar tipos de campos..."
msgid "Search for anything"
msgstr "Buscar por cualquier cosa"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "Buscar a {0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Buscar en un tipo de documento."
@@ -23206,7 +23405,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
msgid "Section"
-msgstr "Sección"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -23221,7 +23420,7 @@ msgstr "Sección"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Section Break"
-msgstr "Salto de sección."
+msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:421
msgid "Section Heading"
@@ -23245,17 +23444,17 @@ msgstr "La sección debe tener al menos una columna"
#. Label of the sb3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Security Settings"
-msgstr "Configuración de seguridad"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Ver todas las actividades"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Ver todos los reportes pasados."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Ver en el sitio web"
@@ -23284,12 +23483,12 @@ msgstr "Visto"
#. Label of the seen_by_section (Section Break) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr "Visto por"
+msgstr ""
#. Label of the seen_by (Table) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr "Visto por la tabla"
+msgstr ""
#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -23305,24 +23504,26 @@ msgstr "Visto por la tabla"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Seleccionar Todo"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23338,7 +23539,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Seleccione columnas"
@@ -23359,7 +23560,7 @@ msgstr "Seleccionar panel de control"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Select Date Range"
-msgstr "Seleccionar rango de fechas"
+msgstr ""
#. Label of the doc_type (Link) field in DocType 'Web Form'
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28
@@ -23371,7 +23572,7 @@ msgstr "Seleccione un 'DocType'"
#. Label of the reference_doctype (Link) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Select Doctype"
-msgstr "Seleccione Doctype"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50
#: frappe/workflow/page/workflow_builder/workflow_builder.js:50
@@ -23382,13 +23583,13 @@ msgstr "Seleccionar el tipo de documento."
msgid "Select Document Type or Role to start."
msgstr "Seleccione el tipo de documento o el rol para comenzar."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
msgstr "Seleccione Tipos de documentos para establecer qué Permisos de usuario se utilizan para limitar el acceso."
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Seleccionar campo"
@@ -23397,7 +23598,7 @@ msgstr "Seleccionar campo"
msgid "Select Field..."
msgstr "Seleccionar campo..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Seleccionar campos"
@@ -23406,19 +23607,19 @@ msgstr "Seleccionar campos"
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Seleccionar campos para insertar"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Seleccionar campos para actualizar"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Seleccionar filtros"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Seleccione Google Calendar con el que se debe sincronizar el evento."
@@ -23441,28 +23642,28 @@ msgstr "Seleccione el idioma"
#. Label of the list_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select List View"
-msgstr "Seleccionar Vista de Lista"
+msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Selección Obligatoria"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Seleccione Módulo"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Seleccione Impresora de red"
#. Label of the page_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Page"
-msgstr "Seleccionar Página"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Seleccionar formato de impresión"
@@ -23473,7 +23674,7 @@ msgstr "Seleccionar formato de impresión a editar"
#. Label of the report_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Report"
-msgstr "Seleccionar Reporte"
+msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:631
msgid "Select Table Columns for {0}"
@@ -23487,7 +23688,7 @@ msgstr "Selecciona la Zona Horaria"
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr "Seleccione el tipo de transacción"
+msgstr ""
#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
@@ -23496,13 +23697,7 @@ msgstr "Seleccionar Flujo de Trabajo"
#. Label of the workspace_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Workspace"
-msgstr "Seleccione el Área de Trabajo"
-
-#. 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 "Seleccionar espacios de trabajo"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
@@ -23520,11 +23715,11 @@ msgstr "Seleccione un campo para editar sus propiedades."
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Seleccione un campo de remitente válido para crear documentos desde el correo electrónico"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Seleccione un campo de asunto válido para crear documentos desde el correo electrónico"
@@ -23540,7 +23735,7 @@ msgstr "Seleccionar un formato existente para editar o comenzar un nuevo formato
#. 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 "Seleccione una imagen de ancho aprox 150px con fondo transparente para obtener mejores resultados."
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
@@ -23550,13 +23745,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:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
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:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Seleccionar múltiples elementos de la lista"
@@ -23576,7 +23771,7 @@ msgstr "Seleccionar registros para eliminar la asignación"
#. 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 "Seleccione la etiqueta con la cual desea insertar el nuevo campo."
+msgstr ""
#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
@@ -23590,7 +23785,7 @@ msgstr "Seleccione dos versiones para ver la diferencia."
msgid "Select {0}"
msgstr "Seleccionar {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "La auto aprobación no está permitida"
@@ -23613,17 +23808,22 @@ msgstr "Enviar lo más pronto posible este número de minutos antes o des
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Send After"
-msgstr "Enviar después"
+msgstr ""
#. Label of the event (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr "Enviar alerta en"
+msgstr ""
+
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr "Enviar Alerta de Correo Electrónico"
+msgstr ""
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -23634,7 +23834,7 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr "Enviar correo electrónico con adjuntos en formato PDF (recomendado)"
+msgstr ""
#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
#. Transition'
@@ -23645,23 +23845,23 @@ 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 "Envíame una copia de los correos electrónicos salientes"
+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 "Enviar notificación a"
+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 "Enviar notificaciones de documentos seguidos por mí"
+msgstr ""
#. Label of the thread_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr "Enviar notificaciones para hilos de correo electrónico"
+msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
@@ -23670,9 +23870,9 @@ 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 "Enviar Impresión como 'PDF'"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Enviar confirmación de lectura"
@@ -23680,22 +23880,22 @@ msgstr "Enviar confirmación de lectura"
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr "Enviar notificación del sistema"
+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 a todos los cesionarios"
+msgstr ""
#. 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"
+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 "Enviar una alarma si la fecha coincide con el valor de este campo"
+msgstr ""
#. Description of the 'Reference Datetime' (Select) field in DocType
#. 'Notification'
@@ -23706,18 +23906,18 @@ msgstr "Enviar una alarma si la fecha coincide con el valor de este campo"
#. 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 "Enviar alerta si este campo cambia de valor"
+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 "Enviar un recordatorio por correo electrónico por la mañana"
+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 "Enviar días antes o después de la fecha de referencia"
+msgstr ""
#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
#. Document State'
@@ -23729,26 +23929,26 @@ msgstr ""
#. 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr "Enviar solicitudes a esta dirección de correo electrónico"
+msgstr ""
#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:220
msgid "Send login link"
msgstr "Enviar enlace de inicio de sesión"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Enviarme una copia"
#. 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 "Enviar sólo si hay algún dato"
+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 "Enviar mensaje de correo electrónico para darse de baja"
+msgstr ""
#. Label of the sender (Data) field in DocType 'Event'
#. Label of the sender (Data) field in DocType 'ToDo'
@@ -23774,26 +23974,26 @@ msgstr ""
msgid "Sender Email Field"
msgstr "Campo Nombre del remitente"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
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'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sender Name"
-msgstr "Nombre del Remitente"
+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 "Campo Nombre del remitente"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Sendgrid"
-msgstr "SendGrid"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23817,7 +24017,7 @@ msgstr "Enviado"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Sent Folder Name"
-msgstr ""
+msgstr "Nombre de la carpeta de envío"
#. Label of the sent_on (Date) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
@@ -23827,7 +24027,7 @@ msgstr "Enviado el"
#. Label of the read_receipt (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr "Confirmación de lectura enviada"
+msgstr ""
#. Label of the sent_to (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
@@ -23837,17 +24037,17 @@ msgstr "Enviado a"
#. Label of the sent_or_received (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr "Enviado o Recibido"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sent/Received Email"
-msgstr "Correo electrónico Enviado / Recibido"
+msgstr ""
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Separator"
-msgstr "Separador"
+msgstr ""
#. Label of the sequence_id (Float) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -23858,7 +24058,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Series List for this Transaction"
-msgstr "Lista de secuencias para esta transacción"
+msgstr ""
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
@@ -23868,7 +24068,7 @@ msgstr "Serie actualizada para {}"
msgid "Series counter for {} updated to {} successfully"
msgstr "Contador de Series para {} actualizado a {} exitosamente"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Secuencia {0} ya utilizada en {1}"
@@ -23876,9 +24076,9 @@ msgstr "Secuencia {0} ya utilizada en {1}"
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
-msgstr "Acción del servidor"
+msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Error del Servidor"
@@ -23886,7 +24086,7 @@ msgstr "Error del Servidor"
#. 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 "Servidor IP"
+msgstr ""
#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
@@ -23905,11 +24105,15 @@ msgstr "Los scripts de servidor están desactivados. Por favor, habilite los scr
msgid "Server Scripts feature is not available on this site."
msgstr "La función Scripts de Servidor no está disponible en este sitio."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "El servidor estaba demasiado ocupado para procesar esta solicitud. Por favor, inténtelo de nuevo."
@@ -23937,16 +24141,14 @@ msgstr "Predeterminado de sesión"
msgid "Session Default Settings"
msgstr "Configuración predeterminada de sesión"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Valores predeterminados de sesión"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Valores predeterminados de sesión guardados"
@@ -23957,7 +24159,7 @@ msgstr "Sesión expirada"
#. 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 "Expiración de la sesión (tiempo de inactivad)"
+msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:125
msgid "Session Expiry must be in format {0}"
@@ -23985,16 +24187,16 @@ msgstr "Establecer"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr "Establecer banner desde imagen"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Establecer Gráfico"
#. 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 "Establezca opciones predeterminadas para todos los gráficos en este Tablero (Ej.: \"colores\": [\"#d1d8dd\", \"#ff5858\"])"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
#: frappe/desk/doctype/number_card/number_card.js:384
@@ -24013,7 +24215,7 @@ msgstr "Establecer filtros"
msgid "Set Filters for {0}"
msgstr "Establecer filtros para {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Establecer Nivel"
@@ -24030,7 +24232,7 @@ msgstr "Establezca las opciones de nombrado de la serie en sus transacciones."
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr "Establecer nueva contraseña"
+msgstr ""
#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
@@ -24054,10 +24256,10 @@ msgstr "Establecer propiedades"
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr "Establecer propiedad después de la Alerta"
+msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -24065,7 +24267,7 @@ 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 "Establecer Rol Para"
+msgstr ""
#: frappe/core/doctype/user/user.js:129
#: frappe/core/page/permission_manager/permission_manager.js:72
@@ -24075,14 +24277,14 @@ msgstr "Establecer permisos de usuario"
#. Label of the value (Small Text) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr "Valor seleccionado."
+msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Establecer todo privado"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Establecer todo público"
@@ -24099,7 +24301,7 @@ msgstr "Establecer como tema predeterminado"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Set by user"
-msgstr "Establecido por el usuario"
+msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "Set dynamic filter values in JavaScript for the required fields here."
@@ -24113,7 +24315,7 @@ msgstr "Establezca aquí valores de filtro dinámicos en JavaScript para los cam
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Ajuste de precisión no-estándar para los decimales o las monedas"
+msgstr ""
#. Description of the 'Precision' (Select) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -24123,7 +24325,7 @@ msgstr ""
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
-msgstr "Establecer solo una vez"
+msgstr ""
#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24151,24 +24353,7 @@ msgid "Set the filters here. For example:\n"
"\treqd: 1\n"
"}]\n"
""
-msgstr "Establezca aquí los filtros. Por ejemplo:\n"
-"\n"
-"[{\n"
-"\tfieldname: \"company\",\n"
-"\tlabel: __(\"Company\"),\n"
-"\tfieldtype: \"Link\",\n"
-"\toptions: \"Company\",\n"
-"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
-"\treqd: 1\n"
-"},\n"
-"{\n"
-"\tfieldname: \"account\",\n"
-"\tlabel: __(\"Account\"),\n"
-"\tfieldtype: \"Link\",\n"
-"\toptions: \"Account\",\n"
-"\treqd: 1\n"
-"}]\n"
-""
+msgstr ""
#. Description of the 'Method' (Data) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -24210,8 +24395,8 @@ msgstr "Configurando su Sistema"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24220,7 +24405,7 @@ msgstr ""
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr "Menú desplegable de configuración"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -24234,11 +24419,11 @@ msgstr "Configuración para la Página Acerca de Nosotros"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Configuración"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Configuración > Personalizar formulario"
@@ -24246,12 +24431,12 @@ msgstr "Configuración > Personalizar formulario"
msgid "Setup > User"
msgstr "Configuración > Usuario"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Configurar > Permisos del Usuario"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Configuración automática de correo electrónico"
@@ -24265,7 +24450,7 @@ msgstr "Configuración Completa."
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
-msgstr "Configurar Series para Transacciones"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
@@ -24280,13 +24465,14 @@ msgstr "Configuración fallida"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Compartir"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Compartir con"
@@ -24294,14 +24480,14 @@ msgstr "Compartir con"
msgid "Share this document with"
msgstr "Compartir este documento con"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Compartir {0} con"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "Compartido"
+msgstr ""
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
@@ -24319,7 +24505,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Tienda"
+msgstr ""
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
@@ -24352,18 +24538,12 @@ 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 "Mostrar Valores Absolutos"
+msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Mostrar Todo"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24382,7 +24562,7 @@ msgstr "Mostrar Calendario"
#. 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 "Mostrar Símbolos de Moneda en el lado derecho"
+msgstr ""
#. Label of the show_dashboard (Check) field in DocType 'DocField'
#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
@@ -24409,7 +24589,7 @@ msgstr "Mostrar error"
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Mostrar nombre de campo (clic para copiar en el portapapeles)"
@@ -24422,18 +24602,18 @@ msgstr "Mostrar primer tour del documento"
#. 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 "Mostrar recorrido de formulario"
+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 "Mostrar el Error Completo y Permitir Reportes de Errores al Desarrollador"
+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 "¿Mostrar formulario completo?"
+msgstr ""
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -24454,26 +24634,26 @@ msgstr "Mostrar Etiquetas"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
-msgstr "Mostrar selector de idioma"
+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 "Mostrar saltos de línea después de las Secciones"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Mostrar enlaces"
#. 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 "Mostrar solo registros fallidos"
+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 "Mostrar estadísticas de porcentaje"
+msgstr ""
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
@@ -24491,12 +24671,12 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr "Mostrar ventana emergente de vista previa"
+msgstr ""
#. Label of the show_processlist (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
-msgstr "Mostrar lista de procesos"
+msgstr ""
#. Label of the show_protected_resource_metadata (Check) field in DocType
#. 'OAuth Settings'
@@ -24518,12 +24698,12 @@ msgstr "Mostrar Reporte"
#. 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 "Mostrar títulos de las secciones"
+msgstr ""
#. Label of the show_sidebar (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr "Mostrar barra lateral"
+msgstr ""
#. Label of the show_social_login_key_as_authorization_server (Check) field in
#. DocType 'OAuth Settings'
@@ -24539,7 +24719,7 @@ msgstr "Mostrar etiquetas"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr "Mostrar título"
+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
@@ -24547,7 +24727,7 @@ msgstr "Mostrar título"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
-msgstr "Mostrar Título en Campos de Enlace"
+msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1523
msgid "Show Totals"
@@ -24579,9 +24759,9 @@ msgstr "Mostrar Fines de Semana"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
-msgstr "Mostrar enlace de eliminación de cuenta en la página Mi cuenta"
+msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Mostrar todas las versiones"
@@ -24592,7 +24772,7 @@ msgstr "Mostrar toda la actividad"
#. 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 "Mostrar como cc"
+msgstr ""
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24609,12 +24789,12 @@ msgstr "Mostrar pie de página al iniciar sesión"
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr "Mostrar formulario completo en lugar de un modal de entrada rápida"
+msgstr ""
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Mostrar en la sección Módulo"
+msgstr ""
#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
#. Login Key'
@@ -24625,7 +24805,7 @@ 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 "Mostrar en Filtro"
+msgstr ""
#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
@@ -24651,7 +24831,7 @@ msgstr "Mostrar en línea de tiempo"
#. Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr "Mostrar diferencia porcentual de acuerdo con este intervalo de tiempo"
+msgstr ""
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24661,7 +24841,7 @@ msgstr "Mostrar barra lateral"
#. 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 "Mostrar título en la ventana del navegador como \"Prefijo - título\""
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
msgid "Show {0} List"
@@ -24683,7 +24863,7 @@ msgstr "Mostrando solo las primeras {0} filas de {1}"
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/sidebar_item_group/sidebar_item_group.json
msgid "Sidebar"
-msgstr "Barra Lateral"
+msgstr ""
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace Sidebar Item'
@@ -24700,17 +24880,17 @@ msgstr "Enlace del grupo de elementos de la barra lateral"
#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr "Elementos de barra lateral"
+msgstr ""
#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr "Configuración de la barra lateral"
+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 "Barra lateral y Comentarios"
+msgstr ""
#. Label of the sign_out (Button) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -24723,7 +24903,7 @@ msgstr "Cerrar sesión"
msgid "Sign Up and Confirmation"
msgstr "Registro y confirmación"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "El registro está desactivado"
@@ -24750,7 +24930,7 @@ msgstr "Inscripciones"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr "Firma"
+msgstr ""
#: frappe/www/login.html:168
msgid "Signup Disabled"
@@ -24781,7 +24961,7 @@ msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr "Sesiones simultáneas"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
@@ -24823,7 +25003,7 @@ msgstr "Omitir"
#: 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"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
@@ -24846,7 +25026,7 @@ msgstr "Saltar columna sin título"
msgid "Skipping column {0}"
msgstr "Saltar columna {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "Omitiendo sincronización de fixtures para doctype {0} del archivo {1}"
@@ -24857,17 +25037,17 @@ msgstr ""
#. Label of the skype (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr "Skype"
+msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr "Slack"
+msgstr ""
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr "Canal de Slack"
+msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
@@ -24884,17 +25064,17 @@ msgstr "URL del Webhook de Slack"
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr "Presentación"
+msgstr ""
#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr "Presentación de productos"
+msgstr ""
#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr "Nombre de presentación"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/website_slideshow/website_slideshow.json
@@ -24921,19 +25101,19 @@ msgstr "Slug"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Small Text"
-msgstr "Texto pequeño"
+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 "Valor de Fracción de Moneda mas pequeño"
+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 "Unidad más pequeña fracción de circulación (moneda). Por ejemplo, 1 centavo por USD y debe ser ingresado como 0.01"
+msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Snippet and more variables: {0}"
@@ -24948,7 +25128,7 @@ msgstr "Configuración de enlaces sociales"
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Type"
-msgstr "Tipo de enlace social"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
@@ -24961,12 +25141,12 @@ msgstr "Clave de Acceso Social"
#. Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr "Proveedor de Inicio de Sesión Social"
+msgstr ""
#. Label of the social_logins (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr "Inicios Sociales"
+msgstr ""
#. Label of the socketio_ping_check (Select) field in DocType 'System Health
#. Report'
@@ -24983,7 +25163,7 @@ msgstr "Modo de transporte SocketIO"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Soft-Bounced"
-msgstr "Rebotes livianos"
+msgstr ""
#. Label of the software_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -25007,7 +25187,7 @@ msgstr "Algunas columnas pueden quedar cortadas al imprimir en PDF. Intente mant
#. 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 "Algunos buzones requieren un nombre de carpeta de enviados diferente, por ejemplo \"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."
@@ -25021,15 +25201,15 @@ msgstr "Algo salió mal"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Algo salió mal durante la generación de tokens. Haga clic en {0} para generar uno nuevo."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Algo salió mal."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Lamentablemente, no se puede encontrar lo que estaba buscando."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Lamentablemente, usted no está autorizado para ver esta página."
@@ -25044,7 +25224,7 @@ msgstr "Orden descendente"
#. Label of the sort_field (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr "Ordenar por campo"
+msgstr ""
#. Label of the sort_options (Check) field in DocType 'DocField'
#. Label of the sort_options (Check) field in DocType 'Custom Field'
@@ -25058,15 +25238,15 @@ msgstr "Opciones de clasificación"
#. Label of the sort_order (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr "Ordenar por"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "Campo de orden {0} debe ser un nombre de campo válido"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25098,7 +25278,7 @@ msgstr "Espaciador"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr "Correo no deseado"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -25115,7 +25295,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr "Caracteres especiales no están permitidos"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Caracteres especiales excepto '-', '#', '.', '/', '{{' and '}}' no permitidos en la serie de nombres {0}"
@@ -25133,7 +25313,7 @@ msgstr "Especifique los dominios u orígenes que tienen permiso para insertar es
#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
-msgstr "Imagen de bienvenida"
+msgstr ""
#: frappe/desk/reportview.py:458
#: frappe/public/js/frappe/web_form/web_form_list.js:176
@@ -25154,6 +25334,7 @@ msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25161,6 +25342,7 @@ msgstr "Stack Trace"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25204,7 +25386,7 @@ msgstr "Los informes estándar no se pueden editar"
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr "Menú Lateral Estándar"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:40
msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
@@ -25228,8 +25410,8 @@ msgstr "El tipo de usuario estándar {0} no puede borrarse."
#: 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:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25247,7 +25429,7 @@ msgstr ""
#. Label of the start_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr "Campo de Fecha de Inicio"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:111
msgid "Start Import"
@@ -25277,17 +25459,17 @@ msgstr "Crear un nuevo formato"
#. Option for the 'SSL/TLS Mode' (Select) field in DocType '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'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr "Empezado"
+msgstr ""
#. Label of the started_at (Datetime) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Started At"
-msgstr "Empezó a las"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:286
msgid "Starting Frappe ..."
@@ -25296,7 +25478,7 @@ msgstr "Comenzando Frappé ..."
#. Label of the starts_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr "Iniciar el"
+msgstr ""
#. Label of the state (Data) field in DocType 'Token Cache'
#. Label of the state (Link) field in DocType 'Workflow Document State'
@@ -25329,17 +25511,17 @@ msgstr "Provincia"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr "Estados"
+msgstr ""
#. Label of the parameters (Table) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr "Parámetros estáticos"
+msgstr ""
#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Statistics"
-msgstr "Estadísticas"
+msgstr ""
#. Label of the stats_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -25351,7 +25533,7 @@ msgstr "Estadísticas"
#. 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 "Intervalo de tiempo de estadísticas"
+msgstr ""
#. Label of the status (Select) field in DocType 'Auto Repeat'
#. Label of the status (Select) field in DocType 'Contact'
@@ -25401,7 +25583,7 @@ msgstr "Intervalo de tiempo de estadísticas"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25424,14 +25606,14 @@ msgstr "Estado: {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 "Paso"
+msgstr ""
#. Label of the steps (Table) field in DocType 'Form Tour'
#. Label of the steps (Table) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr "Pasos"
+msgstr ""
#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
@@ -25439,7 +25621,7 @@ msgstr "Pasos para verificar su inicio de sesión"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25476,7 +25658,7 @@ msgstr ""
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr "Almacena el JSON de las últimas versiones conocidas de las aplicaciones instaladas. Se utiliza para mostrar notas de la versión."
+msgstr ""
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
@@ -25503,38 +25685,38 @@ msgstr "Fuerte"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr "Estilo"
+msgstr ""
#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr "Ajustes de Estilo"
+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 "El estilo representa el color del botón: Éxito - Verde, Peligro - Rojo, Inverso - Negro, Primario - Azul oscuro, Información - Azul claro, Advertencia - Naranja"
+msgstr ""
#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr "Hoja de estilo"
+msgstr ""
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr "Sub-moneda. Por ejemplo \"céntimo\""
+msgstr ""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr "Sub-dominio proporcionado por erpnext.com"
+msgstr ""
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr "Sub-dominio"
+msgstr ""
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -25553,7 +25735,7 @@ msgstr "Sub-dominio"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25565,9 +25747,9 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr "Campo de Asunto"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "El tipo de campo de asunto debe ser Datos, Texto, Texto largo, Texto pequeño, Editor de texto"
@@ -25588,14 +25770,14 @@ msgstr "Cola de envío"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25625,7 +25807,7 @@ msgstr ""
msgid "Submit After Import"
msgstr "Validar después de importar"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Enviar un Problema"
@@ -25649,11 +25831,11 @@ msgstr "Validar al crear"
msgid "Submit this document to complete this step."
msgstr "Valide este documento para completar este paso."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Valide este documento para confirmar"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "¿Validar {0} documentos?"
@@ -25679,19 +25861,19 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Validando"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Envío de {0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Subsidiary"
-msgstr "Subsidiaria"
+msgstr ""
#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Subtitle"
-msgstr "Subtitular"
+msgstr ""
#. Option for the 'Icon Style' (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
@@ -25714,12 +25896,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25734,17 +25916,17 @@ msgstr "Acción de Éxito"
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr "Mensaje exitoso"
+msgstr ""
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Success URI"
-msgstr "URI de Éxito"
+msgstr ""
#. Label of the success_url (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr "URL exitoso"
+msgstr ""
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -25759,9 +25941,9 @@ msgstr "Título de \"éxito\""
#. 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 "Recuento de trabajos exitosos"
+msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Transacciones exitosas"
@@ -25786,7 +25968,7 @@ msgstr "Importado con éxito {0} de {1} registros."
msgid "Successfully reset onboarding status for all users."
msgstr "Se restableció correctamente el estado del tutorial para todos los usuarios."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25811,7 +25993,7 @@ msgstr "Sugerir optimizaciones"
msgid "Suggested Indexes"
msgstr "Índices sugeridos"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Nombre de usuario sugerido: {0}"
@@ -25852,7 +26034,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr "Suspender Envío"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Cambiar Cámara"
@@ -25865,21 +26047,21 @@ msgstr "Cambiar Tema"
msgid "Switch To Desk"
msgstr "Pasar a Escritorio"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Cambiando cámara"
#. Label of the symbol (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr "Símbolo."
+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 "Sincronización"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
@@ -25892,7 +26074,7 @@ msgstr "Sincronizar contactos"
#. 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 "Sincronizar eventos de Google como públicos"
#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
@@ -25905,12 +26087,12 @@ msgstr "El token de sincronización no era válido y se ha restablecido, Vuelva
#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr "Sincronizar con Google Calendar"
+msgstr ""
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr "Sincronizar con los contactos de Google"
+msgstr ""
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
@@ -25934,11 +26116,9 @@ msgid "Syntax Error"
msgstr "Error de sintaxis"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
-msgstr "Sistema"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/system_console/system_console.json
@@ -25946,7 +26126,7 @@ msgstr "Sistema"
msgid "System Console"
msgstr "Consola del sistema"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "Los campos generados del sistema no pueden ser renombrados"
@@ -26073,6 +26253,7 @@ msgstr "Registros del sistema"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26087,7 +26268,6 @@ msgstr "Registros del sistema"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26151,23 +26331,28 @@ msgstr "Privilegios del Administrador del Sistema requeridos."
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr "Notificación del sistema"
+msgstr ""
#. Label of the system_page (Check) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr "Página del Sistema"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+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 "Los administradores del sistema están permitidos de forma predeterminada"
+msgstr ""
#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
@@ -26179,6 +26364,12 @@ msgstr "T"
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26186,7 +26377,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Tab Break"
-msgstr "Salto de Pestaña"
+msgstr ""
#: frappe/public/js/form_builder/components/Tabs.vue:135
msgid "Tab Label"
@@ -26212,25 +26403,25 @@ msgstr "Tabla"
#. 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 "Salto de Tabla"
+msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Campo de Tabla"
#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Table Fieldname"
-msgstr "Nombre del Campo de Tabla"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Falta Nombre del Campo de Tabla"
#. Label of the table_html (HTML) field in DocType 'Version'
#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr "Tabla HTML"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -26239,9 +26430,9 @@ msgstr "Tabla HTML"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr "Tabla Multi-selección"
+msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26249,18 +26440,18 @@ msgstr ""
msgid "Table Trimmed"
msgstr "Tabla recortada"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Tabla actualiza"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "La tabla {0} no puede estar vacía"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Tabloid"
-msgstr "Tabloide"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/tag/tag.json
@@ -26273,17 +26464,17 @@ msgid "Tag Link"
msgstr "Enlace de etiqueta"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Etiquetas"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Tomar Foto"
@@ -26317,7 +26508,7 @@ msgstr "Miembros del Equipo"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Heading"
-msgstr "Líderes de equipo"
+msgstr ""
#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
#. Settings'
@@ -26329,7 +26520,7 @@ msgstr "Subtítulo de miembros del equipo"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Telemetry"
-msgstr "Telemetría"
+msgstr ""
#. Label of the template (Link) field in DocType 'Auto Repeat'
#. Label of the template (Code) field in DocType 'Address Template'
@@ -26351,23 +26542,23 @@ msgstr "Error de plantilla"
#. Template'
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Template File"
-msgstr "Archivo de plantilla"
+msgstr ""
#. Label of the template_options (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr "Opciones de plantilla"
+msgstr ""
#. Label of the template_warnings (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr "Advertencias de plantilla"
+msgstr ""
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
msgstr "Plantillas"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Desactivado temporalmente"
@@ -26401,22 +26592,22 @@ msgstr "Carpeta_Prueba"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr "Texto"
+msgstr ""
#. Label of the text_align (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr "Alinear texto"
+msgstr ""
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr "Color de texto"
+msgstr ""
#. Label of the text_content (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr "Contenido del texto"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -26427,7 +26618,7 @@ msgstr "Contenido del texto"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr "Editor de texto"
+msgstr ""
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
@@ -26465,7 +26656,7 @@ msgstr "Gracias"
msgid "The Auto Repeat for this document has been disabled."
msgstr "La repetición automática para este documento ha sido deshabilitada."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "El formato CSV es sensible a mayúsculas y minúsculas"
@@ -26488,7 +26679,7 @@ msgstr "La URL del archivo que ha introducido es incorrecta"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112
msgid "The Next Scheduled Date cannot be later than the End Date."
-msgstr ""
+msgstr "La Próxima Fecha Programada no puede ser posterior a la Fecha de Finalización."
#: 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"
@@ -26521,7 +26712,7 @@ msgstr "La clave API del navegador obtenida de la Consola de Google Cloud en "
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr "Los cambios han sido revertidos."
@@ -26537,7 +26728,7 @@ msgstr "El comentario no puede estar vacío"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "El contenido de este correo electrónico es estrictamente confidencial. Por favor, no reenvíe este correo electrónico a nadie."
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "El recuento mostrado es un recuento estimado. Pulse aquí para ver el recuento exacto."
@@ -26563,11 +26754,15 @@ msgstr "El documento ha sido asignado a {0}"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "El tipo de documento seleccionado es una tabla hija, por lo que se requiere el tipo de documento padre."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr ""
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr ""
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr ""
@@ -26618,7 +26813,7 @@ msgstr "La meta imagen es una imagen única que representa el contenido de la p
#. 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 "El nombre que aparecerá en Google Calendar"
+msgstr ""
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26634,6 +26829,10 @@ msgstr "El número de segundos hasta que expire la solicitud"
msgid "The password of your account has expired."
msgstr "La contraseña de su cuenta ha caducado."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+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 "Se ha iniciado el proceso de eliminación de {0} datos asociados con {1}."
@@ -26651,15 +26850,15 @@ msgstr "El número de proyecto obtenido de Google Cloud Console en New {{ doc.doctype }} #{{ doc.name }}Nuevo {{ doc.doctype }} #{{ doc.name }}Warning: Customizations from other modules will be excluded.
" +msgstr "" + #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Export the data without any header notes and column descriptions" -msgstr "دادهها را بدون هیچ یادداشت سربرگ و شرح ستون برونبُرد کنید" +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 +#: frappe/public/js/frappe/data_import/data_exporter.js:248 msgid "Export {0} records" msgstr "برونبُرد {0} رکورد" @@ -9677,7 +9787,7 @@ 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' @@ -9691,7 +9801,7 @@ msgstr "عبارت" #: 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' @@ -9706,7 +9816,7 @@ 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:440 +#: frappe/public/js/frappe/views/workspace/workspace.js:488 msgid "External Link" msgstr "لینک خارجی" @@ -9714,13 +9824,13 @@ msgstr "لینک خارجی" #. 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' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Facebook" -msgstr "فیس بوک" +msgstr "" #. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System #. Health Report' @@ -9747,7 +9857,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' @@ -9755,12 +9865,17 @@ msgstr "تعداد کار ناموفق" msgid "Failed Jobs" msgstr "" +#. Label of a number card in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Failed Login Attempts" +msgstr "" + #. Label of the failed_logins (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Logins (Last 30 days)" msgstr "ورودهای ناموفق (30 روز گذشته)" -#: frappe/model/workflow.py:362 +#: frappe/model/workflow.py:383 msgid "Failed Transactions" msgstr "تراکنشهای ناموفق" @@ -9823,7 +9938,7 @@ msgstr "پیشنمایش سری ایجاد نشد" msgid "Failed to get method for command {0} with {1}" msgstr "Failed to get method for command {0} with {1}" -#: frappe/api/v2.py:46 +#: frappe/api/v2.py:61 msgid "Failed to get method {0} with {1}" msgstr "روش {0} با {1} دریافت نشد" @@ -9835,7 +9950,7 @@ msgstr "اطلاعات سایت دریافت نشد" msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "درونبُرد doctype مجازی {} انجام نشد، آیا فایل کنترل کننده وجود دارد؟" -#: frappe/utils/image.py:75 +#: frappe/utils/image.py:70 msgid "Failed to optimize image: {0}" msgstr "تصویر بهینه نشد: {0}" @@ -9851,7 +9966,7 @@ msgstr "" msgid "Failed to request login to Frappe Cloud" msgstr "" -#: frappe/email/doctype/email_queue/email_queue.py:300 +#: frappe/email/doctype/email_queue/email_queue.py:301 msgid "Failed to send email with subject:" msgstr "ایمیل با موضوع ارسال نشد:" @@ -9893,7 +10008,7 @@ msgstr "FavIcon" msgid "Fax" msgstr "فکس" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:51 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:72 msgid "Feedback" msgstr "بازخورد" @@ -9910,7 +10025,7 @@ 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" @@ -9953,8 +10068,8 @@ msgstr "واکشی فیلدها از {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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1909 +#: frappe/public/js/frappe/views/reports/query_report.js:237 +#: frappe/public/js/frappe/views/reports/query_report.js:1984 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9964,7 +10079,7 @@ msgstr "فیلد" msgid "Field \"route\" is mandatory for Web Views" msgstr "فیلد \"مسیر\" برای بازدیدهای وب اجباری است" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "فیلد \"عنوان\" در صورت تنظیم \"فیلد جستجوی وب سایت\" اجباری است." @@ -9972,16 +10087,16 @@ msgstr "فیلد \"عنوان\" در صورت تنظیم \"فیلد جستجوی msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "" -#: frappe/desk/search.py:255 +#: frappe/desk/search.py:262 msgid "Field{0} not found in {1}"
msgstr "فیلد {0} در {1} یافت نشد"
#. 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:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "فیلد جا افتاده است"
@@ -10018,7 +10133,7 @@ msgstr "فیلد در پرسمان مجاز نیست"
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
-msgstr "فیلدی که وضعیت گردش کار تراکنش را نشان میدهد (اگر فیلد موجود نباشد، یک فیلد سفارشی مخفی جدید ایجاد میشود)"
+msgstr ""
#. Label of the track_field (Select) field in DocType 'Milestone Tracker'
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
@@ -10029,7 +10144,7 @@ msgstr "فیلد برای ردیابی"
msgid "Field type cannot be changed for {0}"
msgstr "نوع فیلد برای {0} قابل تغییر نیست"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "فیلد {0} در {1} وجود ندارد"
@@ -10037,11 +10152,11 @@ msgstr "فیلد {0} در {1} وجود ندارد"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "فیلد {0} به نوع سند موجود {1} اشاره دارد."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "فیلد {0} باید یک فیلد مجازی باشد تا از نوع سند مجازی پشتیبانی کند."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "فیلد {0} یافت نشد."
@@ -10063,7 +10178,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "نام فیلد"
@@ -10072,7 +10187,7 @@ msgstr "نام فیلد"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "نام فیلد \"{0}\" در تضاد با یک {1} از نام {2} در {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "برای فعال کردن نامگذاری خودکار، نام فیلد به نام {0} باید وجود داشته باشد"
@@ -10080,7 +10195,7 @@ msgstr "برای فعال کردن نامگذاری خودکار، نام ف
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "نام فیلد به 64 کاراکتر محدود شده است ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "نام فیلد برای فیلد سفارشی تنظیم نشده است"
@@ -10096,7 +10211,7 @@ msgstr "نام فیلد {0} چندین بار ظاهر میشود"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "نام فیلد {0} نمیتواند نویسه های خاصی مانند {1} داشته باشد"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "نام فیلد {0} با متا شی در تضاد است"
@@ -10134,7 +10249,7 @@ 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 ""
#: frappe/core/doctype/file/file.py:441
msgid "Fields `file_name` or `file_url` must be set for File"
@@ -10144,7 +10259,7 @@ msgstr "فیلدهای \"file_name\" یا \"file_url\" باید برای File ت
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "وقتی as_list فعال است، فیلدها باید یک لیست یا تاپل باشند"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10166,9 +10281,9 @@ 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 ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "نوع فیلد را نمیتوان از {0} به {1} تغییر داد"
@@ -10195,7 +10310,7 @@ msgstr "فایل \"{0}\" یافت نشد"
#. Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "اطلاعات فایل"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
@@ -10204,12 +10319,12 @@ msgstr "مدیر فایل"
#. Label of the file_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "نام فایل"
+msgstr ""
#. Label of the file_size (Int) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "حجم فایل"
+msgstr ""
#. Label of the section_break_ryki (Section Break) field in DocType 'System
#. Health Report'
@@ -10230,7 +10345,7 @@ msgstr "نوع فایل"
#. Label of the file_url (Code) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "آدرس فایل"
+msgstr ""
#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
@@ -10244,12 +10359,12 @@ msgstr "نام فایل نمیتواند دارای {0} باشد"
msgid "File not attached"
msgstr "فایل پیوست نشده است"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "اندازه فایل از حداکثر اندازه مجاز {0} مگابایت بیشتر است"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "فایل خیلی بزرگ است"
@@ -10276,17 +10391,22 @@ msgstr "فایل ها"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "فیلتر"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+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 "فیلتر کردن دادهها"
+msgstr ""
#. Label of the filter_list (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -10296,24 +10416,24 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "نام فیلتر"
#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "مقادیر فیلتر"
+msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10325,17 +10445,21 @@ msgstr "فیلتر..."
#. Step'
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Filtered By"
-msgstr "فیلتر شده توسط"
+msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:33
msgid "Filtered Records"
msgstr "رکوردهای فیلتر شده"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "فیلتر شده توسط \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10359,19 +10483,19 @@ msgstr "فیلتر شده توسط \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
#. Label of the filters_config (Code) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Configuration"
-msgstr "پیکربندی فیلترها"
+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_editor (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -10383,16 +10507,12 @@ msgstr "ویرایشگر فیلترها"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "فیلترهای JSON"
+msgstr ""
#. Label of the filters_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "بخش فیلترها"
-
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "فیلترهای اعمال شده برای {0}"
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
@@ -10401,7 +10521,7 @@ msgstr "فیلترها ذخیره شدند"
#. Description of the 'Script' (Code) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Filters will be accessible via filters. result = [result], or for old style data = [columns], [result]"
-msgstr "فیلترها از طریق فیلترها قابل دسترسی خواهند بود. result = [نتیجه] یا برای سبک قدیمی data = [ستونها]، [نتیجه] ارسال کنید"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter_list.js:133
msgid "Filters {0}"
@@ -10411,26 +10531,26 @@ msgstr "فیلترها {0}"
msgid "Filters:"
msgstr "فیلترها:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "پیدا کردن \"{0}\" در ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "پیدا کردن {0} در {1}"
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "تمام شده"
+msgstr ""
#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Finished At"
-msgstr "به پایان رسید در"
+msgstr ""
#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
#. Label of the first_day_of_the_week (Select) field in DocType 'System
@@ -10454,7 +10574,7 @@ 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/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
@@ -10486,12 +10606,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'
@@ -10504,13 +10624,13 @@ 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:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "فولد نمیتواند در انتهای فرم باشد"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "فولد باید قبل از Section Break باشد"
@@ -10537,14 +10657,14 @@ 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:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "دنبال کردن"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "به دنبال"
@@ -10552,7 +10672,7 @@ msgstr "به دنبال"
msgid "Following Report Filters have missing values:"
msgstr "فیلترهای گزارش زیر دارای مقادیر گمشده هستند:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10560,7 +10680,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr "فیلدهای زیر وجود ندارد:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "فیلدهای زیر دارای مقادیر نامعتبر هستند:"
@@ -10568,7 +10688,7 @@ msgstr "فیلدهای زیر دارای مقادیر نامعتبر هستند:
msgid "Following fields have missing values"
msgstr "فیلدهای زیر دارای مقادیر جا افتاده هستند"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "فیلدهای زیر مقادیر گمشده دارند:"
@@ -10580,7 +10700,7 @@ 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'
@@ -10590,13 +10710,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'
@@ -10609,22 +10729,22 @@ 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
msgid "Footer \"Powered By\""
-msgstr "پاورقی \"قدرت گرفته از\""
+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'
@@ -10637,7 +10757,7 @@ msgstr "جزئیات پاورقی"
msgid "Footer HTML"
msgstr "پاورقی HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "تنظیم HTML پاورقی از پیوست {0}"
@@ -10666,15 +10786,15 @@ 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:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "ممکن است پاورقی قابل مشاهده نباشد زیرا گزینه {0} غیرفعال است"
@@ -10682,7 +10802,7 @@ msgstr "ممکن است پاورقی قابل مشاهده نباشد زیرا
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer will display correctly only in PDF"
-msgstr "پاورقی فقط در PDF به درستی نمایش داده میشود"
+msgstr ""
#. Label of the for_doctype (Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10692,7 +10812,7 @@ msgstr "برای DocType"
#. Description of the 'Row Name' (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "For DocType Link / DocType Action"
-msgstr "برای DocType Link / DocType Action"
+msgstr ""
#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10707,15 +10827,6 @@ msgstr "برای نوع سند"
msgid "For Example: {} Open"
msgstr "به عنوان مثال: {} باز"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10739,32 +10850,28 @@ msgstr "برای مقدار"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "برای مقایسه، از >5، <10 یا =324 استفاده کنید. برای محدوده ها، از 5:10 (برای مقادیر بین 5 و 10) استفاده کنید."
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr "به عنوان مثال، اگر INV004 را لغو و اصلاح کنید، به یک سند جدید INV004-1 تبدیل میشود. این به شما کمک میکند تا هر اصلاحیه را پیگیری کنید."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "به عنوان مثال:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "برای مثال: اگر میخواهید شناسه سند را اضافه کنید، از {0} استفاده کنید."
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "به عنوان مثال: {} باز"
+msgstr ""
#. Description of the 'Client script' (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "برای راهنمایی به API و مثالهای Client Script مراجعه کنید"
+msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
@@ -10774,13 +10881,13 @@ msgstr "برای اطلاعات بیشتر، {0}."
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com"
-msgstr "برای چندین آدرس، آدرس را در خطوط مختلف وارد کنید. به عنوان مثال test@test.com ⏎ test1@test.com"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:197
msgid "For updating, you can update only selective columns."
msgstr "برای بهروزرسانی، میتوانید فقط ستونهای انتخابی را به روز کنید."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "برای {0} در سطح {1} در {2} در ردیف {3}"
@@ -10790,7 +10897,7 @@ msgstr "برای {0} در سطح {1} در {2} در ردیف {3}"
#: 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'
@@ -10799,7 +10906,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 ""
#: frappe/core/doctype/rq_job/rq_job.js:13
msgid "Force Stop job"
@@ -10809,13 +10916,13 @@ msgstr "کار توقف اجباری"
#. 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 "اجبار به استفاده از حالت Web Capture برای آپلودها"
+msgstr ""
#: frappe/www/login.html:37
msgid "Forgot Password?"
@@ -10830,7 +10937,8 @@ msgstr "گذرواژه را فراموش کرده اید؟"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "فرم"
@@ -10845,7 +10953,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'
@@ -10875,7 +10983,7 @@ msgstr "مرحله تور فرم"
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr "فرم URL-Encoded"
+msgstr ""
#. Label of the format (Data) field in DocType 'Workspace Shortcut'
#. Label of the format (Select) field in DocType 'Auto Email Report'
@@ -10888,7 +10996,7 @@ 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 ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -10908,17 +11016,17 @@ 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'
@@ -11009,7 +11117,7 @@ msgstr "جمعه"
msgid "From"
msgstr "از"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "از"
@@ -11028,9 +11136,9 @@ 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:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "از نوع سند"
@@ -11056,7 +11164,7 @@ 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'
@@ -11071,7 +11179,7 @@ msgstr "پر شده"
msgid "Full Name"
msgstr "نام و نام خانوادگی"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "صفحه کامل"
@@ -11079,12 +11187,12 @@ 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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "تابع"
@@ -11093,11 +11201,11 @@ msgstr "تابع"
msgid "Function Based On"
msgstr "عملکرد بر اساس"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "تابع {0} در لیست سفید قرار ندارد."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11122,12 +11230,12 @@ msgstr "جی میل"
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "GNU Affero General Public License"
-msgstr "مجوز عمومی عمومی GNU Affero"
+msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "GNU General Public License"
-msgstr "مجوز عمومی عمومی گنو"
+msgstr ""
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -11160,13 +11268,13 @@ msgstr "عمومی"
#. Label of the generate_keys (Button) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Generate Keys"
-msgstr "ایجاد کلیدها"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "ایجاد گزارش جدید"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "ایجاد گذرواژه تصادفی"
@@ -11176,8 +11284,8 @@ msgstr "ایجاد گذرواژه تصادفی"
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "ایجاد URL پیگیری"
@@ -11193,7 +11301,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Geolocation"
-msgstr "موقعیت جغرافیایی"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
@@ -11248,12 +11356,12 @@ 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 ""
#. Label of the git_branch (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Git Branch"
-msgstr "شاخه گیت"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -11286,9 +11394,9 @@ 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:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "برو"
@@ -11304,7 +11412,7 @@ msgstr "به لیست تنظیمات اعلان بروید"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "به صفحه بروید"
+msgstr ""
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
@@ -11329,7 +11437,7 @@ msgstr "به سند بروید"
#. Description of the 'Success URL' (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Go to this URL after completing the form"
-msgstr "پس از تکمیل فرم به این آدرس بروید"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.js:54
#: frappe/custom/doctype/client_script/client_script.js:12
@@ -11348,7 +11456,7 @@ msgstr "به فهرست {0} بروید"
msgid "Go to {0} Page"
msgstr "به صفحه {0} بروید"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "هدف"
@@ -11361,13 +11469,13 @@ 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 "شناسه گوگل آنالیتیکس"
+msgstr ""
#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics anonymise IP"
-msgstr "IP ناشناس گوگل آنالیتیکس"
+msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Event'
#. Label of the google_calendar (Link) field in DocType 'Event'
@@ -11411,14 +11519,14 @@ msgstr "Google Calendar - رویداد {0} در Google Calendar بهروزر
#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr "شناسه رویداد تقویم Google"
+msgstr ""
#. Label of the google_calendar_id (Data) field in DocType 'Event'
#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
#: frappe/desk/doctype/event/event.json
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr "شناسه تقویم گوگل"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
@@ -11446,7 +11554,7 @@ msgstr "Google Contacts - مخاطب در Google Contacts {0} بهروزرس
#. Label of the google_contacts_id (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr "شناسه مخاطبین Google"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
@@ -11456,13 +11564,13 @@ msgstr "درایو گوگل"
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker"
-msgstr "انتخابگر گوگل درایو"
+msgstr ""
#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
-msgstr "انتخابگر Google Drive فعال شد"
+msgstr ""
#. Label of the font (Data) field in DocType 'Print Format'
#. Label of the google_font (Data) field in DocType 'Website Theme'
@@ -11470,12 +11578,12 @@ msgstr "انتخابگر Google Drive فعال شد"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr "فونت گوگل"
+msgstr ""
#. Label of the google_meet_link (Small Text) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
-msgstr "پیوند Google Meet"
+msgstr ""
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
@@ -11501,7 +11609,7 @@ msgstr "URL کاربرگنگار Google باید با \"gid={number}\" ختم
#. 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
@@ -11563,25 +11671,25 @@ 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 "برای ایجاد نمودار داشبورد فیلد Group By لازم است"
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
-msgstr "کلاس شیء گروهی"
+msgstr ""
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -11654,6 +11762,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "ویرایشگر HTML"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11662,7 +11774,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 ""
#: frappe/website/doctype/web_page/web_page.js:92
msgid "HTML with jinja support"
@@ -11671,7 +11783,7 @@ 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'
@@ -11694,7 +11806,7 @@ 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
@@ -11704,7 +11816,7 @@ 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
@@ -11720,7 +11832,7 @@ 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"
@@ -11735,14 +11847,14 @@ 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 ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "تنظیم HTML سربرگ از پیوست {0}"
@@ -11754,7 +11866,7 @@ msgstr "آیکون سربرگ"
#. 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
@@ -11765,7 +11877,7 @@ msgstr "سربرگ و Breadcrumbs"
#. 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."
@@ -11776,9 +11888,9 @@ 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
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11799,7 +11911,7 @@ 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"
@@ -11815,7 +11927,7 @@ msgstr "سلام،"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11848,7 +11960,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 ""
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -11858,19 +11970,19 @@ 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:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "در اینجا URL پیگیری شما است"
@@ -11906,8 +12018,8 @@ msgstr "پنهان"
msgid "Hidden Fields"
msgstr "فیلدهای پنهان"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include: /project/<name>"
-msgstr "پارامترهای مسیر را به متغیرهای فرم نگاشت. مثال /project/<name>"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:923
msgid "Mapping column {0} to field {1}"
@@ -15564,22 +15728,22 @@ 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
msgid "Margin Left"
-msgstr "حاشیه سمت چپ"
+msgstr ""
#. Label of the margin_right (Float) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Right"
-msgstr "حاشیه سمت راست"
+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'
@@ -15587,7 +15751,7 @@ msgstr "حاشیه بالا"
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "همه را به عنوان خوانده شده علامت بزن"
@@ -15622,12 +15786,12 @@ 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 "ویرایشگر Markdown"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Marked As Spam"
-msgstr "به عنوان هرزنامه علامت گذاری شده است"
+msgstr ""
#. Name of a role
#: frappe/website/doctype/utm_campaign/utm_campaign.json
@@ -15639,9 +15803,12 @@ msgstr "مدیر بازاریابی"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "ماسک"
@@ -15652,14 +15819,14 @@ 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 ""
#. 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
@@ -15669,7 +15836,7 @@ msgstr "حداکثر حجم فایل (مگابایت)"
#. Label of the max_height (Data) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Max Height"
-msgstr "حداکثر ارتفاع"
+msgstr ""
#. Label of the max_length (Int) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -15695,7 +15862,7 @@ msgstr "حداکثر اندازه پیوست"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max auto email report per user"
-msgstr "حداکثر گزارش ایمیل خودکار برای هر کاربر"
+msgstr ""
#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System
#. Settings'
@@ -15703,14 +15870,14 @@ msgstr "حداکثر گزارش ایمیل خودکار برای هر کاربر
msgid "Max signups allowed per hour"
msgstr "حداکثر تعداد مجاز ثبت نام در هر ساعت"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "حداکثر عرض برای نوع ارز 100 پیکسل در ردیف {0} است"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "حداکثر"
+msgstr ""
#: frappe/core/doctype/file/file.py:342
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
@@ -15724,20 +15891,27 @@ msgstr "حداکثر محدودیت پیوست {0} رسیده است."
msgid "Maximum {0} rows allowed"
msgstr "حداکثر {0} ردیف مجاز است"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "من"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "معنی ارسال، لغو، اصلاح"
+msgid "Meaning of Different Permission Types"
+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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15773,20 +15947,20 @@ msgstr "میزان استفاده از حافظه برحسب مگابایت"
#. 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:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "منو"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "ادغام با موجود"
@@ -15820,13 +15994,13 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "پیام"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "پیام"
@@ -15857,7 +16031,7 @@ msgstr "پیام فرستاده شد"
msgid "Message Type"
msgstr "نوع پیام"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "پیام بریده شد"
@@ -15872,12 +16046,12 @@ 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
@@ -15887,7 +16061,7 @@ 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 ""
#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
@@ -15902,7 +16076,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 ""
#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
@@ -15952,9 +16126,9 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "روش"
+msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -15965,7 +16139,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'
@@ -16043,7 +16217,7 @@ msgstr ""
msgid "Missing DocType"
msgstr "DocType وجود ندارد"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "فیلد جا افتاده"
@@ -16063,7 +16237,7 @@ msgstr "مجوز از دست رفته"
msgid "Missing Value"
msgstr "مقدار از دست رفته"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16091,7 +16265,7 @@ 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 ""
#. Label of the module (Data) field in DocType 'Block Module'
#. Label of the module (Link) field in DocType 'DocType'
@@ -16128,7 +16302,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16159,7 +16333,7 @@ msgstr "تعریف ماژول"
#. Label of the module_html (HTML) field in DocType 'Module Profile'
#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module HTML"
-msgstr "ماژول HTML"
+msgstr ""
#. Label of the module_name (Data) field in DocType 'Module Def'
#: frappe/core/doctype/module_def/module_def.json
@@ -16175,16 +16349,15 @@ msgstr "آشناسازی ماژول"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "نمایه ماژول"
#. Label of the module_profile_name (Data) field in DocType 'Module Profile'
#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module Profile Name"
-msgstr "نام نمایه ماژول"
+msgstr ""
#: frappe/desk/doctype/module_onboarding/module_onboarding.py:73
msgid "Module onboarding progress reset"
@@ -16194,7 +16367,7 @@ msgstr "بازنشانی پیشرفت آشناسازی ماژول"
msgid "Module to Export"
msgstr "ماژول برای برونبُرد"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "ماژول {} یافت نشد"
@@ -16208,7 +16381,7 @@ msgstr "ماژول ها"
#. Label of the modules_html (HTML) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr "ماژول های HTML"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -16234,7 +16407,7 @@ 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"
@@ -16265,7 +16438,7 @@ msgstr "ماهانه"
#: 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
@@ -16307,9 +16480,9 @@ msgstr "مقالات بیشتر در {0}"
#. 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
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "پرکاربردترین"
@@ -16324,7 +16497,7 @@ msgstr "به احتمال زیاد گذرواژه شما خیلی طولانی
msgid "Move"
msgstr "حرکت"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "حرکت به"
@@ -16336,19 +16509,19 @@ msgstr "انتقال به سطل زباله"
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "مکان نما را به ردیف بالا منتقل کنید"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "مکان نما را به ردیف زیر منتقل کنید"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "مکان نما را به ستون بعدی منتقل کنید"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "مکان نما را به ستون قبلی منتقل کنید"
@@ -16360,20 +16533,20 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "به شماره ردیف بروید"
#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Move to next step when clicked inside highlighted area."
-msgstr "با کلیک بر روی قسمت هایلایت شده به مرحله بعدی بروید."
+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 "موزیلا از :has() پشتیبانی نمیکند، بنابراین میتوانید انتخابگر والد را به عنوان راهحل عبور دهید"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:43
msgid "Mr"
@@ -16401,7 +16574,7 @@ msgstr "باید یک URL کاربرگنگار در دسترس عموم با
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))"
-msgstr "باید در \"()\" محصور شود و شامل \"{0}\" باشد که یک مکان نگهدارنده برای نام کاربر/ورود است. یعنی (&(objectclass=user)(uid={0}))"
+msgstr ""
#. Description of the 'Image Field' (Data) field in DocType 'DocType'
#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
@@ -16421,7 +16594,7 @@ msgstr "برای اجرا باید یک پرسمان مشخص کنید"
#. 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"
@@ -16451,7 +16624,7 @@ msgstr "توجه: اگر حالتها یا انتقالها را به جد
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings"
-msgstr "توجه: این جعبه به دلیل استهلاک است. لطفاً LDAP را مجدداً تنظیم کنید تا با تنظیمات جدیدتر کار کند"
+msgstr ""
#. Label of the fieldname (Data) field in DocType 'DocField'
#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
@@ -16478,7 +16651,7 @@ msgstr "نام (نام سند)"
msgid "Name already taken, please set a new name"
msgstr "نام قبلاً گرفته شده است، لطفاً یک نام جدید تنظیم کنید"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "نام نمیتواند شامل نویسه های خاصی مانند {0} باشد"
@@ -16490,7 +16663,7 @@ msgstr "نام نوع سند (DocType) که میخواهید این فیلد
msgid "Name of the new Print Format"
msgstr "نام قالب چاپ جدید"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "نام {0} نمیتواند {1} باشد"
@@ -16529,7 +16702,7 @@ msgstr "قانون نامگذاری"
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "سری نامگذاری الزامی است"
@@ -16539,7 +16712,7 @@ 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
@@ -16553,57 +16726,57 @@ msgstr "آیتم نوار ناوبری"
msgid "Navbar Settings"
msgstr "تنظیمات نوار ناوبری"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "پیمایش لیست به پایین"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "پیمایش لیست به بالا"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "به محتوای اصلی بروید"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+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/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "به کمک نیاز دارید؟"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "برای ویرایش محیط کار خصوصی سایر کاربران به نقش مدیر محیط کار نیاز دارید"
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "مقدار منفی"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16625,6 +16798,7 @@ msgstr "هرگز"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16641,7 +16815,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "آدرس جدید"
@@ -16657,8 +16831,8 @@ msgstr "مخاطب جدید"
msgid "New Custom Block"
msgstr "بلوک سفارشی جدید"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "قالب چاپ سفارشی جدید"
@@ -16707,7 +16881,7 @@ msgstr "پیام جدید از صفحه تماس وب سایت"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "نام جدید"
@@ -16728,8 +16902,8 @@ msgstr "آشناسازی جدید"
msgid "New Password"
msgstr "گذرواژه جدید"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "نام قالب چاپ جدید"
@@ -16756,8 +16930,8 @@ msgstr "میانبر جدید"
msgid "New Users (Last 30 days)"
msgstr "کاربران جدید (30 روز گذشته)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "مقدار جدید"
@@ -16765,7 +16939,7 @@ msgstr "مقدار جدید"
msgid "New Workflow Name"
msgstr "نام گردش کار جدید"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "محیط کار جدید"
@@ -16800,7 +16974,7 @@ msgstr "بهروزرسانی های جدید در دسترس هستند"
#. 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'
@@ -16808,32 +16982,32 @@ msgstr "کاربران جدید باید به صورت دستی توسط مدی
msgid "New value to be set"
msgstr "مقدار جدیدی که باید تنظیم شود"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "{0} جدید"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "{0} جدید ایجاد شد"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr "{0} {1} جدید به داشبورد {2} اضافه شد"
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "{0} {1} جدید ایجاد شد"
@@ -16845,7 +17019,7 @@ msgstr "{0} جدید: {1}"
msgid "New {} releases for the following apps are available"
msgstr "نسخههای جدید {} برای برنامههای زیر در دسترس هستند"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "کاربر تازه ایجاد شده {0} هیچ نقشی فعال ندارد."
@@ -16866,7 +17040,7 @@ msgstr "مدیر خبرنامه"
msgid "Next"
msgstr "بعد"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "بعدی"
@@ -16891,26 +17065,30 @@ msgstr "۷ روز آینده"
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Next Action Email Template"
-msgstr "اقدام بعدی الگوی ایمیل"
+msgstr ""
+
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+msgstr ""
#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Next Actions HTML"
-msgstr "اقدامات بعدی HTML"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
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 "اجرای بعدی"
+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:695
msgid "Next Month"
@@ -16932,19 +17110,19 @@ 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:691
msgid "Next Week"
@@ -16961,24 +17139,28 @@ 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'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "خیر"
@@ -17004,7 +17186,7 @@ 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:309
@@ -17048,7 +17230,7 @@ msgstr "هیچ فیلتری تنظیم نشده است"
msgid "No Google Calendar Event to sync."
msgstr "رویداد تقویم Google برای همگامسازی وجود ندارد."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "بدون تصاویر"
@@ -17067,23 +17249,23 @@ msgstr "هیچ کاربر LDAP برای ایمیل پیدا نشد: {0}"
msgid "No Label"
msgstr "بدون برچسب"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr "بدون سربرگ"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "نامی برای {0} مشخص نشده است"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "بدون اعلان جدید"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "هیچ مجوزی مشخص نشده است"
@@ -17103,11 +17285,11 @@ msgstr "هیچ نمودار مجاز در این داشبورد وجود ندا
msgid "No Preview"
msgstr "بدون پیشنمایش"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "پیشنمایش موجود نیست"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "هیچ چاپگری در دسترس نیست."
@@ -17115,7 +17297,7 @@ msgstr "هیچ چاپگری در دسترس نیست."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "هیچ RQ Worker متصل نیست. نیمکت را دوباره راهاندازی کنید."
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "هیچ نتیجه ای"
@@ -17123,7 +17305,7 @@ msgstr "هیچ نتیجه ای"
msgid "No Results found"
msgstr "نتیجه ای پیدا نشد"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "هیچ نقشی مشخص نشده است"
@@ -17139,7 +17321,7 @@ msgstr "بدون پیشنهاد"
msgid "No Tags"
msgstr "بدون تگ"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "رویدادهای آینده وجود ندارد"
@@ -17159,7 +17341,7 @@ msgstr "هیچ پیشنهادی برای بهینهسازی خودکار در
msgid "No changes in document"
msgstr "بدون تغییر در سند"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "هیچ تغییری ایجاد نشد"
@@ -17223,7 +17405,7 @@ msgstr "هیچ فیلدی یافت نشد که بتوان از آن به عنو
msgid "No file attached"
msgstr "هیچ فایلی پیوست نشده است"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "هیچ فیلتری پیدا نشد"
@@ -17271,11 +17453,11 @@ msgstr "تعداد ردیفها (حداکثر ۵۰۰)"
msgid "No of Sent SMS"
msgstr "شماره پیامک ارسالی"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "بدون مجوز برای {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "بدون مجوز برای \"{0}\" {1}"
@@ -17284,7 +17466,7 @@ msgstr "بدون مجوز برای \"{0}\" {1}"
msgid "No permission to read {0}"
msgstr "بدون اجازه خواندن {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "بدون مجوز برای {0} {1} {2}"
@@ -17300,7 +17482,7 @@ msgstr "هیچ رکوردی در {0} وجود ندارد"
msgid "No records tagged."
msgstr "هیچ رکوردی تگ نشده است."
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "هیچ رکوردی برونبُرد نخواهد شد"
@@ -17308,7 +17490,7 @@ msgstr "هیچ رکوردی برونبُرد نخواهد شد"
msgid "No rows"
msgstr "بدون ردیف"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr "هیچ ردیفی انتخاب نشده است"
@@ -17320,11 +17502,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr "هیچ الگوی در مسیر یافت نشد: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr "هیچ کاربری نقش {0} را ندارد"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "هیچ مقداری برای نمایش وجود ندارد"
@@ -17336,7 +17519,7 @@ msgstr "نه {0}"
msgid "No {0} found"
msgstr "هیچ {0} یافت نشد"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "هیچ {0} با فیلترهای منطبق پیدا نشد. برای دیدن همه {0} فیلترها را پاک کنید."
@@ -17345,7 +17528,7 @@ msgid "No {0} mail"
msgstr "نامه {0} وجود ندارد"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "شماره"
@@ -17381,19 +17564,19 @@ 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:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "مجاز نیست"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "مجاز نیست: کاربر غیرفعال"
@@ -17435,7 +17618,7 @@ msgstr "به هیچ رکوردی مرتبط نیست"
msgid "Not Nullable"
msgstr "غیرقابل تهی"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17444,7 +17627,7 @@ msgstr "غیرقابل تهی"
msgid "Not Permitted"
msgstr "غیر مجاز"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "خواندن {0} مجاز نیست"
@@ -17453,8 +17636,8 @@ msgstr "خواندن {0} مجاز نیست"
msgid "Not Published"
msgstr "منتشر نشده"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17474,7 +17657,7 @@ msgstr "دیده نشد"
msgid "Not Sent"
msgstr "فرستاده نشد"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "تنظیم نشده"
@@ -17488,15 +17671,15 @@ msgstr "تنظیم نشده"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "یک مقدار جدا شده با کاما معتبر نیست (فایل CSV)"
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "تصویر کاربر معتبری نیست."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "یک اقدام گردش کار معتبر نیست"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "کاربر معتبری نیست"
@@ -17504,7 +17687,7 @@ msgstr "کاربر معتبری نیست"
msgid "Not active"
msgstr "غیر فعال"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "برای {0} مجاز نیست: {1}"
@@ -17524,11 +17707,11 @@ msgstr "چاپ اسناد لغو شده مجاز نیست"
msgid "Not allowed to print draft documents"
msgstr "چاپ اسناد پیشنویس مجاز نیست"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "از طریق بررسی مجوز کنترلر مجاز نیست"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "پیدا نشد"
@@ -17541,11 +17724,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "در حالت توسعه دهنده نیست! در site_config.json تنظیم کنید یا DocType را «Custom» بسازید."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "غیر مجاز"
@@ -17573,7 +17756,7 @@ msgstr "یادداشت دیده شده توسط"
msgid "Note:"
msgstr "یادداشت:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "توجه: تغییر نام صفحه URL قبلی را به این صفحه تبدیل میکند."
@@ -17585,7 +17768,7 @@ msgstr "توجه: مناطق زمانی و غیره دارای علائم معک
#. 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'
@@ -17605,7 +17788,7 @@ msgstr "توجه: درخواست شما برای حذف حساب ظرف {0} سا
msgid "Notes:"
msgstr "یادداشت:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "چیز جدیدی نیست"
@@ -17617,8 +17800,8 @@ msgstr "چیزی برای انجام مجدد باقی نمانده است"
msgid "Nothing left to undo"
msgstr "چیزی برای لغو باقی نمانده است"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17629,11 +17812,13 @@ msgid "Nothing to update"
msgstr "چیزی برای بهروزرسانی نیست"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "اعلان"
@@ -17649,7 +17834,7 @@ msgstr "گیرنده اعلان"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "تنظیمات اعلان"
@@ -17658,11 +17843,6 @@ msgstr "تنظیمات اعلان"
msgid "Notification Subscribed Document"
msgstr "سند ثبت شده اعلان"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr "خلاصه اعلان"
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "اعلان ارسال شد به"
@@ -17680,13 +17860,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "اعلانها"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "اعلانها غیرفعال است"
@@ -17694,22 +17876,22 @@ 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
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
@@ -17724,7 +17906,7 @@ 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:28
#: frappe/public/js/frappe/form/controls/time.js:37
@@ -17734,7 +17916,7 @@ 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
@@ -17751,7 +17933,7 @@ msgstr "لینک کارت شماره"
#. 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'
@@ -17767,7 +17949,7 @@ 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
@@ -17796,20 +17978,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 ""
#. 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 ""
#. 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
@@ -17846,7 +18028,7 @@ msgstr "مشتری OAuth"
#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "OAuth Client ID"
-msgstr "شناسه مشتری OAuth"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -17922,7 +18104,7 @@ msgstr "OTP Secret بازنشانی شده است. ثبت نام مجدد در
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr "جایگذار OTP باید به صورت {{ otp }} تعریف شود "
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "راهاندازی OTP با استفاده از برنامه OTP تکمیل نشد. لطفا با ادمین تماس بگیرید."
@@ -17955,14 +18137,14 @@ msgstr "اسناد رسمی"
#. Label of the offset_x (Int) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset X"
-msgstr "افست X"
+msgstr ""
#. Label of the offset_y (Int) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset Y"
-msgstr "افست Y"
+msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17970,7 +18152,7 @@ msgstr ""
msgid "Old Password"
msgstr "گذرواژه قدیمی"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "نام فیلدهای قدیمی و جدید یکسان است."
@@ -17978,7 +18160,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'
@@ -17995,7 +18177,7 @@ 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
@@ -18025,7 +18207,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 ""
#: frappe/public/js/frappe/ui/filters/filter.js:66
#: frappe/public/js/frappe/ui/filters/filter.js:72
@@ -18037,7 +18219,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "در {0}، {1} نوشت:"
@@ -18045,7 +18227,7 @@ msgstr "در {0}، {1} نوشت:"
#: 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"
@@ -18059,7 +18241,7 @@ msgstr "مجوز آشناسازی"
#. Label of the onboarding_status (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Onboarding Status"
-msgstr "وضعیت آشناسازی"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -18081,7 +18263,7 @@ msgstr "تکمیل آشناسازی"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "پس از ارسال، اسناد قابل ارسال قابل تغییر نیستند. آنها فقط میتوانند لغو و اصلاح شوند."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "هنگامی که این مورد را تنظیم کردید، کاربران فقط میتوانند به اسناد (مثلاً پست وبلاگ) در جایی که پیوند وجود دارد (مثلاً بلاگر) دسترسی داشته باشند."
@@ -18097,11 +18279,11 @@ msgstr "رمز ثبت یکبار مصرف (OTP) از {}"
msgid "One of"
msgstr "یکی از"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "فقط 200 درج در یک درخواست مجاز است"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "فقط ادمین میتواند صف ایمیل را حذف کند"
@@ -18120,9 +18302,9 @@ 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:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "فقط گزینههای مجاز برای فیلد داده عبارتند از:"
@@ -18145,11 +18327,11 @@ msgstr "فقط Workspace Manager میتواند محیط کارهای عمو
msgid "Only allow System Managers to upload public files"
msgstr "فقط به مدیران سیستم اجازه دهید فایلهای عمومی را آپلود کنند"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "فقط مجاز به صدور سفارشیسازی در حالت برنامه نویس است"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "فقط پیشنویس اسناد را میتوان دور انداخت"
@@ -18192,7 +18374,7 @@ msgstr "فقط گیرنده میتواند این کار را انجام ده
msgid "Only {0} emailed reports are allowed per user."
msgstr "فقط {0} گزارش ایمیل شده برای هر کاربر مجاز است."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "اوه! مشکلی پیش آمد."
@@ -18215,8 +18397,8 @@ msgctxt "Access"
msgid "Open"
msgstr "باز"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18236,7 +18418,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"
@@ -18246,12 +18428,16 @@ msgstr "Help را باز کنید"
#. Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr "سند مرجع را باز کنید"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
msgstr "باز کردن تنظیمات"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "برنامههای کاربردی منبع باز برای وب"
@@ -18259,14 +18445,14 @@ msgstr "برنامههای کاربردی منبع باز برای وب"
#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Open URL in a New Tab"
-msgstr "URL را در یک برگه جدید باز کنید"
+msgstr ""
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr "برای ایجاد سریع یک رکورد جدید، یک کادر محاورهای با فیلدهای اجباری باز کنید. حداقل باید یک فیلد اجباری برای نمایش در کادر محاورهای وجود داشته باشد."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "یک ماژول یا ابزار را باز کنید"
@@ -18278,11 +18464,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr "باز کردن در یک تب جدید"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr "باز کردن در تب جدید"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "باز کردن آیتم لیست"
@@ -18297,23 +18483,23 @@ msgstr "برنامه احراز هویت خود را در تلفن همراه خ
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "باز کردن {0}"
#. Label of the openid_configuration (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "OpenID Configuration"
-msgstr "پیکربندی OpenID"
+msgstr ""
#: frappe/integrations/doctype/connected_app/connected_app.js:15
msgid "OpenID Configuration fetched successfully!"
@@ -18327,7 +18513,7 @@ 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
@@ -18338,7 +18524,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr "اپراتور باید یکی از {0} باشد"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18364,19 +18550,19 @@ msgstr "گزینه 2"
msgid "Option 3"
msgstr "گزینه 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "گزینه {0} برای فیلد {1} یک جدول فرزند نیست"
#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Optional: Always send to these ids. Each Email Address on a new row"
-msgstr "اختیاری: همیشه به این شناسه ها ارسال شود. هر آدرس ایمیل در یک ردیف جدید"
+msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr "اختیاری: اگر این عبارت درست باشد، هشدار ارسال خواهد شد"
+msgstr ""
#. Label of the options (Small Text) field in DocType 'DocField'
#. Label of the options (Data) field in DocType 'Report Column'
@@ -18398,16 +18584,16 @@ msgstr "اختیاری: اگر این عبارت درست باشد، هشدار
msgid "Options"
msgstr "گزینهها"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "نوع فیلد «پیوند پویا» گزینهها باید به فیلد پیوند دیگری با گزینههای «DocType» اشاره کند."
#. Label of the options_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr "راهنما گزینهها"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "گزینههای فیلد رتبه بندی میتواند از 3 تا 10 باشد"
@@ -18415,7 +18601,7 @@ msgstr "گزینههای فیلد رتبه بندی میتواند از 3
msgid "Options for select. Each option on a new line."
msgstr "گزینههایی برای انتخاب هر گزینه در یک خط جدید."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "گزینههای {0} باید قبل از تنظیم مقدار پیشفرض تنظیم شوند."
@@ -18423,7 +18609,7 @@ msgstr "گزینههای {0} باید قبل از تنظیم مقدار پی
msgid "Options is required for field {0} of type {1}"
msgstr "گزینهها برای فیلد {0} از نوع {1} لازم است"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "گزینهها برای فیلد پیوند {0} تنظیم نشده است"
@@ -18437,9 +18623,9 @@ 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:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18447,20 +18633,24 @@ msgstr ""
#. 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:21
msgid "Orientation"
msgstr "جهت"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "مقدار اصلی"
@@ -18535,18 +18725,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "تولید PDF در حال انجام است"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "سازنده PDF"
@@ -18570,7 +18762,7 @@ msgstr "عرض صفحه PDF (به میلیمتر)"
msgid "PDF Settings"
msgstr "تنظیمات PDF"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "تولید PDF ناموفق بود"
@@ -18578,11 +18770,11 @@ msgstr "تولید PDF ناموفق بود"
msgid "PDF generation failed because of broken image links"
msgstr "تولید PDF به دلیل پیوندهای تصویر شکسته انجام نشد"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "تولید PDF ممکن است آنطور که انتظار می رود کار نکند."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "چاپ PDF از طریق \"Raw Print\" پشتیبانی نمیشود."
@@ -18626,7 +18818,7 @@ 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
@@ -18683,12 +18875,12 @@ 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 "صفحه HTML"
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
@@ -18741,7 +18933,7 @@ msgstr "عرض صفحه (به میلیمتر)"
msgid "Page has expired!"
msgstr "صفحه منقضی شده است!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "ارتفاع و عرض صفحه نمیتواند صفر باشد"
@@ -18757,7 +18949,7 @@ msgstr "صفحه برای نمایش در وب سایت\n"
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "صفحه {0} از {1}"
@@ -18768,21 +18960,21 @@ msgid "Parameter"
msgstr "پارامتر"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "والد"
#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Parent DocType"
-msgstr "والد DocType"
+msgstr ""
#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
#. Label of the parent_document_type (Link) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
-msgstr "نوع سند والد"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
@@ -18792,20 +18984,20 @@ msgstr "برای ایجاد کارت شماره، نوع سند والد مور
#. 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:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "زمین والد (درخت)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "فیلد والد باید یک نام فیلد معتبر باشد"
@@ -18817,16 +19009,16 @@ 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:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
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"
@@ -18844,18 +19036,18 @@ msgstr "والد نام سندی است که دادهها به آن اضاف
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "فیلد والد در {0} مشخص نشده است: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "نوع والد، والد و فیلد والد برای درج سابقه فرزند مورد نیاز هستند"
#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step'
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Partial"
-msgstr "جزئی"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -18865,9 +19057,9 @@ 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'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "شرکت کنندگان"
@@ -18881,7 +19073,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
@@ -18904,11 +19096,11 @@ msgstr "منفعل"
msgid "Password"
msgstr "گذرواژه"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "گذرواژه ایمیل ارسال شد"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "بازنشانی گذرواژه"
@@ -18917,7 +19109,7 @@ msgstr "بازنشانی گذرواژه"
msgid "Password Reset Link Generation Limit"
msgstr "محدودیت ایجاد لینک برای بازنشانی گذرواژه"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "گذرواژه را نمیتوان فیلتر کرد"
@@ -18928,7 +19120,7 @@ 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 "گذرواژه Base DN"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
@@ -18946,11 +19138,11 @@ msgstr "گذرواژه در حساب ایمیل جا افتاده است"
msgid "Password not found for {0} {1} {2}"
msgstr "گذرواژه برای {0} {1} {2} یافت نشد"
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr "الزامات گذرواژه رعایت نشده است"
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18962,7 +19154,7 @@ msgstr "تنظیم گذرواژه"
msgid "Password size exceeded the maximum allowed size"
msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است."
@@ -18983,7 +19175,7 @@ msgstr "چسباندن"
#: 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
@@ -19011,20 +19203,20 @@ 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 ""
#. 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/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "مسیر {0} در ماژول {1} نیست"
@@ -19035,7 +19227,7 @@ 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
@@ -19089,7 +19281,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "درصد"
+msgstr ""
#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
#. Report'
@@ -19109,15 +19301,15 @@ msgstr "سطح مجوز"
msgid "Permanent"
msgstr "دائمی"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "{0} برای همیشه لغو شود؟"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "برای همیشه {0} ارسال شود؟"
@@ -19125,7 +19317,11 @@ msgstr "برای همیشه {0} ارسال شود؟"
msgid "Permanently delete {0}?"
msgstr "{0} برای همیشه حذف شود؟"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "خطای مجوز"
@@ -19135,12 +19331,12 @@ msgid "Permission Inspector"
msgstr "بازرس مجوز"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "سطح مجوز"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "سطوح مجوز"
@@ -19149,11 +19345,6 @@ msgstr "سطوح مجوز"
msgid "Permission Log"
msgstr "لاگ مجوز"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "مدیر مجوز"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19184,7 +19375,6 @@ msgstr "نوع مجوز '{0}' رزرو شده است. لطفاً نام دیگر
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19195,13 +19385,12 @@ msgstr "نوع مجوز '{0}' رزرو شده است. لطفاً نام دیگر
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "مجوزها"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "خطای مجوزها"
@@ -19213,11 +19402,11 @@ msgstr "مجوزها به طور خودکار برای گزارشها و جس
msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
msgstr "مجوزها روی نقشها و انواع اسناد (به نام DocTypes) با تنظیم حقوقی مانند خواندن، نوشتن، ایجاد، حذف، ارسال، لغو، اصلاح، گزارش، درونبُرد، برونبُرد، چاپ، ایمیل و تنظیم مجوزهای کاربر تنظیم میشوند."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "مجوزهای سطح 0 مجوزهای سطح سند هستند، یعنی برای دسترسی به سند اولیه هستند."
@@ -19287,13 +19476,13 @@ msgstr "تلفن"
msgid "Phone No."
msgstr "شماره تلفن"
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "شماره تلفن {0} تنظیم شده در فیلد {1} معتبر نیست."
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "انتخاب ستونها"
@@ -19305,7 +19494,7 @@ 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'
@@ -19351,7 +19540,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "لطفا نمودار را تنظیم کنید"
@@ -19367,7 +19556,7 @@ msgstr "لطفا یک موضوع به ایمیل خود اضافه کنید"
msgid "Please add a valid comment."
msgstr "لطفا یک نظر معتبر اضافه کنید."
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19375,11 +19564,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr "لطفا ابتدا یک فایل پیوست کنید."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "لطفاً یک فایل تصویری برای تنظیم HTML برای پاورقی پیوست کنید."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "لطفاً یک فایل تصویری را برای تنظیم HTML برای Letter Head پیوست کنید."
@@ -19391,11 +19580,11 @@ msgstr "لطفا بسته را پیوست کنید"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "لطفاً مقادیر فیلتر تنظیم شده برای نمودار داشبورد را بررسی کنید: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "لطفاً مقدار تنظیم شده \"Fetch From\" را برای فیلد {0} بررسی کنید"
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "لطفا ایمیل خود را برای تأیید بررسی کنید"
@@ -19427,7 +19616,7 @@ msgstr "لطفا روی لینک زیر کلیک کنید تا گذرواژه ج
msgid "Please confirm your action to {0} this document."
msgstr "لطفاً اقدام خود را در {0} این سند تأیید کنید."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "لطفا برای نصب نسخه صحیح با مدیر سیستم خود تماس بگیرید."
@@ -19457,10 +19646,10 @@ msgstr "لطفاً حداقل یک کلید ورود به سیستم اجتما
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "لطفا پنجره های بازشو را فعال کنید"
@@ -19473,7 +19662,7 @@ msgstr "لطفا پنجره های پاپ آپ را در مرورگر خود ف
msgid "Please enable {} before continuing."
msgstr "لطفاً قبل از ادامه {} را فعال کنید."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "لطفا مطمئن شوید که نمایه شما دارای یک آدرس ایمیل است"
@@ -19547,15 +19736,15 @@ msgstr "لطفا برای ارسال نظر وارد شوید."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "لطفاً مطمئن شوید که اسناد ارتباطی مرجع به صورت دایره ای پیوند داده نشده اند."
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "لطفاً برای دریافت آخرین سند، بازخوانی کنید."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "لطفاً نگاشت چاپگر را در تنظیمات چاپگر حذف کنید و دوباره امتحان کنید."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "لطفا قبل از پیوست ذخیره کنید."
@@ -19571,7 +19760,7 @@ msgstr "لطفاً سند را قبل از حذف تخصیص ذخیره کنید
msgid "Please save the form before previewing the message"
msgstr "لطفاً قبل از پیشنمایش پیام، فرم را ذخیره کنید"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "لطفا ابتدا گزارش را ذخیره کنید"
@@ -19591,7 +19780,7 @@ msgstr "لطفا ابتدا Entity Type را انتخاب کنید"
msgid "Please select Minimum Password Score"
msgstr "لطفا حداقل امتیاز گذرواژه را انتخاب کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "لطفاً فیلدهای X و Y را انتخاب کنید"
@@ -19599,7 +19788,7 @@ msgstr "لطفاً فیلدهای X و Y را انتخاب کنید"
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "لطفاً یک کد کشور برای فیلد {1} انتخاب کنید."
@@ -19649,11 +19838,11 @@ msgstr "لطفاً {0} را انتخاب کنید"
msgid "Please set Email Address"
msgstr "لطفا آدرس ایمیل را تنظیم کنید"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "لطفاً یک نگاشت چاپگر برای این قالب چاپی در تنظیمات چاپگر تنظیم کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "لطفا فیلترها را تنظیم کنید"
@@ -19661,7 +19850,7 @@ msgstr "لطفا فیلترها را تنظیم کنید"
msgid "Please set filters value in Report Filter table."
msgstr "لطفاً مقدار فیلترها را در جدول گزارش فیلتر تنظیم کنید."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "لطفا نام سند را تنظیم کنید"
@@ -19681,7 +19870,7 @@ msgstr "لطفاً SMS را قبل از تنظیم آن به عنوان یک ر
msgid "Please setup a message first"
msgstr "لطفا ابتدا یک پیام تنظیم کنید"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "لطفاً حساب ایمیل خروجی پیشفرض را از تنظیمات > حساب ایمیل تنظیم کنید"
@@ -19693,7 +19882,7 @@ msgstr ""
msgid "Please specify"
msgstr "لطفا مشخص کنید"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "لطفاً یک DocType والد معتبر برای {0} مشخص کنید"
@@ -19721,7 +19910,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr "لطفاً مشخص کنید که کدام قسمت مقدار باید بررسی شود"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "لطفا دوباره تلاش کنید"
@@ -19756,13 +19945,13 @@ 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 "Popover یا Modal Description"
+msgstr ""
#. Label of the smtp_port (Data) field in DocType 'Email Account'
#. Label of the incoming_port (Data) field in DocType 'Email Account'
@@ -19782,7 +19971,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
@@ -19801,7 +19990,7 @@ 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
@@ -19840,13 +20029,13 @@ 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:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "دقت باید بین 1 تا 6 باشد"
@@ -19861,12 +20050,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
@@ -19898,11 +20087,11 @@ msgstr "کاربر گزارش آماده شده"
msgid "Prepared report render failed"
msgstr "ارائه گزارش آماده انجام نشد"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "تهیه گزارش"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "الگو را برای پیام ایمیل آماده کنید"
@@ -19910,7 +20099,7 @@ msgstr "الگو را برای پیام ایمیل آماده کنید"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "کلید Alt را فشار دهید تا میانبرهای اضافی در منو و نوار کناری فعال شوند"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "برای ذخیره Enter را فشار دهید"
@@ -19928,7 +20117,7 @@ msgstr "برای ذخیره Enter را فشار دهید"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "پیشنمایش"
@@ -19950,7 +20139,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}"
@@ -19972,16 +20161,16 @@ msgstr "پیشنمایش:"
msgid "Previous"
msgstr "قبلی"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "قبلی"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "سند قبلی"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "ارسال قبلی"
@@ -20034,19 +20223,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "چاپ"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "چاپ"
@@ -20064,8 +20253,9 @@ msgstr "چاپ اسناد"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20083,7 +20273,7 @@ msgstr "فرمت ساز چاپ"
#. Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Builder Beta"
-msgstr "فرمت ساز چاپ بتا"
+msgstr ""
#: frappe/utils/pdf.py:64
msgid "Print Format Error"
@@ -20102,14 +20292,14 @@ msgstr "قالب چاپ برای"
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
-msgstr "راهنما قالب چاپ"
+msgstr ""
#. Label of the print_format_type (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Type"
-msgstr "نوع قالب چاپ"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "قالب چاپ یافت نشد"
@@ -20130,7 +20320,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'
@@ -20140,13 +20330,13 @@ 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:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "زبان چاپ"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "چاپ برای چاپگر ارسال شد!"
@@ -20154,13 +20344,13 @@ msgstr "چاپ برای چاپگر ارسال شد!"
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "سرور چاپ"
+msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "تنظیمات چاپ"
@@ -20177,12 +20367,12 @@ 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'
@@ -20191,28 +20381,28 @@ 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:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "چاپ سند"
#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "چاپ با سربرگ"
+msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "چاپگر"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "نگاشت چاپگر"
@@ -20220,17 +20410,17 @@ msgstr "نگاشت چاپگر"
#. Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "نام چاپگر"
+msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "تنظیمات چاپگر"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "نگاشت چاپگر تنظیم نشده است."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "چاپ نشد"
@@ -20273,13 +20463,13 @@ msgstr ""
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "نکته پیشنهادی: برای ارسال مرجع سند، مرجع: {{ reference_doctype }} {{ reference_name }} را اضافه کنید"
+msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
msgstr "ادامه دهید"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "در هر صورت انجام شود"
@@ -20319,9 +20509,9 @@ msgid "Project"
msgstr "پروژه"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "ویژگی"
@@ -20333,7 +20523,7 @@ 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
@@ -20348,7 +20538,7 @@ msgstr "Property Setter یک ویژگی DocType یا Field استاندارد ر
#. 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
@@ -20366,14 +20556,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: 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 "Remarques :
\n\n" -"data-fieldtype et data-fieldname.valuesection-break est attribuée à tous les sauts de section.column-break est attribuée à tous les sauts de colonne.1. Alignement à gauche des nombres entiers
\n\n" -"[data-fieldtype=\"Int\"] .value { text-align : left ; }\n\n"
-"1. Ajoutez une bordure aux sections, à l'exception de la dernière section
\n\n" -".section-break { padding : 30px 0px ; border-bottom : 1px solid #eee ; }\n"
-".section-break:last-child { padding-bottom : 0px ; border-bottom : 0px ; }\n"
+msgstr ""
#. Content of the 'Print Format Help' (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -440,72 +426,7 @@ msgid "Les formats d'impression sont rendus côté serveur à l'aide du langage de modélisation Jinja. Tous les formulaires ont accès à l'objet doc qui contient des informations sur le document en cours de formatage. Vous pouvez également accéder à des utilitaires communs via le module frappe.
Pour le style, le cadre CSS Boostrap est fourni et vous pouvez profiter de la gamme complète de classes.
\n" -"<h3>{{ doc.select_print_heading or \"Invoice\" }}</h3>\n"
-"<div class=\"row\">\n"
-"\t<div class=\"col-md-3 text-right\">Nom du client</div>\n"
-"\t<div class=\"col-md-9\">{{ doc.customer_name }}</div>\n"
-"</div>\n"
-"<div class=\"row\">\n"
-"\t<div class=\"col-md-3 text-right\">Date</div>\n"
-"\t<div class=\"col-md-9\">{{ doc.get_formatted(\"invoice_date\") }}</div>\n"
-"</div>\n"
-"<table class=\"table-bordered\">\n"
-"\t<tbody>\n"
-"\t\t<tr>\n"
-"\t\t\t<th>Sr</th>\n"
-"\t\t\t<th>Nom de l'article</th>\n"
-"\t\t\t<th>Description</th>\n"
-"\t\t\t<th class=\"text-right\">Qté</th>\n"
-"\t\t\t<th class=\"text-right\">Taux</th>\n"
-"\t\t\t<th class=\"text-right\">Montant</th>\n"
-"\t\t</tr>\n"
-"\t\t{%- for row in doc.items -%}\n"
-"\t\t<tr>\n"
-"\t\t\t<td style=\"width : 3% ;\">{{ row.idx }}</td>\n"
-"\t\t\t<td style=\"width : 20% ;\">\n"
-"\t\t\t\t{{ row.item_name }}\n"
-"\t\t\t\t{% if row.item_code != row.item_name -%}\n"
-"\t\t\t\t<br>Item Code : {{ row.item_code}}\n"
-"\t\t\t\t{%- endif %}\n"
-"\t\t\t</td>\n"
-"\t\t\t<td style=\"width : 37% ;\">\n"
-"\t\t\t\t<div style=\"border : 0px ;\">{{ row.description }}</div></td>\n"
-"\t\t\t<td style=\"width : 10% ; text-align : right ;\">{{ row.qty }} {{ row.uom or row.stock_uom }}</td>\n"
-"\t\t\t<td style=\"width : 15% ; text-align : right ;\">{{\n"
-"\t\t\t\trow.get_formatted(\"rate\", doc) }}</td>\n"
-"\t\t\t<td style=\"width : 15% ; text-align : right ;\">{{\n"
-"\t\t\t\trow.get_formatted(\"amount\", doc) }}</td>\n"
-"\t\t</tr>\n"
-"\t\t{%- endfor -%}\n"
-"\t</tbody>\n"
-"</table>\n"
-"doc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
-"\t\t\tObtenir la valeur du document formatée en tant que date, devise, etc. Passez le document parent pour les champs de type devise. | \n"
-"\t\t
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
-"\t\t\tObtenir la valeur d'un autre document. | \n" -"\t\t
Utilisez le modèle Jinja et tous les champs de l'adresse (y compris les champs personnalisés, le cas échéant) seront disponibles.
\n" -"{{ address_line1 }}<br>\n"
-"{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
-"{{ city }}<br>\n"
-"{% if state %}{{ state }}<br>{% endif -%}\n"
-"{% if pincode %} PIN : {{ pincode }}<br>{% endif -%}\n"
-"{{ country }}<br>\n"
-"{% if phone %}Phone : {{ phone }}<br>{% endif -%}\n"
-"{% if fax %}Fax : {{ fax }}<br>{% endif -%}\n"
-"{% if email_id %}Email : {{ email_id }}<br>{% endif -%}\n"
-""
+msgstr ""
#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
@@ -553,7 +463,7 @@ msgstr ""
#. Content of the 'html_5' (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Condition Examples:
\n" "doc.status==\"Open\"" -msgstr "
doc.due_date==nowdate()
doc.total > 40000\n" "
Exemples de conditions :
\n" -"doc.status==\"Ouvert\"" +msgstr "" #. Content of the 'Condition description' (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -633,18 +541,7 @@ msgid "
doc.due_date= =nowdate()
doc.total > 40000\n" -"
* * * * *\n" "* - Any value\n" "/ - Step values\n" "\n" -msgstr "
* * * * *\n" -"┬ ┬ ┬ ┬ ┬\n" -"│ │ │ │ │\n" -"│ │ │ │ └ jour de la semaine (0 - 6) (0 est dimanche)\n" -"│ │ │ └───── mois (1 - 12)\n" -"│ │ └────────── jour du mois (1 - 31)\n" -"│ └──────────────── heure (0 - 23)\n" -"└──────────────────── minute (0 - 59)\n\n" -"---\n\n" -"* - Toute valeur\n" -"/ - Valeurs d'étape\n" -"\n" +msgstr "" #. Content of the 'Example' (HTML) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json @@ -690,7 +587,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1049 +#: frappe/core/doctype/doctype/doctype.py:1052 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -704,7 +601,7 @@ msgstr "" msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" -#: frappe/custom/doctype/custom_field/custom_field.py:176 +#: frappe/custom/doctype/custom_field/custom_field.py:177 msgid "A field with the name {0} already exists in {1}" msgstr "" @@ -715,7 +612,7 @@ 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.
Warning: Customizations from other modules will be excluded.
" +msgstr "" + #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json @@ -9746,7 +9751,7 @@ msgstr "" msgid "Export without main header" msgstr "" -#: frappe/public/js/frappe/data_import/data_exporter.js:247 +#: frappe/public/js/frappe/data_import/data_exporter.js:248 msgid "Export {0} records" msgstr "Exporter des enregistrements {0}" @@ -9757,7 +9762,7 @@ msgstr "" #. Label of the expose_recipients (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Expose Recipients" -msgstr "Exposer Destinataires" +msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' @@ -9777,7 +9782,7 @@ msgstr "" #. Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Expression, Optional" -msgstr "Expression, Optionnel" +msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -9786,7 +9791,7 @@ 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:440 +#: frappe/public/js/frappe/views/workspace/workspace.js:488 msgid "External Link" msgstr "" @@ -9835,12 +9840,17 @@ msgstr "" msgid "Failed Jobs" msgstr "" +#. Label of a number card in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Failed Login Attempts" +msgstr "" + #. Label of the failed_logins (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:362 +#: frappe/model/workflow.py:383 msgid "Failed Transactions" msgstr "Transactions ayant échoué" @@ -9903,7 +9913,7 @@ msgstr "" msgid "Failed to get method for command {0} with {1}" msgstr "" -#: frappe/api/v2.py:46 +#: frappe/api/v2.py:61 msgid "Failed to get method {0} with {1}" msgstr "" @@ -9915,7 +9925,7 @@ msgstr "" msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "" -#: frappe/utils/image.py:75 +#: frappe/utils/image.py:70 msgid "Failed to optimize image: {0}" msgstr "" @@ -9931,7 +9941,7 @@ msgstr "" msgid "Failed to request login to Frappe Cloud" msgstr "" -#: frappe/email/doctype/email_queue/email_queue.py:300 +#: frappe/email/doctype/email_queue/email_queue.py:301 msgid "Failed to send email with subject:" msgstr "" @@ -9973,7 +9983,7 @@ msgstr "" msgid "Fax" msgstr "" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:51 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:72 msgid "Feedback" msgstr "" @@ -9990,7 +10000,7 @@ 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 "Récupérer depuis le champ" +msgstr "" #: frappe/website/doctype/website_slideshow/website_slideshow.js:15 msgid "Fetch Images" @@ -10033,8 +10043,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1909 +#: frappe/public/js/frappe/views/reports/query_report.js:237 +#: frappe/public/js/frappe/views/reports/query_report.js:1984 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10044,7 +10054,7 @@ msgstr "Champ" msgid "Field \"route\" is mandatory for Web Views" msgstr "Le champ "route" est obligatoire pour les vues Web" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -10052,16 +10062,16 @@ msgstr "" msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "Le champ \"Valeur\" est obligatoire. S'il vous plaît spécifiez la valeur devant être mise à jour" -#: frappe/desk/search.py:255 +#: frappe/desk/search.py:262 msgid "Field{0} not found in {1}"
msgstr ""
#. Label of the description (Text) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr "Description du Champ"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10098,18 +10108,18 @@ msgstr ""
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
-msgstr "Champ qui représente l'État du Workflow de la transaction (si le champ n'est pas présent, un nouveau champ caché personnalisé sera créé)"
+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 "Champ à suivre"
+msgstr ""
#: frappe/custom/doctype/property_setter/property_setter.py:52
msgid "Field type cannot be changed for {0}"
msgstr "Le type de champ ne peut pas être modifié pour {0}"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10117,11 +10127,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Champ {0} introuvable."
@@ -10143,7 +10153,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Nom du Champ"
@@ -10152,7 +10162,7 @@ msgstr "Nom du Champ"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10160,7 +10170,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Le Nom du champ est limité à 64 caractères ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Nom du Champ n'a pas été défini pour un Champ Personnalisé"
@@ -10176,7 +10186,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Nom de champ {0} en conflit avec méta objet"
@@ -10214,7 +10224,7 @@ msgstr "Champ"
#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Fields Multicheck"
-msgstr "Champs à choix multiples"
+msgstr ""
#: frappe/core/doctype/file/file.py:441
msgid "Fields `file_name` or `file_url` must be set for File"
@@ -10224,14 +10234,14 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
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 "Les champs séparés par une virgule (,) seront inclus dans la liste \"Recherche par\" de la boîte de dialogue de Recherche"
+msgstr ""
#. Label of the fieldtype (Select) field in DocType 'Report Column'
#. Label of the fieldtype (Select) field in DocType 'Report Filter'
@@ -10246,9 +10256,9 @@ msgstr "Les champs séparés par une virgule (,) seront inclus dans la liste \"R
#: 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 "Type de Champ"
+msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10275,7 +10285,7 @@ msgstr "Fichier '{0}' introuvable"
#. Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "Informations sur le fichier"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
@@ -10284,12 +10294,12 @@ msgstr "Gestionnaire de Fichiers"
#. Label of the file_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "Nom du Fichier"
+msgstr ""
#. Label of the file_size (Int) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "Taille du Fichier"
+msgstr ""
#. Label of the section_break_ryki (Section Break) field in DocType 'System
#. Health Report'
@@ -10310,7 +10320,7 @@ msgstr "Type de fichier"
#. Label of the file_url (Code) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "URL du fichier"
+msgstr ""
#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
@@ -10324,12 +10334,12 @@ msgstr "Le nom de fichier ne peut pas avoir {0}"
msgid "File not attached"
msgstr "Fichier joint manquant"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "La taille du fichier a dépassé la taille maximale autorisée de {0} Mo"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Fichier trop grand"
@@ -10356,17 +10366,22 @@ msgstr "Fichiers"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filtre"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+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 "Filtrer les Données"
+msgstr ""
#. Label of the filter_list (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -10376,24 +10391,24 @@ 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 "Meta de Filtre"
+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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Nom du filtre"
#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Valeurs du filtre"
+msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10412,10 +10427,14 @@ msgid "Filtered Records"
msgstr "Enregistrements filtrés"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Filtré par \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10439,19 +10458,19 @@ msgstr "Filtré par \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
#. Label of the filters_config (Code) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Configuration"
-msgstr "Configuration des filtres"
+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 "Affichage des Filtres"
+msgstr ""
#. Label of the filters_editor (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -10463,16 +10482,12 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "Filtres JSON"
+msgstr ""
#. Label of the filters_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "Section Filtres"
-
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Filtres appliqués pour {0}"
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
@@ -10481,7 +10496,7 @@ msgstr "Filtres sauvegardés"
#. Description of the 'Script' (Code) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Filters will be accessible via filters. result = [result], or for old style data = [columns], [result]"
-msgstr "Les filtres seront accessibles via des filters .result = [result] , ou pour les data = [columns], [result] style ancien data = [columns], [result]"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter_list.js:133
msgid "Filters {0}"
@@ -10491,21 +10506,21 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Trouver {0} dans {1}"
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Fini"
+msgstr ""
#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
@@ -10534,7 +10549,7 @@ msgstr "Prénom"
#. 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 "Premier message de succès"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
@@ -10551,7 +10566,7 @@ msgstr ""
#. Label of the flag (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr "Drapeau"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10566,12 +10581,12 @@ msgstr "Drapeau"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Float"
-msgstr "Nombre Réel"
+msgstr ""
#. Label of the float_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr "Nombre de Décimales"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10584,13 +10599,13 @@ msgstr "Nombre de Décimales"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr "Pli"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Un Pli ne peut pas être à la fin du formulaire"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Un Pli doit être avant un Saut de Section"
@@ -10599,12 +10614,12 @@ msgstr "Un Pli doit être avant un Saut de Section"
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Folder"
-msgstr "Dossier"
+msgstr ""
#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Folder Name"
-msgstr "Nom du dossier"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:100
msgid "Folder name should not include '/' (slash)"
@@ -10619,12 +10634,12 @@ msgstr "Dossier {0} n’est pas vide"
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Suivre"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10632,7 +10647,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10640,7 +10655,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr "Les champs suivants sont manquants :"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10648,19 +10663,19 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Les champs suivants ont des valeurs manquantes:"
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
-msgstr "Police de caractère"
+msgstr ""
#. Label of the font_properties (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr "Propriétés de la police"
+msgstr ""
#. Label of the font_size (Int) field in DocType 'Print Format'
#. Label of the font_size (Float) field in DocType 'Print Settings'
@@ -10670,13 +10685,13 @@ msgstr "Propriétés de la police"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr "Taille de la Police"
+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 "Polices"
+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'
@@ -10689,7 +10704,7 @@ msgstr "Polices"
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr "Pied de Page"
+msgstr ""
#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -10704,7 +10719,7 @@ msgstr ""
#. Label of the footer (Text Editor) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Footer Content"
-msgstr "Contenue du pied de page"
+msgstr ""
#. Label of the footer_details_section (Section Break) field in DocType
#. 'Website Settings'
@@ -10715,9 +10730,9 @@ msgstr ""
#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr "Pied de page HTML"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10731,12 +10746,12 @@ msgstr ""
#. Label of the footer_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Items"
-msgstr "Éléments du Pied de Page"
+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 "Logo du pied de page"
+msgstr ""
#. Label of the footer_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -10746,15 +10761,15 @@ msgstr ""
#. Label of the footer_template (Link) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr "Modèle de pied de page"
+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 "Valeurs du modèle de pied de page"
+msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled{{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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)."
-#: 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
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Par exemple: Si vous voulez inclure l'ID du document, utilisez {0}"
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "Par exemple: {} Ouvrir"
+msgstr ""
#. Description of the 'Client script' (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "Pour obtenir de l'aide, voir API de script client et exemples"
+msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
@@ -10860,7 +10862,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr "Pour la mise à jour, vous pouvez mettre à jour uniquement une sélection colonnes."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Pour {0} au niveau {1} dans {2} à la ligne {3}"
@@ -10870,7 +10872,7 @@ msgstr "Pour {0} au niveau {1} dans {2} à la ligne {3}"
#: frappe/core/doctype/package_import/package_import.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Force"
-msgstr "Forcer"
+msgstr ""
#. Label of the force_re_route_to_default_view (Check) field in DocType
#. 'DocType'
@@ -10889,7 +10891,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force User to Reset Password"
-msgstr "Forcer l'utilisateur à réinitialiser le mot de passe"
+msgstr ""
#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType
#. 'System Settings'
@@ -10910,7 +10912,8 @@ msgstr "Mot de Passe Oublié ?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -10938,7 +10941,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Form Settings"
-msgstr "Paramètres de formulaire"
+msgstr ""
#. Name of a DocType
#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
@@ -10955,7 +10958,7 @@ msgstr ""
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr "Formulaire encodé en URL"
+msgstr ""
#. Label of the format (Data) field in DocType 'Workspace Shortcut'
#. Label of the format (Select) field in DocType 'Auto Email Report'
@@ -10968,7 +10971,7 @@ msgstr ""
#. Label of the format_data (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Format Data"
-msgstr "Format des Données"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -10988,7 +10991,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 "Transférer à l'Adresse Email"
+msgstr ""
#. Label of the fraction (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
@@ -10998,7 +11001,7 @@ msgstr ""
#. Label of the fraction_units (Int) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Fraction Units"
-msgstr "Fractions d’Unités"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -11089,7 +11092,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11108,9 +11111,9 @@ 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 "Champ date"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "De type de document"
@@ -11122,7 +11125,7 @@ msgstr ""
#. Label of the sender_full_name (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "From Full Name"
-msgstr "Nom de l’Expéditeur"
+msgstr ""
#. Label of the from_user (Link) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -11136,7 +11139,7 @@ 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 "Complet"
+msgstr ""
#. Label of the full_name (Data) field in DocType 'Contact'
#. Label of the full_name (Data) field in DocType 'Activity Log'
@@ -11151,7 +11154,7 @@ msgstr "Complet"
msgid "Full Name"
msgstr "Nom Complet"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Pleine Page"
@@ -11159,12 +11162,12 @@ msgstr "Pleine Page"
#. Label of the full_width (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Full Width"
-msgstr "Pleine largeur"
+msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Une fonction"
@@ -11173,11 +11176,11 @@ msgstr "Une fonction"
msgid "Function Based On"
msgstr "Fonction basée sur"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11240,13 +11243,13 @@ msgstr "Général"
#. Label of the generate_keys (Button) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Generate Keys"
-msgstr "Générer des clés"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Générer un nouveau rapport"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11256,8 +11259,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11273,7 +11276,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Geolocation"
-msgstr "Géolocalisation"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
@@ -11291,7 +11294,7 @@ msgstr ""
#. Label of the get_contacts (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Get Contacts"
-msgstr "Obtenir les contacts"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:93
msgid "Get Fields"
@@ -11317,7 +11320,7 @@ msgstr ""
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Get a preview of generated names with a series."
-msgstr "Obtenez un aperçu des noms générés avec le masque."
+msgstr ""
#. Description of the 'Email Threads on Assigned Document' (Check) field in
#. DocType 'Notification Settings'
@@ -11328,12 +11331,12 @@ 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 "Obtenir votre avatar mondialement reconnu depuis Gravatar.com"
+msgstr ""
#. Label of the git_branch (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Git Branch"
-msgstr "Branche Git"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -11366,9 +11369,9 @@ msgstr "Raccourcis globaux"
#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Global Unsubscribe"
-msgstr "Se Désabonner Globalement"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Aller"
@@ -11384,7 +11387,7 @@ msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "Aller à la page"
+msgstr ""
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
@@ -11428,7 +11431,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr "Aller à la page {0}"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Objectif"
@@ -11441,7 +11444,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 "ID Google Analytics"
+msgstr ""
#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
#. Settings'
@@ -11491,14 +11494,14 @@ msgstr "Google Agenda - Impossible de mettre à jour l'événement {0} dans
#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr "Identifiant d'événement Google Agenda"
+msgstr ""
#. Label of the google_calendar_id (Data) field in DocType 'Event'
#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
#: frappe/desk/doctype/event/event.json
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr "Identifiant Google Agenda"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
@@ -11526,7 +11529,7 @@ msgstr "Google Contacts - Impossible de mettre à jour le contact dans Google Co
#. Label of the google_contacts_id (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr "Identifiant Google Contacts"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
@@ -11581,7 +11584,7 @@ msgstr "L'URL de Google Sheets doit se terminer par "gid = {number}&quo
#. Label of the grant_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Grant Type"
-msgstr "Type de Subvention"
+msgstr ""
#: frappe/public/js/frappe/form/dashboard.js:34
#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
@@ -11643,18 +11646,18 @@ 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 "Grouper par basé sur"
+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 "Regrouper par type"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11687,14 +11690,14 @@ msgstr ""
#: 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'
@@ -11732,17 +11735,21 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr "Éditeur HTML"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr "Page HTML"
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr "HTML pour la section d'en-tête. Optionnel"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
msgid "HTML with jinja support"
@@ -11751,7 +11758,7 @@ msgstr ""
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Half"
-msgstr "Moitié"
+msgstr ""
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
@@ -11774,7 +11781,7 @@ msgstr ""
#. Label of the has_attachment (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Has Attachment"
-msgstr "A Une Pièce Jointe"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/has_domain/has_domain.json
@@ -11800,7 +11807,7 @@ msgstr ""
#. Label of the has_web_view (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Has Web View"
-msgstr "A Une Vue Web"
+msgstr ""
#: frappe/templates/signup.html:19
msgid "Have an account? Login"
@@ -11815,14 +11822,14 @@ msgstr "Vous avez déjà un compte? Connexion"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Header"
-msgstr "En-Tête"
+msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header HTML"
-msgstr "En-tête HTML"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "En-tête HTML défini à partir de la pièce jointe {0}"
@@ -11839,7 +11846,7 @@ 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 "En-tête et fil d'Ariane"
+msgstr ""
#. Label of the section_break_38 (Tab Break) field in DocType 'Website
#. Settings'
@@ -11856,9 +11863,9 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Headers"
-msgstr "En-Têtes"
+msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11879,7 +11886,7 @@ msgstr "Titre"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr "Carte de chaleur"
+msgstr ""
#: frappe/templates/emails/new_user.html:2
msgid "Hello"
@@ -11895,7 +11902,7 @@ msgstr "Bonjour,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11928,7 +11935,7 @@ msgstr "Aide déroulante"
#. 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 "Aide HTML"
+msgstr ""
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -11950,7 +11957,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11986,8 +11993,8 @@ msgstr "Caché"
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include: /project/<name>"
-msgstr "Mappez les paramètres d'itinéraire en variables de formulaire. Exemple /project/<name>"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:923
msgid "Mapping column {0} to field {1}"
@@ -15667,7 +15726,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15707,7 +15766,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Marked As Spam"
-msgstr "Marquer comme Spam"
+msgstr ""
#. Name of a role
#: frappe/website/doctype/utm_campaign/utm_campaign.json
@@ -15719,9 +15778,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "Masque"
@@ -15732,14 +15794,14 @@ 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 "Max 500 enregistrements à la fois"
+msgstr ""
#. Label of the max_attachments (Int) field in DocType 'DocType'
#. Label of the max_attachments (Int) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr "Nombre Max de Pièces Jointes"
+msgstr ""
#. Label of the max_file_size (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15754,7 +15816,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 "Longueur Max"
+msgstr ""
#. Label of the max_report_rows (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15764,7 +15826,7 @@ 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 "Valeur Max"
+msgstr ""
#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -15783,7 +15845,7 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "Largeur max pour le type Devise est 100px dans la ligne {0}"
@@ -15804,20 +15866,27 @@ msgstr ""
msgid "Maximum {0} rows allowed"
msgstr "Maximum {0} lignes autorisés"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Moi"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15861,12 +15930,12 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15900,13 +15969,13 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr ""
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
@@ -15914,19 +15983,19 @@ msgstr ""
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr "Exemples de Messages"
+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 "ID de Message"
+msgstr ""
#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr "Paramètre Message"
+msgstr ""
#: frappe/templates/includes/contact.js:36
msgid "Message Sent"
@@ -15937,7 +16006,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Message coupé"
@@ -15957,7 +16026,7 @@ msgstr ""
#. Label of the message_id (Code) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Message-id"
-msgstr "Id-message"
+msgstr ""
#. Label of the messages (Code) field in DocType 'Data Import Log'
#: frappe/core/doctype/data_import_log/data_import_log.json
@@ -16032,9 +16101,9 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Méthode"
+msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -16052,7 +16121,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
msgid "Middle Name"
-msgstr "Deuxième Nom"
+msgstr ""
#. Label of a field in the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
@@ -16074,13 +16143,13 @@ msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Minimum"
-msgstr "Le minimum"
+msgstr ""
#. Label of the minimum_password_score (Select) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Minimum Password Score"
-msgstr "Score Minimum de Mot de Passe"
+msgstr ""
#. Label of the minor (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
@@ -16123,7 +16192,7 @@ msgstr ""
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16143,7 +16212,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16208,7 +16277,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16244,7 +16313,7 @@ msgstr ""
#. Label of the module_name (Data) field in DocType 'Module Def'
#: frappe/core/doctype/module_def/module_def.json
msgid "Module Name"
-msgstr "Nom du Module"
+msgstr ""
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -16255,9 +16324,8 @@ msgstr "Intégration du module"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16274,7 +16342,7 @@ msgstr ""
msgid "Module to Export"
msgstr "Module à Exporter"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16345,7 +16413,7 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr "Long mensuel"
+msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:39
#: frappe/public/js/frappe/form/multi_select_dialog.js:45
@@ -16376,7 +16444,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
-msgstr "Informations Complémentaires"
+msgstr ""
#: frappe/website/doctype/help_article/templates/help_article.html:19
#: frappe/website/doctype/help_article/templates/help_article.html:33
@@ -16387,9 +16455,9 @@ msgstr "Plus d'articles sur {0}"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr "Plus de contenu pour le bas de la page."
+msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "Plus Utilisé"
@@ -16404,7 +16472,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Déménager à"
@@ -16416,19 +16484,19 @@ msgstr "Mettre À la Corbeille"
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16440,7 +16508,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Déplacer vers le numéro de ligne"
@@ -16475,7 +16543,7 @@ msgstr "Plusieurs nœuds racines non autorisés."
#. Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr "Doit être une URL Google Sheets accessible au public"
+msgstr ""
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
@@ -16488,7 +16556,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Must be of type \"Attach Image\""
-msgstr "Doit être de type \"Joindre l'Image\""
+msgstr ""
#: frappe/desk/query_report.py:211
msgid "Must have report permission to access this report."
@@ -16501,7 +16569,7 @@ msgstr "Vous devez spécifier une Requête à exécuter"
#. Label of the mute_sounds (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Mute Sounds"
-msgstr "Désactiver les Sons"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:45
msgid "Mx"
@@ -16558,7 +16626,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "Le Nom ne peut contenir des caractères spéciaux tels que {0}"
@@ -16570,7 +16638,7 @@ msgstr "Nom du Type de Document (DocType) auquel vous souhaitez que ce champ soi
msgid "Name of the new Print Format"
msgstr "Nom du nouveau Format d'Impression"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "Nom de {0} ne peut pas être {1}"
@@ -16587,7 +16655,7 @@ msgstr "Les noms et prénoms par eux-mêmes sont faciles à deviner."
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr "Nom"
+msgstr ""
#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
@@ -16609,7 +16677,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Masque de numérotation obligatoire"
@@ -16633,57 +16701,57 @@ msgstr "Élément de la barre de navigation"
msgid "Navbar Settings"
msgstr "Paramètres de la barre de navigation"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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 "Modèle de barre de navigation"
+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 "Valeurs du modèle de barre de navigation"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Naviguer dans la liste"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Naviguer dans la liste en haut"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Valeur négative"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16705,6 +16773,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16721,7 +16790,7 @@ msgstr "Nouvelle activité"
#: 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16737,8 +16806,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "Nouveau Format d'Impression Personnalisé"
@@ -16787,7 +16856,7 @@ msgstr "Nouveau Message depuis la Page Contact du Site Web"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Nouveau Nom"
@@ -16808,8 +16877,8 @@ msgstr ""
msgid "New Password"
msgstr "Nouveau Mot de Passe"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Nouveau nom du format d'impression"
@@ -16836,8 +16905,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16845,7 +16914,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16886,34 +16955,34 @@ msgstr ""
#. Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "New value to be set"
-msgstr "Nouvelle valeur à définir"
+msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Nouveau(elle) {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Nouveau {0} créé"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
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:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "Nouveau {0} {1} créé"
@@ -16925,7 +16994,7 @@ msgstr "Nouveau {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "De nouvelles {} versions pour les applications suivantes sont disponibles"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16946,7 +17015,7 @@ msgstr "Responsable de la Newsletter"
msgid "Next"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr ""
@@ -16971,14 +17040,18 @@ msgstr ""
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Next Action Email Template"
-msgstr "Modèle d'email pour l'action suivante"
+msgstr ""
+
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+msgstr ""
#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Next Actions HTML"
-msgstr "HTML pour les actions suivantes"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -17003,7 +17076,7 @@ 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 "Prochaine Date Programmée"
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
msgid "Next Scheduled Date"
@@ -17012,7 +17085,7 @@ msgstr ""
#. Label of the next_state (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Next State"
-msgstr "État Suivant"
+msgstr ""
#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -17024,7 +17097,7 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Next Sync Token"
-msgstr "Jeton de synchronisation suivant"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:691
msgid "Next Week"
@@ -17045,20 +17118,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -17084,7 +17161,7 @@ msgstr "Aucune Session Active"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "No Copy"
-msgstr "Aucune Copie"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
#: frappe/email/doctype/auto_email_report/auto_email_report.py:309
@@ -17128,7 +17205,7 @@ msgstr "Aucun filtre défini"
msgid "No Google Calendar Event to sync."
msgstr "Aucun événement du calendrier Google à synchroniser."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17147,23 +17224,23 @@ msgstr "Aucun utilisateur LDAP trouvé pour l'e-mail: {0}"
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "Aucun nom spécifié pour {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "Aucune Autorisation Spécifiée"
@@ -17183,11 +17260,11 @@ msgstr "Aucun graphique autorisé sur ce tableau de bord"
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "Aucune imprimante n'est disponible."
@@ -17195,7 +17272,7 @@ msgstr "Aucune imprimante n'est disponible."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "Aucun résultat"
@@ -17203,7 +17280,7 @@ msgstr "Aucun résultat"
msgid "No Results found"
msgstr "Aucun résultat trouvs"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17219,7 +17296,7 @@ msgstr ""
msgid "No Tags"
msgstr "Aucune balise"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17239,7 +17316,7 @@ msgstr ""
msgid "No changes in document"
msgstr "Aucun changement dans le document"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17303,7 +17380,7 @@ msgstr ""
msgid "No file attached"
msgstr "Pas de fichier joint"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr ""
@@ -17344,18 +17421,18 @@ 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 "Nb de lignes (Max 500)"
+msgstr ""
#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "Pas d'autorisation pour {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Pas d'autorisation pour '{0}' {1}"
@@ -17364,7 +17441,7 @@ msgstr "Pas d'autorisation pour '{0}' {1}"
msgid "No permission to read {0}"
msgstr "Pas d'autorisation pour lire {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "Pas d'autorisation pour {0} {1} {2}"
@@ -17380,7 +17457,7 @@ msgstr "Aucun enregistrement présent dans {0}"
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "Aucun enregistrement ne sera exporté"
@@ -17388,7 +17465,7 @@ msgstr "Aucun enregistrement ne sera exporté"
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17400,11 +17477,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr "Aucun modèle trouvé au chemin: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17416,7 +17494,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17425,7 +17503,7 @@ msgid "No {0} mail"
msgstr "Pas de courrier {0}"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "N°."
@@ -17442,7 +17520,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Non Negative"
-msgstr "Non négatif"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:33
msgid "Non-Conforming"
@@ -17468,12 +17546,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr ""
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17515,7 +17593,7 @@ msgstr "Lié à aucun enregistrement"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17524,7 +17602,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17533,8 +17611,8 @@ msgstr ""
msgid "Not Published"
msgstr "Non Publié"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17554,7 +17632,7 @@ msgstr "Non Vu"
msgid "Not Sent"
msgstr "Non Envoyé"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "Non Défini"
@@ -17568,15 +17646,15 @@ 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:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "Image utilisateur non valide."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "Action de Workflow non valide"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17584,7 +17662,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "Non autorisé pour {0}: {1}"
@@ -17604,11 +17682,11 @@ msgstr "Non autorisé à imprimer des documents annulés"
msgid "Not allowed to print draft documents"
msgstr "Non autorisé à imprimer des brouillons de documents"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Pas trouvé"
@@ -17621,11 +17699,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Pas en Mode Développeur! Configurez le dans site_config.json ou créez un DocType 'Custom'."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17653,7 +17731,7 @@ msgstr "Note Vue Par"
msgid "Note:"
msgstr "Remarque:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Remarque : Changer le Nom de la Page va détruire le précédent lien URL vers cette page."
@@ -17665,13 +17743,13 @@ msgstr ""
#. 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 "Remarque: pour obtenir les meilleurs résultats, les images doivent avoir la même taille et la largeur doit être supérieure à la hauteur."
+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 "Remarque : Plusieurs sessions seront autorisées en cas d'appareil mobile"
+msgstr ""
#: frappe/core/doctype/user/user.js:394
msgid "Note: This will be shared with user."
@@ -17685,7 +17763,7 @@ msgstr ""
msgid "Notes:"
msgstr "Remarques:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr ""
@@ -17697,8 +17775,8 @@ msgstr "Rien de plus à refaire"
msgid "Nothing left to undo"
msgstr "Rien de plus à annuler"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17709,11 +17787,13 @@ msgid "Nothing to update"
msgstr "Rien à mettre à jour"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr ""
@@ -17729,7 +17809,7 @@ msgstr "Destinataire de la notification"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17738,11 +17818,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr "Document souscrit à la notification"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17760,13 +17835,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -17774,37 +17851,37 @@ msgstr ""
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Notifications and bulk mails will be sent from this outgoing server."
-msgstr "Les Notifications et Lots d’Emails seront envoyés à partir de ce serveur sortant."
+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 "Notifier les Utilisateurs à Chaque Connexion"
+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 "Avertir par e-mail"
+msgstr ""
#. Label of the notify_by_email (Check) field in DocType 'DocShare'
#: frappe/core/doctype/docshare/docshare.json
msgid "Notify by email"
-msgstr "Notifier par Email"
+msgstr ""
#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied"
-msgstr "Notifier si aucune réponse"
+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 "Notifier si aucune réponse dans (en min)"
+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 "Informer les utilisateurs avec un popup quand ils se connectent"
+msgstr ""
#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
@@ -17814,7 +17891,7 @@ msgstr "Maintenant"
#. Label of the phone (Data) field in DocType 'Contact Phone'
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr "Nombre"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
@@ -17847,17 +17924,17 @@ msgstr "Cartes numériques"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/currency/currency.json
msgid "Number Format"
-msgstr "Format Numérique"
+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 "Nombre de Sauvegardes"
+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 "Nombre de groupes"
+msgstr ""
#. Label of the number_of_queries (Int) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -17876,14 +17953,14 @@ 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 "Nombre de colonnes pour un champ dans une Grille (Total des colonnes dans une grille doit être inférieur à 11)"
+msgstr ""
#. Description of the 'Columns' (Int) field in DocType 'DocField'
#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr "Nombre de colonnes pour un champ dans une vue en Liste ou en Grille (Total des colonnes doit être inférieur à 11)"
+msgstr ""
#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
#. DocType 'System Settings'
@@ -17926,7 +18003,7 @@ msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "OAuth Client ID"
-msgstr "ID client OAuth"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -17971,12 +18048,12 @@ msgstr ""
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP App"
-msgstr "Application OTP"
+msgstr ""
#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP Issuer Name"
-msgstr "Nom de l'Émetteur OTP"
+msgstr ""
#. Label of the otp_sms_template (Small Text) field in DocType 'System
#. Settings'
@@ -18002,7 +18079,7 @@ msgstr "OTP Secret a été réinitialisé. Une nouvelle inscription sera requise
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -18015,12 +18092,12 @@ msgstr ""
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Off"
-msgstr "De"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Office"
-msgstr "Bureau"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -18042,7 +18119,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -18050,7 +18127,7 @@ msgstr ""
msgid "Old Password"
msgstr "Ancien Mot De Passe"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18058,7 +18135,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Older backups will be automatically deleted"
-msgstr "Les anciennes sauvegardes seront automatiquement supprimées"
+msgstr ""
#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health
#. Report'
@@ -18117,7 +18194,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18161,7 +18238,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Une fois validé, les documents à valider ne peuvent plus être modifiés. Ils ne peuvent être annulés et modifiés (Nouv. version)."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18177,11 +18254,11 @@ msgstr "Code de Mot de Passe Unique (OTP) à partir de {}"
msgid "One of"
msgstr "Un des"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Seuls 200 inserts autorisés dans une requête"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Seul l'Administrateur peut supprimer la File d'Attente d' Emails"
@@ -18200,16 +18277,16 @@ msgstr "Seul l'administrateur est autorisé à utiliser l'enregistreur"
#. 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 "Autoriser la Modification Uniquement Pour"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Seules les options autorisées pour le champ Données sont:"
#. 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 "Envoyer Uniquement les Enregistrements Mis à Jour au cours des X Dernières Heures"
+msgstr ""
#: frappe/core/doctype/file/file.py:167
msgid "Only System Managers can make this file public."
@@ -18225,11 +18302,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18272,7 +18349,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18295,8 +18372,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18316,7 +18393,7 @@ msgstr "Ouvrir le document"
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Open Documents"
-msgstr "Documents ouverts"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
@@ -18326,12 +18403,16 @@ msgstr "Ouvrir l'aide"
#. Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr "Document de référence ouvert"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
msgstr "Paramètres ouverts"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18339,14 +18420,14 @@ 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 "Ouvrir l'URL dans un nouvel onglet"
+msgstr ""
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Ouvrir un module ou un outil"
@@ -18358,11 +18439,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Ouvrir un élément de la liste"
@@ -18377,16 +18458,16 @@ msgstr "Ouvrez votre application d'authentification sur votre téléphone po
#: 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:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Ouvrir {0}"
@@ -18407,7 +18488,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Opened"
-msgstr "Ouvert"
+msgstr ""
#. Label of the operation (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
@@ -18418,7 +18499,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr "L'Opérateur doit être parmi {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18444,19 +18525,19 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "L'option {0} pour le champ {1} n'est pas une table enfant"
#. 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 "Optionel : Toujours envoyer à ces ids. Chaque Adresse Email sera sur une nouvelle ligne"
+msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr "Optionel : L'alerte sera envoyée si cette expression est vraie"
+msgstr ""
#. Label of the options (Small Text) field in DocType 'DocField'
#. Label of the options (Data) field in DocType 'Report Column'
@@ -18478,16 +18559,16 @@ msgstr "Optionel : L'alerte sera envoyée si cette expression est vraie"
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Les champs de type Options 'Lien Dynamique' doivent pointer vers un autre Champ Lié avec 'Doctype' pour options"
#. Label of the options_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr "Aide Options"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18495,7 +18576,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr "Options pour sélectionner. Chaque option sur une nouvelle ligne."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Les options pour {0} doivent être définies avant de définir la valeur par défaut."
@@ -18503,7 +18584,7 @@ msgstr "Les options pour {0} doivent être définies avant de définir la valeur
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Options non définis pour le champ lié {0}"
@@ -18517,9 +18598,9 @@ 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 "Commande"
+msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18527,20 +18608,24 @@ msgstr ""
#. 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 "Histoire Org"
+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 "Rubriques Histoire Org"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18554,7 +18639,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr "Autre"
+msgstr ""
#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -18578,13 +18663,13 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Server"
-msgstr "Serveur de Courriel Sortant"
+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 "Configurations des Courriels Sortant"
+msgstr ""
#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Outgoing email account not correct"
@@ -18602,7 +18687,7 @@ msgstr ""
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Output"
-msgstr "Sortie"
+msgstr ""
#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
msgid "Overview"
@@ -18615,18 +18700,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18638,7 +18725,7 @@ msgstr ""
#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr "Format de Page PDF"
+msgstr ""
#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -18648,9 +18735,9 @@ msgstr ""
#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr "Paramètres PDF"
+msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "La génération de PDF a échoué"
@@ -18658,11 +18745,11 @@ msgstr "La génération de PDF a échoué"
msgid "PDF generation failed because of broken image links"
msgstr "La génération du PDF a échoué en raison de liens invalides vers une/des image(s)"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18763,7 +18850,7 @@ msgstr "Générateur de pages"
#. Label of the page_blocks (Table) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Page Building Blocks"
-msgstr "Blocs de construction de page"
+msgstr ""
#. Label of the page_html (Section Break) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
@@ -18781,7 +18868,7 @@ msgstr ""
#. Label of the page_name (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page Name"
-msgstr "Nom de la Page"
+msgstr ""
#. Label of the page_number (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -18798,7 +18885,7 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Page Settings"
-msgstr "Paramètres de la Page"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
@@ -18821,7 +18908,7 @@ msgstr ""
msgid "Page has expired!"
msgstr "La Page a Expiré!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18837,7 +18924,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18848,7 +18935,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18881,11 +18968,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Champ parent (arbre)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Le champ parent doit être un nom de champ valide"
@@ -18897,9 +18984,9 @@ 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 "Étiquette Parente"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18924,11 +19011,11 @@ msgstr "Parent est le nom du document auquel les données seront ajoutées."
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18947,7 +19034,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Les Participants"
@@ -18961,7 +19048,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr "Passif"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the password_settings (Section Break) field in DocType 'System
@@ -18984,20 +19071,20 @@ msgstr "Passif"
msgid "Password"
msgstr "Mot de Passe"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Réinitialisation du Mot de Passe"
#. Label of the password_reset_limit (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Password Reset Link Generation Limit"
-msgstr "Limite de génération de lien de réinitialisation de mot de passe"
+msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -19008,7 +19095,7 @@ msgstr "Le mot de passe a été changé avec succès."
#. Label of the password (Password) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Password for Base DN"
-msgstr "Mot de Passe pour la Base DN"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
@@ -19026,11 +19113,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -19042,7 +19129,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -19063,7 +19150,7 @@ msgstr "Coller"
#: frappe/core/doctype/package_release/package_release.json
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch"
-msgstr "Correctif"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/patch_log/patch_log.json
@@ -19091,20 +19178,20 @@ msgstr "Chemin"
#. 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 "Chemin d'accès au fichier de certificats de certification"
+msgstr ""
#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr "Chemin d'accès au certificat de serveur"
+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 "Chemin vers le fichier de clé privée"
+msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19138,7 +19225,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr "Validation en attente"
+msgstr ""
#. Label of the pending_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19155,7 +19242,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Verification"
-msgstr "En attente de vérification"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -19169,7 +19256,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "Pourcentage"
+msgstr ""
#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
#. Report'
@@ -19182,22 +19269,22 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Perm Level"
-msgstr "Niveau d'Autorisation"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "Annuler de Manière Permanente {0} ?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "Valider de Manière Permanente {0} ?"
@@ -19205,7 +19292,11 @@ msgstr "Valider de Manière Permanente {0} ?"
msgid "Permanently delete {0}?"
msgstr "Supprimer de Manière Permanente {0} ?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Erreur d'autorisation"
@@ -19215,12 +19306,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Niveau d'Autorisation"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19229,11 +19320,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19242,7 +19328,7 @@ 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 "Règles d'Autorisation"
+msgstr ""
#. Label of the permission_type (Select) field in DocType 'Permission
#. Inspector'
@@ -19264,7 +19350,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19275,13 +19360,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Autorisations"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19293,11 +19377,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19321,7 +19405,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Personnel"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -19365,27 +19449,27 @@ msgstr ""
#. Label of the phone_no (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Phone No."
-msgstr "N° de Téléphone."
+msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Choisir des Colonnes"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr "Tarte"
+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 "Code Postal"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -19413,7 +19497,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Plant"
-msgstr "Usine"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
@@ -19431,7 +19515,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Veuillez définir le graphique"
@@ -19447,7 +19531,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:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Veuillez demander à votre administrateur de vérifier votre inscription"
@@ -19455,11 +19539,11 @@ msgstr "Veuillez demander à votre administrateur de vérifier votre inscription
msgid "Please attach a file first."
msgstr "Veuillez d’abord joindre un fichier."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19471,11 +19555,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Veuillez vérifier les valeurs de filtre définies pour le tableau de bord: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
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:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Veuillez vérifier votre email pour validation"
@@ -19507,7 +19591,7 @@ msgstr "Veuillez cliquer sur le lien suivant pour définir votre nouveau mot de
msgid "Please confirm your action to {0} this document."
msgstr "Veuillez confirmer votre action sur {0} ce document."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19537,10 +19621,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19553,7 +19637,7 @@ msgstr "S'il vous plaît activer les pop-ups dans votre navigateur"
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Veuillez vous assurer que votre profil a une adresse email"
@@ -19627,15 +19711,15 @@ 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:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Veuillez actualiser pour obtenir la dernière version du document."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Veuillez enregistrer avant de joindre une pièce."
@@ -19651,7 +19735,7 @@ msgstr "Veuillez enregistrer le document avant de retirer l’affectation"
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Veuillez d’abord enregistrer le rapport"
@@ -19671,7 +19755,7 @@ 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:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19679,7 +19763,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Veuillez sélectionner un code pays pour le champ {1}."
@@ -19729,11 +19813,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr "Veuillez définir une Adresse Email"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
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:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19741,7 +19825,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr "Veuillez définir la valeur des filtres dans le Tableau des Filtres de Rapport."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19761,7 +19845,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:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19773,7 +19857,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19801,7 +19885,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr "Veuillez indiquer quel champ de valeur doit être vérifiée"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Veuillez réessayer"
@@ -19862,7 +19946,7 @@ msgstr ""
#. Label of the menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Portal Menu"
-msgstr "Menu Portail"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
@@ -19920,13 +20004,13 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr "Précision"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "La précision doit être comprise entre 1 et 6"
@@ -19941,12 +20025,12 @@ msgstr ""
#. Label of the is_primary_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Billing Address"
-msgstr "Adresse de Facturation Principale"
+msgstr ""
#. Label of the is_shipping_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Shipping Address"
-msgstr "Adresse de Livraison Principale"
+msgstr ""
#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
@@ -19954,7 +20038,7 @@ msgstr "Adresse de Livraison Principale"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr "Préfixe"
+msgstr ""
#. Name of a DocType
#. Label of the prepared_report (Check) field in DocType 'Report'
@@ -19978,11 +20062,11 @@ msgstr "Utilisateur du rapport préparé"
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Rapport de préparation"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19990,7 +20074,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Appuyez sur Entrée pour enregistrer"
@@ -20008,19 +20092,19 @@ msgstr "Appuyez sur Entrée pour enregistrer"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
#. Label of the preview_html (HTML) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr "Aperçu HTML"
+msgstr ""
#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr "Message d'aperçu"
+msgstr ""
#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
@@ -20052,16 +20136,16 @@ msgstr ""
msgid "Previous"
msgstr "Précedent"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Précedent"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20075,7 +20159,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Primary"
-msgstr "Primaire"
+msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:27
msgid "Primary Address"
@@ -20084,7 +20168,7 @@ msgstr "Adresse principale"
#. Label of the primary_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Primary Color"
-msgstr "Couleur primaire"
+msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:23
msgid "Primary Contact"
@@ -20114,19 +20198,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20144,8 +20228,9 @@ msgstr "Imprimer des documents"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20182,14 +20267,14 @@ 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 "Aide pour le Format d'Impression"
+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 "Type de Format d'Impression"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20210,7 +20295,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide"
-msgstr "Cacher à l'Impression"
+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'
@@ -20220,13 +20305,13 @@ msgstr "Cacher à l'Impression"
#: 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 "Cacher à l’Impression si Aucune Valeur"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Langue d’Impression"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Imprimer Envoyé à l'imprimante!"
@@ -20234,13 +20319,13 @@ msgstr "Imprimer Envoyé à l'imprimante!"
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "Serveur d'imprimante"
+msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Paramètres d'impression"
@@ -20257,12 +20342,12 @@ 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 "Nom du Style d'Impression"
+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 "Aperçu Style d'Impression"
+msgstr ""
#. Label of the print_width (Data) field in DocType 'DocField'
#. Label of the print_width (Data) field in DocType 'Custom Field'
@@ -20271,28 +20356,28 @@ msgstr "Aperçu Style d'Impression"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr "Largeur d'Impression"
+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 "Imprimer la Largeur du champ, si le champ est une colonne dans une table"
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "Imprimer avec en-tête"
+msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Imprimante"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Cartographie d'imprimante"
@@ -20300,17 +20385,17 @@ msgstr "Cartographie d'imprimante"
#. Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "Nom de l'imprimante"
+msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Paramètres de l'imprimante"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "L'impression a échoué"
@@ -20353,13 +20438,13 @@ msgstr ""
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "ProTip: Ajouter Reference: {{ reference_doctype }} {{ reference_name }} envoyer référence du document"
+msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Continuer malgré tout"
@@ -20399,9 +20484,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20413,7 +20498,7 @@ 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 "La propriété dépend"
+msgstr ""
#. Name of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -20428,7 +20513,7 @@ msgstr ""
#. Label of the property_type (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr "Type de Propriété"
+msgstr ""
#. Label of the protect_attached_files (Check) field in DocType 'DocType'
#. Label of the protect_attached_files (Check) field in DocType 'Customize
@@ -20453,7 +20538,7 @@ msgstr ""
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr "Fournisseur"
+msgstr ""
#. Label of the provider_name (Data) field in DocType 'Connected App'
#. Label of the provider_name (Data) field in DocType 'Social Login Key'
@@ -20462,7 +20547,7 @@ msgstr "Fournisseur"
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Provider Name"
-msgstr "Nom du fournisseur"
+msgstr ""
#. Option for the 'Event Type' (Select) field in DocType 'Event'
#. Label of the public (Check) field in DocType 'Note'
@@ -20471,7 +20556,7 @@ msgstr "Nom du fournisseur"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr ""
@@ -20532,23 +20617,23 @@ msgstr ""
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr "Tirez de Google Agenda"
+msgstr ""
#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr "Tirez de Google Contacts"
+msgstr ""
#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr "Tiré de Google Agenda"
+msgstr ""
#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr "Tiré de Google Contacts"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.js:209
msgid "Pulling emails..."
@@ -20594,7 +20679,7 @@ msgstr ""
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr "Push to Google Agenda"
+msgstr ""
#. Label of the push_to_google_contacts (Check) field in DocType 'Google
#. Contacts'
@@ -20621,7 +20706,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:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20642,18 +20727,18 @@ msgstr ""
#: frappe/core/doctype/recorder_query/recorder_query.json
#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr "Requête"
+msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr "Requête / Script"
+msgstr ""
#. Label of the query_options (Small Text) field in DocType 'Contact Us
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Query Options"
-msgstr "Options de Requête"
+msgstr ""
#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
@@ -20683,7 +20768,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20704,7 +20789,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "La Queue doit être parmi {0}"
@@ -20745,7 +20830,7 @@ msgstr "En file d'attente pour la sauvegarde. Vous recevrez un courriel avec
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20780,7 +20865,7 @@ msgstr ""
#. 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "RAW Information Log"
-msgstr "Journal d'informations RAW"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/rq_job/rq_job.json
@@ -20835,7 +20920,16 @@ msgstr "Commandes brutes"
#. Label of the raw (Code) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Raw Email"
-msgstr "Email Brut"
+msgstr ""
+
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
@@ -20843,9 +20937,9 @@ msgstr "Email Brut"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Raw Printing"
-msgstr "Impression brute"
+msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20863,7 +20957,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20874,11 +20968,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20908,14 +21003,14 @@ msgstr "Lecture Seule"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Read Only Depends On"
-msgstr "La lecture seule dépend de"
+msgstr ""
#. Label of the read_only_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20923,13 +21018,13 @@ msgstr ""
#. Label of the read_by_recipient (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient"
-msgstr "Lu par le destinataire"
+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 "Lu par le destinataire sur"
+msgstr ""
#: frappe/desk/doctype/note/note.js:10
msgid "Read mode"
@@ -20955,7 +21050,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Reconstruire"
@@ -20980,24 +21075,24 @@ msgstr ""
#. 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr "Récepteur par champ de document"
+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 "Destinataire par rôle"
+msgstr ""
#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr "Paramètre Récepteur"
+msgstr ""
#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
msgstr "Les dernières années sont faciles à deviner."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -21006,7 +21101,7 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr "Destinataire"
+msgstr ""
#. Label of the recipient_account_field (Data) field in DocType 'DocType'
#. Label of the recipient_account_field (Data) field in DocType 'Customize
@@ -21019,7 +21114,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr "Destinataire Désinscrit"
+msgstr ""
#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
@@ -21027,7 +21122,7 @@ msgstr "Destinataire Désinscrit"
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr "Destinataires"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/recorder/recorder.json
@@ -21048,7 +21143,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21079,19 +21174,19 @@ msgstr ""
#. DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr "URI de Redirection Lié au Code Auth"
+msgstr ""
#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Redirect URIs"
-msgstr "URIs de Redirection"
+msgstr ""
#. Label of the redirect_url (Small Text) field in DocType 'User'
#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
#: frappe/core/doctype/user/user.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr "URL de Redirection"
+msgstr ""
#. Description of the 'Default App' (Select) field in DocType 'System Settings'
#. Description of the 'Default App' (Select) field in DocType 'User'
@@ -21114,19 +21209,19 @@ 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:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Refaire l'action"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Refaire l'action précédente"
#. Label of the ref_doctype (Link) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Ref DocType"
-msgstr "Doctype de Réf."
+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."
@@ -21172,14 +21267,14 @@ msgstr ""
#. Label of the reference_name (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr "Référence DocName"
+msgstr ""
#. Label of the reference_doctype (Link) field in DocType 'Error Log'
#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/error_log/error_log.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr "Référence DocType"
+msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
@@ -21191,7 +21286,7 @@ msgstr "DocType de la Référence et le Nom de la Référence sont nécessaires"
#: frappe/core/doctype/submission_queue/submission_queue.json
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr "DocName de la Référence"
+msgstr ""
#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
@@ -21302,7 +21397,7 @@ msgstr ""
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/communication/communication.json
msgid "Reference Owner"
-msgstr "Responsable de la Référence"
+msgstr ""
#. Label of the reference_report (Data) field in DocType 'Report'
#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
@@ -21311,19 +21406,19 @@ msgstr "Responsable de la Référence"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr "Rapport de référence"
+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 "Type de référence"
+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 "Nom de la Référence"
+msgstr ""
#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
@@ -21335,12 +21430,12 @@ msgstr "Référence : {0} {1}"
msgid "Referrer"
msgstr "Référent"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21355,9 +21450,9 @@ msgstr "Rafraîchir tout"
#. 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 "Actualiser Google Sheet"
+msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21370,9 +21465,9 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr "Jeton de Rafraîchissement"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21383,7 +21478,7 @@ msgstr ""
msgid "Refreshing..."
msgstr "Actualisation..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Enregistré mais Désactivé"
@@ -21427,12 +21522,10 @@ msgstr "Communication de Reconnection"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Relinked"
-msgstr "Reconnecté"
+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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Recharger"
@@ -21444,7 +21537,7 @@ msgstr "Recharger le fichier"
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21455,7 +21548,7 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr "Se Souvenir de la Dernière Valeur Sélectionnée"
+msgstr ""
#. Label of the remind_at (Datetime) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
@@ -21463,7 +21556,7 @@ msgstr "Se Souvenir de la Dernière Valeur Sélectionnée"
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Me le rappeler"
@@ -21543,9 +21636,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21573,7 +21666,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Répéter"
@@ -21585,17 +21678,17 @@ msgstr ""
#. Label of the repeat_on (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr "Répéter Le"
+msgstr ""
#. Label of the repeat_till (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr "Répéter Jusqu'au"
+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 "Répéter Chaque"
+msgstr ""
#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -21605,12 +21698,12 @@ 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 "Répéter le dernier jour du mois"
+msgstr ""
#. Label of the repeat_this_event (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr "Répéter cet Evénement"
+msgstr ""
#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
@@ -21620,7 +21713,7 @@ msgstr "Les répétitions comme \"aaa\" sont faciles à deviner"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Les répétitions comme \"ABCABCABC\" sont seulement un peu plus difficiles à deviner que \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Répète {0}"
@@ -21683,6 +21776,7 @@ msgstr "Répondre à Tous"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21697,10 +21791,9 @@ msgstr "Répondre à Tous"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21720,7 +21813,7 @@ msgstr "Colonne de rapport"
#. Label of the report_description (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr "Description du rapport"
+msgstr ""
#: frappe/core/doctype/report/report.py:156
msgid "Report Document Error"
@@ -21735,7 +21828,7 @@ msgstr "Filtre de rapport"
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr "Filtres du Rapport"
+msgstr ""
#. Label of the report_hide (Check) field in DocType 'DocField'
#. Label of the report_hide (Check) field in DocType 'Custom Field'
@@ -21744,13 +21837,13 @@ msgstr "Filtres du Rapport"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr "Cacher le Rapport"
+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 "Rapport d'information"
+msgstr ""
#. Name of a role
#: frappe/core/doctype/report/report.json
@@ -21769,7 +21862,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Nom du Rapport"
@@ -21788,7 +21881,7 @@ msgstr ""
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Reference Doctype"
-msgstr "Rapport de référence Doctype"
+msgstr ""
#. Label of the report_type (Select) field in DocType 'Report'
#. Label of the report_type (Data) field in DocType 'Onboarding Step'
@@ -21797,20 +21890,16 @@ msgstr "Rapport de référence Doctype"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr "Type de Rapport"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:204
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Le Rapport ne peut pas être défini pour les types Uniques"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21821,7 +21910,7 @@ msgstr "Le rapport ne contient aucune donnée, veuillez modifier les filtres ou
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Le rapport n'a pas de champs numériques, veuillez changer le nom du rapport"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21833,7 +21922,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Rapport mis à jour avec succès"
@@ -21841,12 +21930,12 @@ 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:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
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."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Rapport {0}"
@@ -21869,7 +21958,7 @@ msgstr "Rapport:"
#. 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21877,7 +21966,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr "Ecrans principaux et Rapports"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Rapports déjà en file d'attente"
@@ -21901,7 +21990,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
-msgstr "Données de la requête"
+msgstr ""
#. Label of the request_description (Data) field in DocType 'Integration
#. Request'
@@ -21934,22 +22023,22 @@ msgstr ""
#. Label of the request_structure (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
-msgstr "Structure de la demande"
+msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "La Requête a Expirée"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
#. Label of the request_url (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request URL"
-msgstr "URL de Demande"
+msgstr ""
#. Title of the request-to-delete-data Web Form
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
@@ -21965,7 +22054,7 @@ msgstr ""
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Require Trusted Certificate"
-msgstr "Exiger un certificat de confiance"
+msgstr ""
#. Description of the 'LDAP search path for Groups' (Data) field in DocType
#. 'LDAP Settings'
@@ -22032,7 +22121,7 @@ msgstr "Réinitialiser Mot de Passe"
#. Label of the reset_password_key (Data) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Reset Password Key"
-msgstr "Réinitialiser le Mot de Passe"
+msgstr ""
#. Label of the reset_password_link_expiry_duration (Duration) field in DocType
#. 'System Settings'
@@ -22058,7 +22147,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22104,7 +22193,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Response"
-msgstr "Réponse"
+msgstr ""
#. Label of the response_headers (Code) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
@@ -22114,9 +22203,9 @@ msgstr ""
#. Label of the response_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
-msgstr "Type de Réponse"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22125,7 +22214,7 @@ msgstr ""
msgid "Restore"
msgstr "Restaurer"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Restaurer les Autorisations Originales"
@@ -22136,7 +22225,7 @@ msgstr "Restaurer les paramètres par défaut ?"
#. Label of the restored (Check) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Restored"
-msgstr "Restauré"
+msgstr ""
#: frappe/core/doctype/deleted_document/deleted_document.py:74
msgid "Restoring Deleted Document"
@@ -22145,7 +22234,12 @@ msgstr "Restauration d'un document supprimé"
#. Label of the restrict_ip (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr "Restreindre l'IP"
+msgstr ""
+
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
@@ -22155,27 +22249,27 @@ msgstr "Restreindre l'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 "Restreindre au domaine"
+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 "Restreindre au Domaine"
+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 "Restreindre la connexion à partir de cette adresse IP uniquement. Plusieurs adresses IP peuvent être ajoutées en les séparant par des virgules. Les adresses IP partielles comme (111.111.111) sont acceptées"
+msgstr ""
#: frappe/public/js/frappe/list/list_view.js:199
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22214,7 +22308,7 @@ msgstr "Révoquer"
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Revoked"
-msgstr "Révoqué"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.js:92
@@ -22222,9 +22316,15 @@ msgstr "Révoqué"
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22250,7 +22350,7 @@ msgstr ""
#. Label of the robots_txt (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Robots.txt"
-msgstr "robots.txt"
+msgstr ""
#. Label of the role (Link) field in DocType 'Custom DocPerm'
#. Label of the roles (Table) field in DocType 'Custom Role'
@@ -22259,8 +22359,6 @@ msgstr "robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22275,8 +22373,7 @@ msgstr "robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22298,7 +22395,7 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr "Nom du Rôle"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Users Workspace
@@ -22320,7 +22417,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:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Gestionnaire d’Autorisations du Rôle"
@@ -22328,11 +22425,9 @@ msgstr "Gestionnaire d’Autorisations du Rôle"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Profil de rôle"
@@ -22352,9 +22447,9 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr "Rôle et Niveau"
+msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22394,20 +22489,20 @@ msgstr ""
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles Assigned"
-msgstr "Rôles Assignés"
+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 "Rôles HTML"
+msgstr ""
#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
#. and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr "Rôles Html"
+msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:7
msgid "Roles can be set for users from their User page."
@@ -22473,20 +22568,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Ligne"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Ligne # {0} :"
@@ -22507,13 +22602,13 @@ msgstr ""
#. Label of the row_name (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Row Name"
-msgstr "Nom de la ligne"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:509
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22532,14 +22627,14 @@ msgstr "Ligne {0} : Il n’est pas autorisé d’activer Autoriser à la Validat
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Lignes Ajoutées"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Lignes Supprimées"
@@ -22554,15 +22649,15 @@ msgstr ""
#. Label of the rule (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr "Règle"
+msgstr ""
#. Label of the section_break_3 (Section Break) field in DocType 'Document
#. Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr "Conditions de règle"
+msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22580,23 +22675,23 @@ msgstr "Règles définissant la transition d'état dans le Workflow."
#. '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 "Règles pour la manière dont les états effectuent des transitions, comme état suivant et quel rôle est autorisé à changer d'état, etc"
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rules with higher priority number will be applied first."
-msgstr "Les règles avec un numéro de priorité plus élevé seront appliquées en premier."
+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 "Exécuter les travaux uniquement quotidiennement si inactif pendant (jours)"
+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 "Les tâches planifiées ne sont exécutées que si la case est cochée."
+msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Minutes"
@@ -22619,7 +22714,7 @@ msgstr ""
#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "SMS Gateway URL"
-msgstr "URL de la Passerelle SMS"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/sms_log/sms_log.json
@@ -22642,7 +22737,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22658,7 +22753,7 @@ msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "SQL Conditions. Example: status=\"Open\""
-msgstr "Conditions SQL. Exemple : status=\"Open\""
+msgstr ""
#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder/recorder.js:85
@@ -22676,14 +22771,14 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "SSL/TLS Mode"
-msgstr "Mode SSL / TLS"
+msgstr ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
@@ -22727,7 +22822,7 @@ msgstr "Champ identique entré plus d'une fois"
#. Label of the sample (HTML) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr "Échantillon"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -22748,22 +22843,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22776,7 +22872,7 @@ msgid "Save Anyway"
msgstr "Économisez quand même"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Enregistrer Sous"
@@ -22784,7 +22880,7 @@ msgstr "Enregistrer Sous"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Enregistrer le rapport"
@@ -22802,20 +22898,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Enregistré"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "En Cours d'Enregistrement"
@@ -22824,11 +22920,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "En Cours d'Enregistrement"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22878,7 +22974,7 @@ 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 "Travail planifié"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
@@ -22921,7 +23017,7 @@ msgstr ""
#: frappe/core/doctype/scheduler_event/scheduler_event.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Scheduler Event"
-msgstr "Événement du planificateur"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.py:124
msgid "Scheduler Inactive"
@@ -22996,12 +23092,12 @@ msgstr "Gestionnaire de scripts"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Script Report"
-msgstr "Rapport de Script"
+msgstr ""
#. Label of the script_type (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Script Type"
-msgstr "Type de Script"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/website_script/website_script.json
@@ -23032,7 +23128,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23050,9 +23146,9 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr "Champs de recherche"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Aide de Recherche"
@@ -23060,7 +23156,7 @@ msgstr "Aide de Recherche"
#. Search Settings'
#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Search Priorities"
-msgstr "Priorités de recherche"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132
msgid "Search Results"
@@ -23070,7 +23166,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Champ de recherche {0} n'est pas valide"
@@ -23087,12 +23183,12 @@ msgstr ""
msgid "Search for anything"
msgstr "Rechercher tout"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Rechercher dans un type de document"
@@ -23138,7 +23234,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 "Saut de section"
+msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:421
msgid "Section Heading"
@@ -23162,17 +23258,17 @@ msgstr ""
#. Label of the sb3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Security Settings"
-msgstr "Paramètres de Sécurité"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Voir tous les rapports passés."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Voir sur le Site"
@@ -23201,12 +23297,12 @@ msgstr "Vu"
#. Label of the seen_by_section (Section Break) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr "Vu Par"
+msgstr ""
#. Label of the seen_by (Table) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr "Table Vu Par"
+msgstr ""
#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -23222,24 +23318,26 @@ msgstr "Table Vu Par"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23255,7 +23353,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Sélectionner des Colonnes"
@@ -23276,7 +23374,7 @@ msgstr "Sélectionnez Dashboard"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Select Date Range"
-msgstr "Sélectionnez la plage de dates"
+msgstr ""
#. Label of the doc_type (Link) field in DocType 'Web Form'
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28
@@ -23288,7 +23386,7 @@ msgstr "Sélectionner le DocType"
#. Label of the reference_doctype (Link) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Select Doctype"
-msgstr "Sélectionnez Doctype"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50
#: frappe/workflow/page/workflow_builder/workflow_builder.js:50
@@ -23299,13 +23397,13 @@ msgstr "Sélectionner le Type de Document"
msgid "Select Document Type or Role to start."
msgstr "Sélectionner le Rôle ou le Type de Document pour démarrer."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Sélectionner un champ"
@@ -23314,7 +23412,7 @@ msgstr "Sélectionner un champ"
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Sélectionnez les champs"
@@ -23323,19 +23421,19 @@ msgstr "Sélectionnez les champs"
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Sélectionnez les champs à insérer"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Sélectionnez les champs à mettre à jour"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Sélectionnez les filtres"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Sélectionnez Google Agenda pour lequel l'événement doit être synchronisé."
@@ -23360,16 +23458,16 @@ msgstr "Choisir la langue"
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Sélectionner Obligatoirement"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Sélectionner Module"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23379,7 +23477,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Sélectionner le Format d'Impression"
@@ -23404,7 +23502,7 @@ msgstr ""
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr "Sélectionner la Transaction"
+msgstr ""
#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
@@ -23415,12 +23513,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Sélectionner une Image de Marque en premier."
@@ -23437,11 +23529,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Sélectionnez un champ d'expéditeur valide pour créer des documents à partir d'un e-mail"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Sélectionnez un champ Objet valide pour créer des documents à partir d'un e-mail"
@@ -23457,7 +23549,7 @@ msgstr ""
#. 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 "Sélectionner une image d'une largeur d'environ 150px avec un fond transparent pour de meilleurs résultats."
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
@@ -23467,13 +23559,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:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
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:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Sélectionner plusieurs éléments de liste"
@@ -23493,7 +23585,7 @@ 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 "Sélectionner le libellé après lequel vous voulez insérer un nouveau champ."
+msgstr ""
#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
@@ -23507,7 +23599,7 @@ msgstr ""
msgid "Select {0}"
msgstr "Sélectionner {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "L'auto-approbation n'est pas autorisée"
@@ -23530,17 +23622,22 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Send After"
-msgstr "Envoyer Après"
+msgstr ""
#. Label of the event (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr "Envoyer une Alerte Sur"
+msgstr ""
+
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr "Envoyer une alerte email"
+msgstr ""
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -23551,7 +23648,7 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr "Envoyer les Pièces Jointes Imprimées de l'Email au format PDF (recommandé)"
+msgstr ""
#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
#. Transition'
@@ -23562,23 +23659,23 @@ 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 "M'envoyer une Copie des E-mails Sortants"
+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 "Envoyer une notification à"
+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 "Envoyer des notifications pour les documents suivis par moi"
+msgstr ""
#. Label of the thread_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr "Envoyer des notifications pour les fils de discussion"
+msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
@@ -23587,9 +23684,9 @@ 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 "Envoyer Imprimer en PDF"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Envoyer Accusé de Réception"
@@ -23597,22 +23694,22 @@ msgstr "Envoyer Accusé de Réception"
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr "Envoyer une notification système"
+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"
+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"
+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 "Envoyer alerte si la date correspond à la valeur de ce champ"
+msgstr ""
#. Description of the 'Reference Datetime' (Select) field in DocType
#. 'Notification'
@@ -23623,18 +23720,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 "Envoyer une alerte si la valeur de ce champ change"
+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 "Envoyer un email de rappel dans la matinée"
+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 "Envoyer jours avant ou après la date de référence"
+msgstr ""
#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
#. Document State'
@@ -23646,26 +23743,26 @@ msgstr ""
#. 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr "Envoyer une demande à cette adresse courriel"
+msgstr ""
#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:220
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "M'Envoyer Une Copie"
#. 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 "Envoyer seulement s'il y a des données"
+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 "Envoyer un message de désabonnement dans l'email"
+msgstr ""
#. Label of the sender (Data) field in DocType 'Event'
#. Label of the sender (Data) field in DocType 'ToDo'
@@ -23691,7 +23788,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Le champ de l'expéditeur doit avoir un e-mail dans les options"
@@ -23710,7 +23807,7 @@ msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Sendgrid"
-msgstr "SendGrid"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23744,7 +23841,7 @@ msgstr ""
#. Label of the read_receipt (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr "Accusé Réception Envoyé"
+msgstr ""
#. Label of the sent_to (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
@@ -23754,17 +23851,17 @@ msgstr ""
#. Label of the sent_or_received (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr "Envoyés ou Reçus"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sent/Received Email"
-msgstr "Email envoyé / reçu"
+msgstr ""
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Separator"
-msgstr "Séparateur"
+msgstr ""
#. Label of the sequence_id (Float) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -23775,7 +23872,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Series List for this Transaction"
-msgstr "Liste des Séries pour cette Transaction"
+msgstr ""
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
@@ -23785,7 +23882,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Séries {0} déjà utilisé dans {1}"
@@ -23793,9 +23890,9 @@ msgstr "Séries {0} déjà utilisé dans {1}"
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
-msgstr "Action du serveur"
+msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Erreur du Serveur"
@@ -23803,7 +23900,7 @@ msgstr "Erreur du Serveur"
#. 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 serveur"
+msgstr ""
#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
@@ -23822,11 +23919,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23854,16 +23955,14 @@ msgstr "Session par défaut"
msgid "Session Default Settings"
msgstr "Paramètres de session par défaut"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Session par défaut"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Session par défaut enregistrée"
@@ -23902,16 +24001,16 @@ msgstr "Définir"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr "Définir la Bannière depuis l'Image"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
-msgstr "Définir les options par défaut pour tous les graphiques de ce tableau de bord (par exemple: "couleurs": ["# d1d8dd", "# ff5858"])"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
#: frappe/desk/doctype/number_card/number_card.js:384
@@ -23930,7 +24029,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:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23942,12 +24041,12 @@ msgstr ""
#. DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
-msgstr "Définir les masques de numerotation pour vos documents"
+msgstr ""
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr "Définir un Nouveau Mot de Passe"
+msgstr ""
#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
@@ -23971,10 +24070,10 @@ msgstr "Gérer les proriétés"
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr "Définir la Propriété Après l'Alerte"
+msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23982,7 +24081,7 @@ 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 "Définir le Rôle Pour"
+msgstr ""
#: frappe/core/doctype/user/user.js:129
#: frappe/core/page/permission_manager/permission_manager.js:72
@@ -23992,14 +24091,14 @@ msgstr "Définir les Autorisations des Utilisateurs"
#. Label of the value (Small Text) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr "Définir la Valeur"
+msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -24030,7 +24129,7 @@ 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 "Définir la précision non standard pour un champ Flottant ou Devise"
+msgstr ""
#. Description of the 'Precision' (Select) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -24103,8 +24202,8 @@ msgstr "Configuration de votre système"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24113,7 +24212,7 @@ msgstr ""
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr "Liste déroulante des paramètres"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -24127,11 +24226,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Configuration"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24139,12 +24238,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Configuration Auto Email"
@@ -24158,7 +24257,7 @@ msgstr "Configuration Terminée"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
-msgstr "Paramétrage des masques de numérotation"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
@@ -24173,13 +24272,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Partager"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Partager Avec"
@@ -24187,14 +24287,14 @@ msgstr "Partager Avec"
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Partager {0} avec"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "Partagé"
+msgstr ""
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
@@ -24203,7 +24303,7 @@ msgstr "Partagé avec les utilisateurs suivants avec accès en lecture: {0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr "livraison"
+msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:31
msgid "Shipping Address"
@@ -24212,7 +24312,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Magasin"
+msgstr ""
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
@@ -24247,16 +24347,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24302,7 +24396,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24315,18 +24409,18 @@ msgstr ""
#. 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 "Afficher la visite du formulaire"
+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 "Montrer l'Erreur Complète et Autoriser l'envoi de Rapports d'Erreurs aux Développeurs"
+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 "Afficher le formulaire complet?"
+msgstr ""
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -24352,9 +24446,9 @@ 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 "Afficher les Sauts de Ligne après Sections"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24366,7 +24460,7 @@ 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 "Afficher les statistiques de pourcentage"
+msgstr ""
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
@@ -24384,7 +24478,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr "Afficher l'aperçu Popup"
+msgstr ""
#. Label of the show_processlist (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
@@ -24411,12 +24505,12 @@ msgstr "Afficher le rapport"
#. 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 "Voir la Section Titres"
+msgstr ""
#. Label of the show_sidebar (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr "Afficher la Barre Latérale"
+msgstr ""
#. Label of the show_social_login_key_as_authorization_server (Check) field in
#. DocType 'OAuth Settings'
@@ -24432,7 +24526,7 @@ msgstr "Voir les étiquettes"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr "Afficher le Titre"
+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
@@ -24474,7 +24568,7 @@ msgstr "Afficher les week-ends"
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Afficher toutes les Versions"
@@ -24485,7 +24579,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 "Afficher en tant que cc"
+msgstr ""
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24502,12 +24596,12 @@ msgstr ""
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr "Afficher le formulaire complet au lieu d'un modal de saisie rapide"
+msgstr ""
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Afficher la Section Module"
+msgstr ""
#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
#. Login Key'
@@ -24518,7 +24612,7 @@ 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 "Afficher dans le filtre"
+msgstr ""
#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
@@ -24544,7 +24638,7 @@ msgstr ""
#. Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr "Afficher la différence de pourcentage en fonction de cet intervalle de temps"
+msgstr ""
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24554,7 +24648,7 @@ 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 "Afficher le titre dans la fenêtre du navigateur comme "Prefix - titre""
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
msgid "Show {0} List"
@@ -24593,17 +24687,17 @@ msgstr ""
#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr "Articles de la Barre Latérale"
+msgstr ""
#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr "Paramètres de la Barre Latérale"
+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 "Barre Latérale et Commentaires"
+msgstr ""
#. Label of the sign_out (Button) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -24616,7 +24710,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "L'inscription est désactivée"
@@ -24674,7 +24768,7 @@ msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr "Sessions Simultanées"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
@@ -24716,7 +24810,7 @@ msgstr "Sauter"
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
-msgstr "Passer autorisation"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
@@ -24739,7 +24833,7 @@ msgstr "Saut de colonne sans titre"
msgid "Skipping column {0}"
msgstr "Colonne ignorée {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24760,7 +24854,7 @@ msgstr ""
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr "Canal Slack"
+msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
@@ -24777,17 +24871,17 @@ msgstr "URL de Webhook Slack"
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr "Diaporama"
+msgstr ""
#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr "Articles du Diaporama"
+msgstr ""
#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr "Nom du Diaporama"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/website_slideshow/website_slideshow.json
@@ -24814,19 +24908,19 @@ 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 "Petit Texte"
+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 "Plus Petite Valeur Fractionée de la Devise"
+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 "La plus petite unité de fraction de circulation (pièce de monnaie). E.g. 1 centime pour l'EUR et il devrait être saisi 0,01"
+msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Snippet and more variables: {0}"
@@ -24841,7 +24935,7 @@ msgstr "Paramètres de lien social"
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Type"
-msgstr "Type de lien social"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
@@ -24854,12 +24948,12 @@ msgstr "Clé de connexion sociale"
#. Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr "Fournisseur de connexion sociale"
+msgstr ""
#. Label of the social_logins (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr "Connexions sociales"
+msgstr ""
#. Label of the socketio_ping_check (Select) field in DocType 'System Health
#. Report'
@@ -24914,15 +25008,15 @@ msgstr "Quelque chose s'est mal passé"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Quelque chose s'est mal passé pendant la génération de jetons. Cliquez sur {0} pour en générer un nouveau."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Désolé ! Je n'ai pas trouvé ce que vous recherchiez."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Désolé ! Vous n'êtes pas autorisé à consulter cette page."
@@ -24937,7 +25031,7 @@ msgstr ""
#. Label of the sort_field (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr "Champ de Tri"
+msgstr ""
#. Label of the sort_options (Check) field in DocType 'DocField'
#. Label of the sort_options (Check) field in DocType 'Custom Field'
@@ -24951,15 +25045,15 @@ msgstr ""
#. Label of the sort_order (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr "Ordre de Tri"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "Champ de tri {0} doit être un nom de champ valide"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25008,7 +25102,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr "Les Caractères Spéciaux ne sont pas autorisés"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Caractères spéciaux sauf "-", "#", ".", "/", "{{" Et "}}" non autorisés dans les masques de numérotation {0}"
@@ -25047,6 +25141,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25054,6 +25149,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25097,7 +25193,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr "Menu Standard de la Barre Latérale"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:40
msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
@@ -25121,8 +25217,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25140,7 +25236,7 @@ msgstr ""
#. Label of the start_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr "Date de début"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:111
msgid "Start Import"
@@ -25175,7 +25271,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr "Commencé"
+msgstr ""
#. Label of the started_at (Datetime) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -25189,7 +25285,7 @@ msgstr "Démarrage de Frappé ..."
#. Label of the starts_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr "Commence le"
+msgstr ""
#. Label of the state (Data) field in DocType 'Token Cache'
#. Label of the state (Link) field in DocType 'Workflow Document State'
@@ -25213,7 +25309,7 @@ msgstr ""
#: frappe/contacts/doctype/address/address.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr "État / Province"
+msgstr ""
#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
#. Label of the states (Table) field in DocType 'Customize Form'
@@ -25222,12 +25318,12 @@ msgstr "État / Province"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr "États"
+msgstr ""
#. Label of the parameters (Table) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr "Paramètres Statiques"
+msgstr ""
#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
@@ -25244,7 +25340,7 @@ msgstr "Statistiques"
#. 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 "Intervalle de temps des statistiques"
+msgstr ""
#. Label of the status (Select) field in DocType 'Auto Repeat'
#. Label of the status (Select) field in DocType 'Contact'
@@ -25294,7 +25390,7 @@ msgstr "Intervalle de temps des statistiques"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25317,14 +25413,14 @@ msgstr "Statut : {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 "Étape"
+msgstr ""
#. Label of the steps (Table) field in DocType 'Form Tour'
#. Label of the steps (Table) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr "Pas"
+msgstr ""
#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
@@ -25332,7 +25428,7 @@ msgstr "Étapes pour vérifier votre connexion"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25369,7 +25465,7 @@ msgstr ""
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr "Conserve le JSON des dernières versions connues de diverses applications installées. Il est utilisé pour montrer les notes de version."
+msgstr ""
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
@@ -25401,33 +25497,33 @@ msgstr ""
#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr "Paramètres du Style"
+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 "Style représente la couleur du bouton : Succès - Vert, Danger - Rouge, Inverse - Noir, Primaire - Bleu Foncé, Info - Bleu Clair, Avertissement - Orange"
+msgstr ""
#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr "Feuille de style"
+msgstr ""
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr "Sous-monnaie. E.g. : \"Cent\""
+msgstr ""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr "Sous-domaine fourni par erpnext.com"
+msgstr ""
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr "Sous-domaine"
+msgstr ""
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -25446,7 +25542,7 @@ msgstr "Sous-domaine"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25458,9 +25554,9 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr "Champ de sujet"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Le type de champ Objet doit être Données, Texte, Texte long, Petit texte, Éditeur de texte"
@@ -25481,14 +25577,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25516,9 +25612,9 @@ 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 "Validation après importation"
+msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25542,11 +25638,11 @@ msgstr "Valider à la création"
msgid "Submit this document to complete this step."
msgstr "Validez ce document pour terminer cette étape."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Valider ce document pour confirmer"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Valider {0} documents ?"
@@ -25572,14 +25668,14 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Validation"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Validation de {0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Subsidiary"
-msgstr "Filiale"
+msgstr ""
#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25607,12 +25703,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25627,7 +25723,7 @@ msgstr "Action de succès"
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr "Message de Réussite"
+msgstr ""
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
@@ -25637,7 +25733,7 @@ msgstr ""
#. Label of the success_url (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr "URL de Réussite"
+msgstr ""
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -25654,7 +25750,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Transactions réussies"
@@ -25679,7 +25775,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25704,7 +25800,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Nom d'Utilisateur Suggérée : {0}"
@@ -25745,7 +25841,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr "Suspendre l'Envoi"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25758,21 +25854,21 @@ msgstr ""
msgid "Switch To Desk"
msgstr "Passer Au Bureau"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
#. Label of the symbol (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr "Symbole"
+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 "Synchronisation"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
@@ -25798,12 +25894,12 @@ 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 "Synchroniser avec Google Agenda"
+msgstr ""
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr "Synchroniser avec Google Contacts"
+msgstr ""
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
@@ -25827,11 +25923,9 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
-msgstr "Système"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/system_console/system_console.json
@@ -25839,7 +25933,7 @@ msgstr "Système"
msgid "System Console"
msgstr "Console système"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25966,6 +26060,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25980,7 +26075,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26044,23 +26138,28 @@ msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr "Notification système"
+msgstr ""
#. Label of the system_page (Check) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr "Page Système"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+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 "Les gestionnaires de système sont autorisés par défaut"
+msgstr ""
#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
@@ -26072,6 +26171,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26105,9 +26210,9 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Table Break"
-msgstr "Saut de tableau"
+msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26116,14 +26221,14 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
#. Label of the table_html (HTML) field in DocType 'Version'
#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr "HTML de Table"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -26132,9 +26237,9 @@ msgstr "HTML de Table"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr "Tableau MultiSelect"
+msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26142,11 +26247,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Table Mise à Jour"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "La Table {0} ne peut pas être vide"
@@ -26166,17 +26271,17 @@ msgid "Tag Link"
msgstr "Lien tag"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Balises"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Prendre une photo"
@@ -26210,7 +26315,7 @@ msgstr "Membres de l'Équipe"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Heading"
-msgstr "Titre des Membres de l’Équipe"
+msgstr ""
#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
#. Settings'
@@ -26249,18 +26354,18 @@ msgstr ""
#. Label of the template_options (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr "Options de modèle"
+msgstr ""
#. Label of the template_warnings (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr "Avertissements de modèles"
+msgstr ""
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Temporairement désactivé"
@@ -26294,22 +26399,22 @@ msgstr "Dossier_Test"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr "Texte"
+msgstr ""
#. Label of the text_align (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr "Aligner le Texte"
+msgstr ""
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr "Couleur du Texte"
+msgstr ""
#. Label of the text_content (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr "Contenu du Texte"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -26320,7 +26425,7 @@ msgstr "Contenu du Texte"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr "Éditeur de Texte"
+msgstr ""
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
@@ -26356,7 +26461,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr "La répétition automatique de ce document a été désactivée."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "Le format CSV est sensible à la casse"
@@ -26408,7 +26513,7 @@ msgid "The browser API key obtained from the Google Cloud Console under New {{ doc.doctype }} #{{ doc.name }}Nouveau {{ doc.doctype }} #{{ doc.name }}Warning: Customizations from other modules will be excluded.
" +msgstr "Izvezi samo prilagodbe dodijeljene odabranom modulu.Upozorenje: Prilagodbe iz drugih modula bit će isključene.
" + #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json @@ -9843,7 +9953,7 @@ msgstr "Eksportiraj podatke bez ikakvih bilješki u zaglavlju i opisa kolona" msgid "Export without main header" msgstr "Eksportiraj bez glavnog zaglavlja" -#: frappe/public/js/frappe/data_import/data_exporter.js:247 +#: frappe/public/js/frappe/data_import/data_exporter.js:248 msgid "Export {0} records" msgstr "Izvezi {0} zapise" @@ -9883,7 +9993,7 @@ msgstr "Eksterni" #. Label of the external_link (Data) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/views/workspace/workspace.js:440 +#: frappe/public/js/frappe/views/workspace/workspace.js:488 msgid "External Link" msgstr "Eksterna Veza" @@ -9932,12 +10042,17 @@ msgstr "Broj Neuspjelih Poslova" msgid "Failed Jobs" msgstr "Neuspješni Poslovi" +#. Label of a number card in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Failed Login Attempts" +msgstr "Neuspjeli Pokušaji Prijave" + #. 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 "Neuspješne Prijave (posljednjih 30 dana)" -#: frappe/model/workflow.py:362 +#: frappe/model/workflow.py:383 msgid "Failed Transactions" msgstr "Neuspješne Transakcije" @@ -10000,7 +10115,7 @@ msgstr "Generiranje pregleda serije nije uspjelo" msgid "Failed to get method for command {0} with {1}" msgstr "Nije uspjelo preuzimanje metode za komandu {0} sa {1}" -#: frappe/api/v2.py:46 +#: frappe/api/v2.py:61 msgid "Failed to get method {0} with {1}" msgstr "Nije uspjelo preuzimanje metode {0} sa {1}" @@ -10012,7 +10127,7 @@ msgstr "Nije uspjelo preuzimanje informacija o web lokaciji" msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "Uvoz virtuelnog doctypa {} nije uspio, je li prisutna datoteka kontrolera?" -#: frappe/utils/image.py:75 +#: frappe/utils/image.py:70 msgid "Failed to optimize image: {0}" msgstr "Optimizacija slike nije uspjela: {0}" @@ -10028,7 +10143,7 @@ msgstr "Nije uspjelo prikazivanje predmeta: {}" msgid "Failed to request login to Frappe Cloud" msgstr "Zahtjev za prijavu na Frappe Cloud nije uspio" -#: frappe/email/doctype/email_queue/email_queue.py:300 +#: frappe/email/doctype/email_queue/email_queue.py:301 msgid "Failed to send email with subject:" msgstr "Nije uspjelo slanje e-pošte sa predmetom:" @@ -10070,7 +10185,7 @@ msgstr "FavIcon" msgid "Fax" msgstr "Faks" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:51 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:72 msgid "Feedback" msgstr "Povratne Informacije" @@ -10130,8 +10245,8 @@ msgstr "Preuzimanje polja iz {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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1909 +#: frappe/public/js/frappe/views/reports/query_report.js:237 +#: frappe/public/js/frappe/views/reports/query_report.js:1984 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10141,7 +10256,7 @@ msgstr "Polje" msgid "Field \"route\" is mandatory for Web Views" msgstr "Polje \"ruta\" je obavezno za Web Prikaze" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "Polje \"naziv\" je obavezno ako je postavljeno \"Polje Pretrage Web Stranice\"." @@ -10149,7 +10264,7 @@ msgstr "Polje \"naziv\" je obavezno ako je postavljeno \"Polje Pretrage Web Stra msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "Polje \"vrijednost\" je obavezno. Navedi vrijednost koju treba ažurirati" -#: frappe/desk/search.py:255 +#: frappe/desk/search.py:262 msgid "Field{0} not found in {1}"
msgstr "Polje {0} nije pronađeno u {1}"
@@ -10158,7 +10273,7 @@ msgstr "Polje {0} nije pronađeno u {1}"
msgid "Field Description"
msgstr "Opis polja"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Nedostaje Polje"
@@ -10206,7 +10321,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:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "Polje {0} ne postoji na {1}"
@@ -10214,11 +10329,11 @@ msgstr "Polje {0} ne postoji na {1}"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "Polje {0} mora biti virtualno polje kako bi podržalo virtualni doctype."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Polje {0} nije pronađeno."
@@ -10240,7 +10355,7 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti v
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Ime Polja"
@@ -10249,7 +10364,7 @@ msgstr "Ime Polja"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
@@ -10257,7 +10372,7 @@ msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Ime polja je ograničeno na 64 znaka ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Ime polja nije postavljeno za prilagođeno polje"
@@ -10273,7 +10388,7 @@ msgstr "Ime polja {0} pojavljuje se više puta"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Ime polja {0} je u konfliktu sa meta objektom"
@@ -10321,7 +10436,7 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
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"
@@ -10345,7 +10460,7 @@ msgstr "Polja razdvojena zarezom (,) biće uključena u listu „Pretraži po“
msgid "Fieldtype"
msgstr "Tip Polja"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Tip polja se ne može promijeniti iz {0} u {1}"
@@ -10421,12 +10536,12 @@ msgstr "Ime datoteke ne može imati {0}"
msgid "File not attached"
msgstr "Datoteka nije priložena"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Datoteka je prevelika"
@@ -10453,12 +10568,17 @@ msgstr "Datoteke"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filter"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr "Filter Područje"
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10473,11 +10593,11 @@ 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 "Filter metapodaci"
+msgstr "Filter Meta"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Filter Naziv"
@@ -10486,11 +10606,11 @@ msgstr "Filter Naziv"
msgid "Filter Values"
msgstr "Filter Vrijednosti"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "Nedostaje uvjet filtra nakon operatora: {0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr "Polja filtra imaju nevažeću notaciju povratnog naznaku: {0}"
@@ -10509,10 +10629,14 @@ msgid "Filtered Records"
msgstr "Filtrirani Zapisi"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Filtrirano prema \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr "Filtrirano po: {0}."
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10536,7 +10660,7 @@ msgstr "Filtrirano prema \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Filteri"
@@ -10567,10 +10691,6 @@ msgstr "Filtrira JSON"
msgid "Filters Section"
msgstr "Sekcija Filtera"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Primijenjeni filteri za {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filteri spremljeni"
@@ -10588,14 +10708,14 @@ msgstr "Filteri {0}"
msgid "Filters:"
msgstr "Filteri:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Pronađi '{0}' u..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Pronađi {0} u {1}"
@@ -10683,11 +10803,11 @@ msgstr "Decimalna Preciznost"
msgid "Fold"
msgstr "Presavij"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Presavijanje ne može biti na kraju obrasca"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Presavijanje mora doći prije prekida odjeljka"
@@ -10716,12 +10836,12 @@ msgstr "Mapa {0} nije prazna"
msgid "Folio"
msgstr "Folio"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Prati"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Praćen od"
@@ -10729,7 +10849,7 @@ msgstr "Praćen od"
msgid "Following Report Filters have missing values:"
msgstr "Sljedeći Filteri Izvještaja nemaju vrijednosti:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Pratim dokument {0}"
@@ -10737,7 +10857,7 @@ msgstr "Pratim dokument {0}"
msgid "Following fields are missing:"
msgstr "Nedostaju sljedeća polja:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Sljedeća polja imaju nevažeće vrijednosti:"
@@ -10745,7 +10865,7 @@ msgstr "Sljedeća polja imaju nevažeće vrijednosti:"
msgid "Following fields have missing values"
msgstr "Sljedeća polja nemaju vrijednosti"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Sljedeća polja nemaju vrijednosti:"
@@ -10814,7 +10934,7 @@ msgstr "Detalji Podnožja"
msgid "Footer HTML"
msgstr "Podnožje HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "HTML Podnožja postavljen iz priloga {0}"
@@ -10851,7 +10971,7 @@ msgstr "Šablon Podnožja"
msgid "Footer Template Values"
msgstr "Vrijednosti Šablona Podnožja"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "Podnožje možda neće biti vidljivo jer je opcija {0} onemogućena"
@@ -10884,16 +11004,6 @@ msgstr "Za Tip Dokumenta"
msgid "For Example: {} Open"
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
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "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'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10917,20 +11027,16 @@ msgstr "Za Vrijednost"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "Za dinamičnni subjekt koristi Jinja oznake poput ove: {{ doc.name }} Dostavljeno"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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)."
-#: 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 "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 "Na primjer:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Na primjer: Ako želite uključiti ID dokumenta, koristite {0}"
@@ -10958,7 +11064,7 @@ msgstr "Za više adresa, unesi adresu u drugu liniju. npr. test@test.com ⏎ tes
msgid "For updating, you can update only selective columns."
msgstr "Za ažuriranje, možete ažurirati samo selektivne kolone."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Za {0} na nivou {1} u {2} u redu {3}"
@@ -11008,7 +11114,8 @@ msgstr "Zaboravljana Lozinka?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Forma"
@@ -11187,7 +11294,7 @@ msgstr "Petak"
msgid "From"
msgstr "Od"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "Od"
@@ -11208,7 +11315,7 @@ msgstr "Od Datuma"
msgid "From Date Field"
msgstr "Od Datuma"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Od Dokumenta"
@@ -11249,7 +11356,7 @@ msgstr "Pun"
msgid "Full Name"
msgstr "Puno Ime"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Cijela Stranica"
@@ -11262,7 +11369,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funkcija"
@@ -11271,11 +11378,11 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na bijeloj listi."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije naveden"
@@ -11340,11 +11447,11 @@ msgstr "Općenito"
msgid "Generate Keys"
msgstr "Generiši Ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Generiši Novi Izvještaj"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Generiši Nasumičnu Lozinku"
@@ -11354,8 +11461,8 @@ msgstr "Generiši Nasumičnu Lozinku"
msgid "Generate Separate Documents For Each Assignee"
msgstr "Generiši zasebne dokumente za svakog Dodijeljenog"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Generiši URL Praćenja"
@@ -11466,7 +11573,7 @@ msgstr "Globalne Prečice"
msgid "Global Unsubscribe"
msgstr "Globalno Otkazivanje Pretplate"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Idi"
@@ -11526,7 +11633,7 @@ msgstr "Idi na {0} Listu"
msgid "Go to {0} Page"
msgstr "Idi na {0} Stranicu"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Cilj"
@@ -11752,7 +11859,7 @@ 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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "Grupiraj Po mora biti niz"
@@ -11832,6 +11939,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "HTML Uređivač"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr "HTML Poruka"
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11920,7 +12031,7 @@ msgstr "Zaglavlje"
msgid "Header HTML"
msgstr "HTML Zaglavlja"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "HTML Zaglavlja postavljen iz priloga {0}"
@@ -11956,7 +12067,7 @@ msgstr "Skripte Zaglavlja/Podnožja mogu se koristiti za dodavanje dinamičkog p
msgid "Headers"
msgstr "Zaglavlja"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "Zaglavlja moraju biti rječnik"
@@ -11993,7 +12104,7 @@ msgstr "Zdravo,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12048,7 +12159,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Ovdje je vaš URL-a za praćenje"
@@ -12084,9 +12195,9 @@ msgstr "Sakriveno"
msgid "Hidden Fields"
msgstr "Sakrivena Polja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "Skriveni stupci uključuju: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include: {{ otp }} "
msgstr "OTP Rezervirano mjesto treba biti definirano kao {{ otp }} "
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "Postavljanje OTP pomoću OTP Aplikacije nije završeno. Kontaktiraj Administratora."
@@ -18144,7 +18325,7 @@ msgstr "Pomak X"
msgid "Offset Y"
msgstr "Pomak Y"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "Pomak mora biti cijeli broj koji nije negativan"
@@ -18152,7 +18333,7 @@ msgstr "Pomak mora biti cijeli broj koji nije negativan"
msgid "Old Password"
msgstr "Stara Lozinka"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Stari i novi nazivi polja su isti."
@@ -18219,7 +18400,7 @@ msgstr "Na ili Poslije"
msgid "On or Before"
msgstr "Na ili Prije"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "{0}, {1} je napisao:"
@@ -18263,7 +18444,7 @@ msgstr "Introdukcija Završena"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "Nakon što ovo postavite, korisnici će moći pristupiti samo dokumentima (npr. Blog Post) gdje postoji veza (npr. Blogger)."
@@ -18279,11 +18460,11 @@ msgstr "Jednokratna Lozinka (OTP) registracijski kod od {}"
msgid "One of"
msgstr "Jedan od"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Dozvoljeno je samo 200 umetanja u jednom zahtjevu"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Samo Administrator može izbrisati red čekanja e-pošte"
@@ -18304,7 +18485,7 @@ msgstr "Samo Administrator može koristiti Snimač"
msgid "Only Allow Edit For"
msgstr "Dozvoli samo uređivanje za"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Jedine dopuštene opcije za polje podataka su:"
@@ -18327,11 +18508,11 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore"
msgid "Only allow System Managers to upload public files"
msgstr "Dopusti samo Odgovorni Sustava prijenos javnih datoteka"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
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:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Mogu se odbaciti samo nacrti dokumenata"
@@ -18374,7 +18555,7 @@ msgstr "Samo dodjeljeni može izvršiti ovu obavezu."
msgid "Only {0} emailed reports are allowed per user."
msgstr "Dozvoljeni su samo {0} izvještaja poslatih e-poštom po korisniku."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Ups! Nešto je pošlo po zlu."
@@ -18397,8 +18578,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Otvori"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18434,6 +18615,10 @@ msgstr "Otvori Referentni Dokument"
msgid "Open Settings"
msgstr "Otvori Postavke"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr "Otvori Bočnu Traku"
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Aplikacije otvorenog koda za Web"
@@ -18448,7 +18633,7 @@ msgstr "Otvori URL u novoj kartici"
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 "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:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Otvori modul ili alat"
@@ -18460,11 +18645,11 @@ msgstr "Otvori konzolu"
msgid "Open in a new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otvorite stavku liste"
@@ -18479,16 +18664,16 @@ 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Otvori {0}"
@@ -18520,7 +18705,7 @@ msgstr "Operacija"
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr "Operator {0} zahtijeva točno 2 argumenta (lijevi i desni operand)"
@@ -18546,7 +18731,7 @@ msgstr "Opcija 2"
msgid "Option 3"
msgstr "Opcija 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "Opcija {0} za polje {1} nije podređena tabela"
@@ -18580,7 +18765,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan"
msgid "Options"
msgstr "Opcije"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze s opcijama kao 'DocType'"
@@ -18589,7 +18774,7 @@ msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze
msgid "Options Help"
msgstr "Pomoć Opcija"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10"
@@ -18597,7 +18782,7 @@ msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10"
msgid "Options for select. Each option on a new line."
msgstr "Opcije za odabir. Svaka opcija u novom redu."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednosti."
@@ -18605,7 +18790,7 @@ msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednost
msgid "Options is required for field {0} of type {1}"
msgstr "Opcije su potrebne za polje {0} tipa {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Opcije nisu postavljene za polje veze {0}"
@@ -18621,7 +18806,7 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Red"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "Sortiraj Po mora biti niz"
@@ -18641,8 +18826,12 @@ msgstr "Naslov Povijesti Organizacije"
msgid "Orientation"
msgstr "Orijentacija"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr "Original"
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Originalna Vrijednost"
@@ -18717,18 +18906,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF Generisanje u toku"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF Generator"
@@ -18752,7 +18943,7 @@ msgstr "PDF Širina Stranice (u mm)"
msgid "PDF Settings"
msgstr "PDF Postavke"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "PDF Generisanje nije uspjelo"
@@ -18760,11 +18951,11 @@ msgstr "PDF Generisanje nije uspjelo"
msgid "PDF generation failed because of broken image links"
msgstr "PDF Generisanje nije uspjelo zbog neispravnih veza slika"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "PDF Generisanje možda neće raditi kako se očekuje."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "PDF ispis putem \"Direktnog Ispisa\" nije podržano."
@@ -18923,7 +19114,7 @@ msgstr "Širina Stranice (u mm)"
msgid "Page has expired!"
msgstr "Stranica je istekla!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Visina i širina stranice ne mogu biti nula"
@@ -18939,7 +19130,7 @@ 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:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Stranica {0} od {1}"
@@ -18950,7 +19141,7 @@ msgid "Parameter"
msgstr "Parametar"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Nadređeni"
@@ -18983,11 +19174,11 @@ 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:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Nadređeno Polje (Stablo)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Nadređeno Polje mora biti važeće ime polja"
@@ -19001,7 +19192,7 @@ msgstr "Nadređena Ikona"
msgid "Parent Label"
msgstr "Nadređena Oznaka"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "Nedostaje Nadređeni"
@@ -19026,11 +19217,11 @@ msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci."
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:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "Nadređeno polje nije navedeno u {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "Za umetanje podređenog zapisa potrebni su nadređeni tip, nadređeni i nadređeno polje"
@@ -19049,7 +19240,7 @@ msgstr "Djelimičan Uspjeh"
msgid "Partially Sent"
msgstr "Djelimično Poslano"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Učesnici"
@@ -19086,11 +19277,11 @@ msgstr "Pasivno"
msgid "Password"
msgstr "Lozinka"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "E-pošta s lozinkom poslana"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Poništavanje Lozinke"
@@ -19099,7 +19290,7 @@ msgstr "Poništavanje Lozinke"
msgid "Password Reset Link Generation Limit"
msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "Lozinka se ne može filtrirati"
@@ -19128,11 +19319,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:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr "Zahtjevi za lozinku nisu ispunjeni"
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
@@ -19144,7 +19335,7 @@ msgstr "Lozinka postavljena"
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
@@ -19206,7 +19397,7 @@ msgstr "Put do Certifikata Servera"
msgid "Path to private Key File"
msgstr "Put do Datoteke Privatnog Ključa"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "Put {0} nije unutar modula {1}"
@@ -19291,15 +19482,15 @@ msgstr "Nivo Dozvola"
msgid "Permanent"
msgstr "Trajno"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "Trajno Otkaži {0}?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "Trajno Odbaci {0}?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "Trajno Podnesi {0}?"
@@ -19307,7 +19498,11 @@ msgstr "Trajno Podnesi {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno izbriši {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr "Dopuštenje"
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Greška Dozvole"
@@ -19317,12 +19512,12 @@ msgid "Permission Inspector"
msgstr "Inspektor Dozvola"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Nivo Dozvole"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Nivoi Dozvola"
@@ -19331,11 +19526,6 @@ msgstr "Nivoi Dozvola"
msgid "Permission Log"
msgstr "Zapisnik Dozvola"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-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"
@@ -19366,7 +19556,6 @@ msgstr "Tip Dopuštenja '{0}' je rezerviran. Odaberi drugo ime."
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19377,13 +19566,12 @@ msgstr "Tip Dopuštenja '{0}' je rezerviran. Odaberi drugo ime."
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Greška Dozvola"
@@ -19395,11 +19583,11 @@ msgstr "Dozvole se automatski primjenjuju na Standardne Izvještaje i pretrage."
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 "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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Dozvole na nivou 0 su dozvole na nivou dokumenta, tj. primarne su za pristup dokumentu."
@@ -19469,13 +19657,13 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Broj Telefona."
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
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:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Odaberi Kolone"
@@ -19533,7 +19721,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Postavi Grafikon"
@@ -19549,7 +19737,7 @@ msgstr "Dodaj predmet e-pošti"
msgid "Please add a valid comment."
msgstr "Dodaj relevantan komentar."
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Zamoli administratora da potvrdi vašu registraciju"
@@ -19557,11 +19745,11 @@ msgstr "Zamoli administratora da potvrdi vašu registraciju"
msgid "Please attach a file first."
msgstr "Priloži datoteku."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Priloži datoteku slike da postavite HTML za Podnožje."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje."
@@ -19573,11 +19761,11 @@ msgstr "Priloži Applikaciju"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
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:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Provjeri e-poštu za potvrdu"
@@ -19609,7 +19797,7 @@ msgstr "Klikni na sljedeću vezu da postavite novu lozinku"
msgid "Please confirm your action to {0} this document."
msgstr "Potvrdi akciju {0} ovog dokumenta."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju."
@@ -19639,10 +19827,10 @@ msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Omogući iskačuće prozore"
@@ -19655,7 +19843,7 @@ msgstr "Omogući iskačuće prozore u vašem pretraživaču"
msgid "Please enable {} before continuing."
msgstr "Omogući {} prije nego nastavite."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Potvrdi da vaš profil ima adresu e-pošte"
@@ -19729,15 +19917,15 @@ 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:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Osvježi da dobijete najnoviji dokument."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Ukloni mapiranje pisača u Postavkama Pisača i pokušaj ponovo."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Spremi prije prilaganja."
@@ -19753,7 +19941,7 @@ msgstr "Spremi dokument prije uklanjanja dodjele"
msgid "Please save the form before previewing the message"
msgstr "Sačuvaj obrazac prije pregleda poruke"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Prvo spremi izvještaj"
@@ -19773,7 +19961,7 @@ msgstr "Odaberi Tip Entiteta"
msgid "Please select Minimum Password Score"
msgstr "Odaberi Minimalnu Vrijednost Lozinke"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Odaberi X i Y polja"
@@ -19781,7 +19969,7 @@ msgstr "Odaberi X i Y polja"
msgid "Please select a DocType in options before setting filters"
msgstr "Odaberi DocType u opcijama prije postavljanja filtera"
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Odaberi pozivni broj zemlje za polje {1}."
@@ -19831,11 +20019,11 @@ msgstr "Odaberi {0}"
msgid "Please set Email Address"
msgstr "Postavi adresu e-pošte"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
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:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Postavi filtere"
@@ -19843,7 +20031,7 @@ msgstr "Postavi filtere"
msgid "Please set filters value in Report Filter table."
msgstr "Postavi vrijednost filtera u tabeli Filter Izvještaja."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Molimo postavite naziv dokumenta"
@@ -19863,7 +20051,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:462
+#: frappe/core/doctype/user/user.py:465
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"
@@ -19875,7 +20063,7 @@ msgstr "Postavi zadani račun odlazne e-pošte iz Alati > Račun e-pošte"
msgid "Please specify"
msgstr "Navedi"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Navedi važeći nadređeni DocType za {0}"
@@ -19903,7 +20091,7 @@ msgstr "Navedi koje polje datuma i vremena mora biti označeno"
msgid "Please specify which value field must be checked"
msgstr "Navedi koje polje vrijednosti mora biti označeno"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Pokušaj ponovo"
@@ -20024,11 +20212,11 @@ msgstr "Vremenska Oznaka"
msgid "Precision"
msgstr "Preciznost"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "Preciznost ({0}) za {1} ne može biti dulja od njegove duljine ({2})."
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Preciznost bi trebala biti između 1 i 6"
@@ -20080,11 +20268,11 @@ msgstr "Korisnik Pripremljenog Izvještaja"
msgid "Prepared report render failed"
msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Priprema Izvještaja"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Priloži šablon poruci e-pošte"
@@ -20092,7 +20280,7 @@ msgstr "Priloži šablon poruci e-pošte"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Pritisni Alt taster da pokrenete dodatne prečice u Meniju i Bočnoj Traci"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Pritisni Enter da spremite"
@@ -20110,7 +20298,7 @@ msgstr "Pritisni Enter da spremite"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Pregled"
@@ -20154,16 +20342,16 @@ msgstr "Pregled:"
msgid "Previous"
msgstr "Prethodna"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Prethodna"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Prethodni dokument"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Prethodno Podnošenje"
@@ -20216,19 +20404,19 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Ispiši"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Ispiši"
@@ -20246,8 +20434,9 @@ msgstr "Ispiši Dokumente"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20291,7 +20480,7 @@ msgstr "Pomoć Ispis Formata"
msgid "Print Format Type"
msgstr "Tip Ispis Formata"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "Format Ispisa nije pronađen"
@@ -20324,11 +20513,11 @@ msgstr "Sakrij"
msgid "Print Hide If No Value"
msgstr "Sakrij ispis ako nema vrijednost"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Jezik Ispisa"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Ispis Poslan na pisač!"
@@ -20341,8 +20530,8 @@ msgstr "Ispisni Server"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Postavke Ispisa"
@@ -20381,7 +20570,7 @@ msgstr "Ispisna Širina"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "Ispis Širine polja, ako je polje kolona u tabeli"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Ispiši Dokument"
@@ -20390,11 +20579,11 @@ msgstr "Ispiši Dokument"
msgid "Print with letterhead"
msgstr "Ispiši sa Zaglavljem"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Pisač"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Mapiranje Pisača"
@@ -20404,15 +20593,15 @@ msgstr "Mapiranje Pisača"
msgid "Printer Name"
msgstr "Naziv Pisača"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Postavke Pisača"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Mapiranje pisača nije postavljeno."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Neuspješno Ispisivanje"
@@ -20461,7 +20650,7 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Svejedno Nastavi"
@@ -20501,9 +20690,9 @@ msgid "Project"
msgstr "Projekat"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "Svojstvo"
@@ -20573,7 +20762,7 @@ msgstr "Naziv Dostavljača Servisa"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Javno"
@@ -20723,7 +20912,7 @@ msgstr "QR Kod"
msgid "QR Code for Login Verification"
msgstr "QR Kod za Provjeru Prijave"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ Tray neuspješan:"
@@ -20785,7 +20974,7 @@ msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH."
msgid "Queue"
msgstr "Red"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "Red Čekanja Preopterećen"
@@ -20806,7 +20995,7 @@ msgstr "Tip Reda"
msgid "Queue in Background (BETA)"
msgstr "Red u pozadini (BETA)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Red bi trebao biti jedan od {0}"
@@ -20847,7 +21036,7 @@ msgstr "U Redu za Sigurnosno Kopiranje. Primit ćete e-poruku s vezom za preuzim
msgid "Queues"
msgstr "Redovi"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "U redu za Podnošenje {0}"
@@ -20939,6 +21128,15 @@ msgstr "Direktne Naredbe"
msgid "Raw Email"
msgstr "Neobrađena e-pošta"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr "HTML može se koristiti samo s predlošcima e-pošte za koje je označena opcija 'Koristi HTML'. Nastavlja se s e-poštom u običnom tekstu."
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr "HTML e-pošte se prikazuju kao potpuni Jinja predlošci. Inače, e-pošta se omotavaju predloškom standard.html e-pošte, koji umeće brand_logo, zaglavlje i podnožje."
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20947,7 +21145,7 @@ msgstr "Neobrađena e-pošta"
msgid "Raw Printing"
msgstr "Direktno Ispisivanje"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Postavka Direktnog Ispisivanja"
@@ -20965,7 +21163,7 @@ msgstr "Od:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Od: {0}"
@@ -20976,11 +21174,12 @@ msgstr "Od: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21017,7 +21216,7 @@ msgstr "Samo za Čitanje zavisi o"
msgid "Read Only Depends On (JS)"
msgstr "Samo za Čitanje zavisi o (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Samo za čitanje Način"
@@ -21057,7 +21256,7 @@ msgstr "Realno Vrijeme (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Obnovi"
@@ -21099,7 +21298,7 @@ msgstr "Parametar prijemnika"
msgid "Recent years are easy to guess."
msgstr "Lako je pogoditi posljednje godine."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Skorašnji"
@@ -21150,7 +21349,7 @@ msgstr "Predloženi Indeks Snimača"
msgid "Records for following doctypes will be filtered"
msgstr "Zapisi za sljedeće tipove dokumenata bit će filtrirani"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Rekurzivno Preuzimanje Iz"
@@ -21216,12 +21415,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:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Ponovi"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Ponovi posljednju radnju"
@@ -21437,12 +21636,12 @@ msgstr "Referenca: {0} {1}"
msgid "Referrer"
msgstr "Preporučitelj"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21459,7 +21658,7 @@ msgstr "Osvježi Sve"
msgid "Refresh Google Sheet"
msgstr "Osvježite Google Sheet"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "Osvježi Pregled Ispisa"
@@ -21474,7 +21673,7 @@ msgstr "Osvježi Pregled Ispisa"
msgid "Refresh Token"
msgstr "Osvježi Token"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Osvježava se"
@@ -21485,7 +21684,7 @@ msgstr "Osvježava se"
msgid "Refreshing..."
msgstr "Osvježavanje u toku..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Registrovan, ali onemogućen"
@@ -21531,10 +21730,8 @@ msgstr "Ponovo poveži Konverzaciju"
msgid "Relinked"
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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Ponovo Učitaj"
@@ -21546,7 +21743,7 @@ msgstr "Ponovo Učitaj Datoteku"
msgid "Reload List"
msgstr "Ponovno Učitaj Listu"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Ponovno Učitaj Izvještaj"
@@ -21565,7 +21762,7 @@ msgstr "Zapamti Posljednju Odabranu Vrijednost"
msgid "Remind At"
msgstr "Podsjeti"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Podsjeti Me"
@@ -21645,9 +21842,9 @@ msgid "Removed"
msgstr "Uklonjeno"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21675,7 +21872,7 @@ msgstr "Prikaži oznake lijevo i vrijednosti desno u ovom odjeljku"
msgid "Reopen"
msgstr "Ponovo otvori"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Ponovi"
@@ -21722,7 +21919,7 @@ msgstr "Ponavljanja poput \"aaa\" je lako pogoditi"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Ponavljanja poput \"abcabcabc\" samo su malo teža za pogoditi od \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Ponavlja se {0}"
@@ -21785,6 +21982,7 @@ msgstr "Odgovori Svima"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21799,10 +21997,9 @@ msgstr "Odgovori Svima"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Izvještaj"
@@ -21871,7 +22068,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Naziv Izvještaja"
@@ -21905,14 +22102,10 @@ msgstr "Tip izvještaja"
msgid "Report View"
msgstr "Pregled iIvještaja"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Prijavi Grešku"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Izvještaj se ne može postaviti za Singl tipove"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21923,7 +22116,7 @@ msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvj
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Izvještaj je pokrenut, klikni da vidite status"
@@ -21935,7 +22128,7 @@ msgstr "Granica Izvještaja Dostignuta"
msgid "Report timed out."
msgstr "Izvještaj je istekao."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Izvještaj je uspješno ažuriran"
@@ -21943,12 +22136,12 @@ 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:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
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."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Izvještaj {0}"
@@ -21971,7 +22164,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Izvještaji"
@@ -21979,7 +22172,7 @@ msgstr "Izvještaji"
msgid "Reports & Masters"
msgstr "Izvještaji & Masters"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Izvještaji su već u redu čekanja"
@@ -22038,13 +22231,13 @@ msgstr "Metoda Zahtjeva"
msgid "Request Structure"
msgstr "Struktura Zahtjeva"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
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
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Zahtjev Istekao"
@@ -22160,7 +22353,7 @@ msgstr "Vrati na Standard"
msgid "Reset sorting"
msgstr "Poništi Sortiranje"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Vrati na Standard"
@@ -22218,7 +22411,7 @@ msgstr "Zaglavlja Odgovora"
msgid "Response Type"
msgstr "Tip Odgovora"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Ostatak dana"
@@ -22227,7 +22420,7 @@ msgstr "Ostatak dana"
msgid "Restore"
msgstr "Vrati"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Vrati Originalne Dozvole"
@@ -22249,6 +22442,11 @@ msgstr "Vraćanje Izbrisanog Dokumenta u toku"
msgid "Restrict IP"
msgstr "Ograniči IP"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr "Ograniči Uklanjanje"
+
#. 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'
@@ -22276,8 +22474,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Ograničenja"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Rezultat"
@@ -22324,9 +22522,15 @@ msgstr "Opozvano"
msgid "Rich Text"
msgstr "Rich Text"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22361,8 +22565,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22377,8 +22579,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22422,7 +22623,7 @@ msgstr "Dozvole Uloge"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Upravitelj Dozvola Uloge"
@@ -22430,11 +22631,9 @@ msgstr "Upravitelj Dozvola Uloge"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Profil Uloge"
@@ -22456,7 +22655,7 @@ msgstr "Replikacija Uloge"
msgid "Role and Level"
msgstr "Uloga i Nivo"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Uloga je postavljena prema tipu korisnika {0}"
@@ -22575,20 +22774,20 @@ msgstr "Preusmjeravanja Rute"
msgid "Route: Example \"/app\""
msgstr "Ruta: Primjer \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Red"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "Red #"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} na prilagođeni tip dokumenta"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr "Red # {0}: Korisnici koji nisu administratori ne mogu dodati ulogu {1} prilagođenom DocType-u."
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Red #{0}:"
@@ -22615,7 +22814,7 @@ msgstr "Naziv Reda"
msgid "Row Number"
msgstr "Broj Reda"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Vrijednosti Reda Promijenjene"
@@ -22634,14 +22833,14 @@ msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardn
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
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:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Ukonjeni Redovi"
@@ -22664,7 +22863,7 @@ msgstr "Pravilo"
msgid "Rule Conditions"
msgstr "Uslovi Pravila"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
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."
@@ -22744,7 +22943,7 @@ msgstr "SMS Postavke"
msgid "SMS sent successfully"
msgstr "SMS je uspješno poslan"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS nije poslan. Kontaktiraj Administratora."
@@ -22778,7 +22977,7 @@ msgstr "SQL Izlaz"
msgid "SQL Queries"
msgstr "SQL Upiti"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr "SQL funkcije nisu dopuštene kao nizovi znakova u SELECT: {0}. Umjesto toga koristite sintaksu dict-a poput {{'COUNT': '*'}}."
@@ -22850,22 +23049,23 @@ msgstr "Subota"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22878,7 +23078,7 @@ msgid "Save Anyway"
msgstr "Svejedno Spremi"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Spremi Kao"
@@ -22886,7 +23086,7 @@ msgstr "Spremi Kao"
msgid "Save Customizations"
msgstr "Spremi Prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Spremi Izvještaj"
@@ -22904,20 +23104,20 @@ msgid "Save the document."
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:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Spremljeno"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Spremjeni Filteri"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Sprema se"
@@ -22926,11 +23126,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Sprema se"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr "Spremanje Promjena..."
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Spremaju se Prilagođavanja..."
@@ -23134,7 +23334,7 @@ msgstr "Skripte"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23154,7 +23354,7 @@ msgstr "Traka Pretrage"
msgid "Search Fields"
msgstr "Polja Pretrage"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Pomoć Pretrage"
@@ -23172,7 +23372,7 @@ msgstr "Rezultati Pretrage"
msgid "Search by filename or extension"
msgstr "Pretraga po imenu datoteke ili ekstenziji"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Polje za pretragu {0} nije važeće"
@@ -23189,12 +23389,12 @@ msgstr "Tipove Polja za Pretragu..."
msgid "Search for anything"
msgstr "Traži bilo šta"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "Traži {0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Traži u tipu dokumenta"
@@ -23266,15 +23466,15 @@ msgstr "Sekcija mora imati najmanje jednu kolonu"
msgid "Security Settings"
msgstr "Sigurnosne Postavke"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Pogledaj Sve Aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izvještaje."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Vidi na web stranici"
@@ -23324,24 +23524,26 @@ msgstr "Viđeno prema Tabeli"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Odaberi"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Odaberi sve"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23357,7 +23559,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Odaberi Kolone"
@@ -23401,13 +23603,13 @@ msgstr "Odaberi vrstu dokumenta"
msgid "Select Document Type or Role to start."
msgstr "Odaberi Tip Dokumenta ili Ulogu."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Odaberi Polje"
@@ -23416,7 +23618,7 @@ msgstr "Odaberi Polje"
msgid "Select Field..."
msgstr "Odaberi Polje..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Odaberi Polja"
@@ -23425,19 +23627,19 @@ msgstr "Odaberi Polja"
msgid "Select Fields (Up to {0})"
msgstr "Odaberite polja (do {0})"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Odaberite Polja za Umetanje"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Odaberi Polja za Ažuriranje"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Odaberi Filtere"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Odaberi Google Kalendar s kojim događaj treba sinhronizirati."
@@ -23462,16 +23664,16 @@ msgstr "Odaberi Jezik"
msgid "Select List View"
msgstr "Odaberi Prikaz Liste"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Odaberi Obavezno"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Odaberi Modul"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Odaberi Mrežni Pisač"
@@ -23481,7 +23683,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Odaberi Ispis Format"
@@ -23517,12 +23719,6 @@ msgstr "Odaberi Radni Tok"
msgid "Select Workspace"
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 "Odaberi Radni Prostor"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Prvo odaberi sliku Marke."
@@ -23539,11 +23735,11 @@ msgstr "Odaberi polje da biste uredili njegova svojstva."
msgid "Select a group {0} first."
msgstr "Odaberi grupu {0}."
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Odaberi važeće Polje Pošiljatelja za kreiranje dokumenata iz e-pošte"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Odaberi važeće Polje Predmeta za kreiranje dokumenata iz e-pošte"
@@ -23569,13 +23765,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:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Odaberi Artikal Liste"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Odaberi artikle više listi"
@@ -23609,7 +23805,7 @@ msgstr "Odaberi dvije verzije da vidite razliku."
msgid "Select {0}"
msgstr "Odaberi {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Samoodobrenje nije dozvoljeno"
@@ -23639,6 +23835,11 @@ msgstr "Pošalji Poslije"
msgid "Send Alert On"
msgstr "Pošalji Upozorenje"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr "Pošalji kao HTML"
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23691,7 +23892,7 @@ msgstr "Pošalji Sad"
msgid "Send Print as PDF"
msgstr "Pošalji Ispis kao PDF"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Pošalji Potvrdu o Čitanju"
@@ -23754,7 +23955,7 @@ msgstr "Pošaljite upite na ovu adresu e-pošte"
msgid "Send login link"
msgstr "Pošalji Vezu Prijave"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Pošalji Mi Kopiju"
@@ -23793,7 +23994,7 @@ msgstr "E-pošta Pošiljatelja"
msgid "Sender Email Field"
msgstr "Polje e-pošte Pošiljatelja"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Polje Pošiljatelja treba da ima opciju E-pošta"
@@ -23887,7 +24088,7 @@ msgstr "Serija Imenovanja Ažurirana za {}"
msgid "Series counter for {} updated to {} successfully"
msgstr "Brojač Serija Imenovanja za {} uspješno je ažuriran na {}"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Serija Imenovanja {0} se već koristi u {1}"
@@ -23897,7 +24098,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}"
msgid "Server Action"
msgstr "Radnja Servera"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Greška Servera"
@@ -23924,11 +24125,15 @@ msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfi
msgid "Server Scripts feature is not available on this site."
msgstr "Funkcija server skripti nije dostupna na ovoj stranici."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr "Pogreška servera tijekom prijenosa. Datoteka je možda oštećena."
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "Poslužitelj nije uspio obraditi ovaj zahtjev zbog istovremenog konfliktnog zahtjeva. Pokušajte ponovno."
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "Server je bio prezauzet za obradu ovog zahtjeva. Pokušaj ponovo."
@@ -23956,16 +24161,14 @@ msgstr "Standard Sesija"
msgid "Session Default Settings"
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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Standard Sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
@@ -24006,7 +24209,7 @@ msgstr "Postavi"
msgid "Set Banner from Image"
msgstr "Postavi baner sa slike"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Potavi grafikon"
@@ -24032,7 +24235,7 @@ msgstr "Postavi Filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Postavi Nivo"
@@ -24075,8 +24278,8 @@ msgstr "Postavi svojstva"
msgid "Set Property After Alert"
msgstr "Postavi svojstvo nakon upozorenja"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Postavi Količinu"
@@ -24096,12 +24299,12 @@ msgstr "Postavi Korisničke Dozvole"
msgid "Set Value"
msgstr "Postavi Vrijednost"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Postavi sve privatno"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Postavi sve javno"
@@ -24229,8 +24432,8 @@ msgstr "Postavljanje vašeg sistema"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24253,11 +24456,11 @@ msgstr "Postavke za O nama Stranicu"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Postavljanja"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Postavljanje> Prilagodi Formu"
@@ -24265,12 +24468,12 @@ msgstr "Postavljanje> Prilagodi Formu"
msgid "Setup > User"
msgstr "Postavljanje> Korisnik"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Postavljanje > Korisničke Dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Postavljanje Automatske e-pošte"
@@ -24299,13 +24502,14 @@ msgstr "Postavljanje nije uspjelo"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Dijeli"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Podijeli sa"
@@ -24313,7 +24517,7 @@ msgstr "Podijeli sa"
msgid "Share this document with"
msgstr "Podijeli ovaj dokument sa"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Podijeli {0} sa"
@@ -24373,16 +24577,10 @@ msgstr "Prikaži apsolutni datum i vrijeme na vremenskoj traci"
msgid "Show Absolute Values"
msgstr "Prikaži Apsolutne Vrijednosti"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Prikaži Sve"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr "Prikaži Ikone Aplikacija kao Mapu"
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24428,7 +24626,7 @@ msgstr "Prikaži Grešku"
msgid "Show External Link Warning"
msgstr "Prikaži upozorenje o vanjskoj poveznici"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)"
@@ -24480,7 +24678,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:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Prikaži Veze"
@@ -24600,7 +24798,7 @@ msgstr "Prikaži Vikende"
msgid "Show account deletion link in My Account page"
msgstr "Prikaži vezu za brisanje računa na stranici Moj Račun"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Prikaži sve Verzije"
@@ -24742,7 +24940,7 @@ msgstr "Odjava"
msgid "Sign Up and Confirmation"
msgstr "Prijava i Potvrda"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Prijava je onemogućena"
@@ -24865,7 +25063,7 @@ msgstr "Preskače se Kolona bez Naziva"
msgid "Skipping column {0}"
msgstr "Preskače se kolona {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "Preskače se sinhronizacija fiksiranja za tip dokumenta {0} iz datoteke {1}"
@@ -25040,15 +25238,15 @@ msgstr "Nešto je pošlo po zlu"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
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
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Nešto je pošlo po zlu."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Izvinite! Nije pronađeno ono što tražite."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Izvinite! Nije vam dozvoljeno da vidite ovu stranicu."
@@ -25079,13 +25277,13 @@ msgstr "Opcije Sortiranja"
msgid "Sort Order"
msgstr "Redoslijed Sortiranja"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "Polje sortiranja {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25134,7 +25332,7 @@ msgstr "Pokreće radnje u pozadinskom poslu"
msgid "Special Characters are not allowed"
msgstr "Posebni Znakovi nisu dozvoljeni"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Posebni Znakovi osim '-', '#', '.', '/', '{{' and '}}' nisu dozvoljeni u seriji imenovanja {0}"
@@ -25173,6 +25371,7 @@ msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25180,6 +25379,7 @@ msgstr "Stack Trace"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25247,8 +25447,8 @@ 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:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Počni"
@@ -25420,7 +25620,7 @@ msgstr "Vremenski Interval Statistike"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25458,7 +25658,7 @@ msgstr "Koraci za provjeru vaše prijave"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "Sticky"
@@ -25572,7 +25772,7 @@ msgstr "Poddomena"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Predmet"
@@ -25586,7 +25786,7 @@ msgstr "Predmet"
msgid "Subject Field"
msgstr "Polje Predmeta"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Tip Polja Predmeta treba da bude Podaci, Tekst, Dugi Tekst, Mali Tekst, Uređivač Teksta"
@@ -25607,14 +25807,14 @@ msgstr "Red Podnošenja"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Rezerviši"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Rezerviši"
@@ -25644,7 +25844,7 @@ msgstr "Potvrdi"
msgid "Submit After Import"
msgstr "Rezerviši Nakon Uvoza"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Prijavi Slučaj"
@@ -25668,11 +25868,11 @@ msgstr "Rezerviši pri Kreiranju"
msgid "Submit this document to complete this step."
msgstr "Pošalji ovaj dokument da dovršite ovaj korak."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Pošalji ovaj dokument da potvrdite"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Pošalji {0} dokumenata?"
@@ -25698,7 +25898,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Rezerviše se"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Pošalji {0}"
@@ -25733,12 +25933,12 @@ msgstr "Suptilno"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25780,7 +25980,7 @@ msgstr "Naziv Uspjeha"
msgid "Successful Job Count"
msgstr "Broj Uspješnih Poslova"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Uspješne Transakcije"
@@ -25805,7 +26005,7 @@ msgstr "Uspješno uvezeno {0} od {1} zapisa."
msgid "Successfully reset onboarding status for all users."
msgstr "Uspješno poništen status introdukcije za sve korisnike."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr "Odjavljen/a"
@@ -25830,7 +26030,7 @@ msgstr "Predloži Optimizacije"
msgid "Suggested Indexes"
msgstr "Predloženi Indeksi"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Predloženo Korisničko Ime: {0}"
@@ -25871,7 +26071,7 @@ msgstr "Nedjelja"
msgid "Suspend Sending"
msgstr "Obustavi Slanje"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Promijeni Kameru"
@@ -25884,7 +26084,7 @@ msgstr "Promijeni Temu"
msgid "Switch To Desk"
msgstr "Promjeni na Radnu Površinu"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Mijenja se Kamera"
@@ -25953,9 +26153,7 @@ msgid "Syntax Error"
msgstr "Greška Sintakse"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "Sistem"
@@ -25965,7 +26163,7 @@ msgstr "Sistem"
msgid "System Console"
msgstr "Sistemska Konzola"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "Sistemski Generisana Polja ne mogu se preimenovati"
@@ -26092,6 +26290,7 @@ msgstr "Sistemski Zapisnici"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26106,7 +26305,6 @@ msgstr "Sistemski Zapisnici"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26182,6 +26380,11 @@ msgstr "Sistemska Stranica"
msgid "System Settings"
msgstr "Postavke Sistema"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr "Korisnici Sustava"
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26198,6 +26401,12 @@ msgstr "T"
msgid "TOS URI"
msgstr "URI Uvjeta Pružanja Usluge"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+msgstr "Kartica"
+
#. 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'
@@ -26233,7 +26442,7 @@ msgstr "Tabela"
msgid "Table Break"
msgstr "Prijelom Tabele"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Polje Tabele"
@@ -26242,7 +26451,7 @@ msgstr "Polje Tabele"
msgid "Table Fieldname"
msgstr "Naziv Polja Tabele"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Nedostaje Naziv Polja Tabele"
@@ -26260,7 +26469,7 @@ msgstr "HTML Tabele"
msgid "Table MultiSelect"
msgstr "Višestruki Odabir Tabele"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr "Višestruki odabir tablice zahtijeva tablicu s barem jednim poljem za poveznicu, ali nijedno nije pronađeno u {0}"
@@ -26268,11 +26477,11 @@ msgstr "Višestruki odabir tablice zahtijeva tablicu s barem jednim poljem za po
msgid "Table Trimmed"
msgstr "Tabela Optimizirana"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Tabela Ažurirana"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -26292,17 +26501,17 @@ msgid "Tag Link"
msgstr "Veza Oznake"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Oznake"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Uslikaj"
@@ -26386,7 +26595,7 @@ msgstr "Šablon Upozorenja"
msgid "Templates"
msgstr "Šabloni"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Privremeno Onemogućeno"
@@ -26484,7 +26693,7 @@ msgstr "Hvala"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Automatsko Ponavljanje za ovaj dokument je onemogućeno."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "CSV format razlikuje velika i mala slova"
@@ -26540,7 +26749,7 @@ msgstr "API ključ pretraživača preuzet sa Google Cloud Console pod "
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr "Promjene su vraćene."
@@ -26556,7 +26765,7 @@ msgstr "Komentar ne može biti prazan"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
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:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Prikazani broj je procijenjen. Klikni ovdje da vidite tačan broj."
@@ -26582,11 +26791,15 @@ msgstr "Dokument je dodijeljen {0}"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "Odabrani tip dokumenta je podređena tabela, tako da je obavezan tip nadređenog dokumenta."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr "Gumb e-pošte omogućen je za korisnika u dokumentu."
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr "Polje {0} u {1} ne dopušta ignoriranje korisničkih dopuštenja"
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr "Polje {0} u {1} povezuje se s {2}, a ne s {3}"
@@ -26653,6 +26866,10 @@ msgstr "Broj sekundi do isteka zahtjeva"
msgid "The password of your account has expired."
msgstr "Lozinka vašeg računa je istekla."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+msgstr "Gumb ispisa je omogućen za korisnika u dokumentu."
+
#: 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 "Proces brisanja {0} podataka povezanih sa {1} je pokrenut."
@@ -26670,15 +26887,15 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "Izvješće koje ste zatražili je generirano.
Kliknite ovdje za preuzimanje:
{0}
Ova poveznica isteći će za {1} sati."
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "Veza za poništavanje lozinke je istekla"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
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:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26690,7 +26907,7 @@ msgstr "Uloga {0} bi trebala biti prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Odabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka."
@@ -26702,6 +26919,42 @@ msgstr "Sistem pruža mnogo unapred definisanih uloga. Možete dodati nove uloge
msgid "The total number of user document types limit has been crossed."
msgstr "Prekoračeno je ograničenje ukupnog broja tipova korisničkih dokumenata."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr "Korisnik može kreirati novi artikal, ali ne može uređivati postojeće artikle."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr "Korisnik može izbrisati Nacrte / Otkazane dokumente."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr "Korisnik može izvesti podatke izvješća."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr "Korisnik može uvesti nove zapise ili ažurirati postojeće podatke za dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr "Korisnik može odabrati klijenta u Prodajnom Nalogu, ali ne može otvoriti registar Klijenta."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr "Korisnik može dijeliti pristup dokumentu s drugim korisnikom."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr "Korisnik može ažurirati klijenta ili bilo koja druga polja u postojećem Prodajnom Nalogu, ali ne može kreirati novi Prodajni Nalog."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr "Korisnik može pregledati Prodajne Fakture, ali ne može mijenjati vrijednosti polja u njima."
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+msgstr "Vrijednost polja {0} je predugačka u dokumentu {1}. Da biste riješili ovaj problem, smanjite duljinu vrijednosti ili promijenite polje {0} u Dugi tekst pomoću obrasca za prilagodbu, a zatim pokušajte ponovno."
+
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr "Vrijednost koju ste zalijepili bila je od {0} znakova. Maksimalni dopušteni broj znakova je {1}."
@@ -26743,7 +26996,7 @@ msgstr "URL Teme"
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 "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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Nema predstojećih događaja za vas."
@@ -26751,7 +27004,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "U redu čekanja već postoji {0} s istim filterima:"
@@ -26760,7 +27013,7 @@ msgstr "U redu čekanja već postoji {0} s istim filterima:"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "U obrascu može postojati samo jedan preklop"
@@ -26772,11 +27025,11 @@ msgstr "Postoji greška u vašem šablonu adrese {0}"
msgid "There is no data to be exported"
msgstr "Nema podataka za izvoz"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "Ne postoji zadatak pod nazivom \"{}\""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Trenutno nema ništa novo za pokazati."
@@ -26784,7 +27037,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:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "Postoji {0} s istim filterima već u redu čekanja:"
@@ -26800,7 +27053,7 @@ msgstr "Došlo je do greške pri izradi ove stranice"
msgid "There was an error saving filters"
msgstr "Došlo je do greške prilikom spremanja filtera"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Bilo je grešaka"
@@ -26808,11 +27061,11 @@ 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:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru"
@@ -26881,11 +27134,11 @@ 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:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ovo se ne može poništiti"
@@ -26909,7 +27162,7 @@ msgstr "Ovaj grafikon će biti dostupan svim korisnicima ako je ovo postavljeno"
msgid "This doctype has no orphan fields to trim"
msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
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."
@@ -26925,15 +27178,15 @@ msgstr "Ovaj dokument je već stavljen u red čekanja za podnošenje. Napredak m
msgid "This document has been modified after the email was sent."
msgstr "Ovaj dokument je izmijenjen nakon slanja e-pošte."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
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:1105
+#: frappe/public/js/frappe/form/form.js:1134
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:509
+#: frappe/model/document.py:508
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."
@@ -26947,7 +27200,7 @@ msgid "This feature can not be used as dependencies are missing.\n"
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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "Ova funkcija je potpuno nova i još uvijek eksperimentalna"
@@ -26975,11 +27228,11 @@ msgstr "Ova je datoteka javna i svatko joj može pristupiti, čak i bez prijave.
msgid "This file is public. It can be accessed without authentication."
msgstr "Ova datoteka je javna. Može joj se pristupiti bez autentifikacije."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Ova forma je izmijenjena nakon što ste je učitali"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "Ova formu nije moguće uređivati zbog Radnog Toka."
@@ -26998,7 +27251,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:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
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."
@@ -27040,15 +27293,15 @@ msgstr "Ova veza je već aktivirana radi verifikacije."
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Ova veza nije važeća ili je istekla. Provjerite jeste li ispravno zalijepili."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Ovo se može ispisati na više stranica"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Ovog mjeseca"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
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."
@@ -27056,7 +27309,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:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Ovaj izvještaj je generisan {0}."
@@ -27080,7 +27333,7 @@ msgstr "Ovaj softver je izgrađen pomoću mnogih open source paketa."
msgid "This title will be used as the title of the webpage as well as in meta tags"
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
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "Ova se vrijednost preuzima iz {0} polja {1}"
@@ -27124,7 +27377,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:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Prigušeno"
@@ -27155,6 +27408,7 @@ msgstr "Četvrtak"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27162,6 +27416,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Vrijeme"
@@ -27244,11 +27499,6 @@ msgstr "Vrijeme {0} mora biti u formatu: {1}"
msgid "Timed Out"
msgstr "Isteklo"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr "Timeless Launchpad"
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Timeless Night"
@@ -27280,11 +27530,11 @@ msgstr "Veze Vremenske Linije"
msgid "Timeline Name"
msgstr "Naziv Vremenske Linije"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "Polje Vremenske Linije mora biti veza ili Dinamička Veza"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "Polje vremenske linije mora biti važeće ime polja"
@@ -27355,7 +27605,7 @@ msgstr "Savjet: Isprobaj novu konzolu pomoću"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27378,7 +27628,7 @@ msgstr "Polje Naziva"
msgid "Title Prefix"
msgstr "Prefiks Naziva"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Polje Naziva mora biti važeće ime polja"
@@ -27469,7 +27719,7 @@ msgstr "Da biste izvezli ovaj korak kao JSON, povežite ga u Introdukcijskom dok
msgid "To generate password click {0}"
msgstr "Za generiranje lozinke kliknite {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}."
@@ -27522,31 +27772,14 @@ msgstr "Za Uraditi"
msgid "Today"
msgstr "Danas"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Prebaci grafikon"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Prebaci Punu Širinu"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Uključi Prikaz Mreže"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Prebaci Bočnu Traku"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Prebaci Temu"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27582,7 +27815,7 @@ msgid "Tomorrow"
msgstr "Sutra"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "Previše Dokumenata"
@@ -27590,15 +27823,19 @@ msgstr "Previše Dokumenata"
msgid "Too Many Requests"
msgstr "Previše Zahtjeva"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "Previše promjena u bazi podataka u jednoj akciji."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
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:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr "Previše zahtjeva. Pokušajte ponovno kasnije."
+
+#: frappe/core/doctype/user/user.py:1093
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"
@@ -27654,10 +27891,10 @@ msgstr "Vrh Desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Ukupno"
@@ -27672,7 +27909,7 @@ msgstr "Ukupno Pozadinskih Radnika"
msgid "Total Errors (last 1 day)"
msgstr "Ukupno Greška (posljednji dan)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Ukupno Slika"
@@ -27774,7 +28011,7 @@ msgstr "Pratite je li primatelj otvorio vašu e-poštu.\n"
msgid "Track milestones for any document"
msgstr "Prati prekretnice za bilo koji dokument"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL praćenja generisan i kopiran u međuspremnik"
@@ -27810,7 +28047,7 @@ msgstr "Prelazi"
msgid "Translatable"
msgstr "Prevodivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "Prevedi Podatke"
@@ -27821,7 +28058,7 @@ msgstr "Prevedi Podatke"
msgid "Translate Link Fields"
msgstr "Prevedi Polja Veza"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Prevedi vrijednosti"
@@ -27857,7 +28094,7 @@ msgstr "Otpad"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "Stablo"
@@ -27906,8 +28143,8 @@ msgstr "Pokušaj ponovo"
msgid "Try a Naming Series"
msgstr "Isprobaj Seriju Imenovanja"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Isprobaj novi Dizajner Ispisa"
@@ -27953,6 +28190,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije"
#. 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 'Event Notifications'
#. 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'
@@ -27966,6 +28204,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije"
#: 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/event_notifications/event_notifications.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
@@ -27974,7 +28213,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28142,7 +28381,7 @@ msgstr "UTM Izvor"
msgid "UUID"
msgstr "UUID"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "Prekidanje praćenja dokumenta {0}"
@@ -28150,7 +28389,7 @@ msgstr "Prekidanje praćenja dokumenta {0}"
msgid "Unable to find DocType {0}"
msgstr "Nije moguće pronaći DocType {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Nije moguće učitati kameru."
@@ -28166,7 +28405,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:180
+#: frappe/core/doctype/communication/email.py:204
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"
@@ -28187,20 +28426,20 @@ msgstr "Poništi dodjelu uslova"
msgid "Uncaught Exception"
msgstr "Neuhvaćena Iznimka"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Nepromijenjeno"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Poništi"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Poništi posljednju radnju"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Prestani Pratiti"
@@ -28276,9 +28515,10 @@ msgstr "Nepročitana Obavijest Poslana"
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "Poništi Odabir Svih"
@@ -28311,11 +28551,11 @@ msgstr "Parametri Otkazivanja"
msgid "Unsubscribed"
msgstr "Otkazano"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr "Nepodržana funkcija ili operator: {0}"
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr "Nepodržano {0}: {1}"
@@ -28335,7 +28575,7 @@ msgstr "Raspakovano {0} datoteka"
msgid "Unzipping files..."
msgstr "Raspakivanje datoteka..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Nadolazeći Događaji za Danas"
@@ -28343,13 +28583,13 @@ msgstr "Nadolazeći Događaji za Danas"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Ažuriraj"
@@ -28420,7 +28660,7 @@ msgstr "Ažuriraj Vrijednost"
msgid "Update from Frappe Cloud"
msgstr "Ažuriraj sa Frappe Cloud-a"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "Ažuriraj {0} zapisa"
@@ -28428,8 +28668,7 @@ msgstr "Ažuriraj {0} zapisa"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Ažurirano"
@@ -28441,11 +28680,11 @@ msgstr "Uspješno Ažurirano"
msgid "Updated To A New Version 🎉"
msgstr "Ažurirano na Novu Verziju 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Uspješno Ažurirano"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Ažuriranje"
@@ -28470,11 +28709,11 @@ msgstr "Ažuriraju se globalne postavke"
msgid "Updating naming series options"
msgstr "Ažuriraju se opcije imenovanja serije"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "Ažuriraju se povezana polja..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Ažurira se {0}"
@@ -28482,12 +28721,12 @@ msgstr "Ažurira se {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "Ažurira se {0} od {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "Plan Ažuriranja"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28535,6 +28774,7 @@ msgstr "Koristi Prvi Dan Perioda"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "Koristi HTML"
@@ -28606,7 +28846,7 @@ msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno"
msgid "Use of sub-query or function is restricted"
msgstr "Korištenje podupita ili funkcije je ograničena"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Koristi novi Konstruktor Formata Ispisa"
@@ -28640,9 +28880,8 @@ msgstr "Korišten OAuth"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28669,11 +28908,11 @@ msgstr "Korišten OAuth"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28809,7 +29048,7 @@ msgstr "Slika Korisnika"
msgid "User Invitation"
msgstr "Korisnička Pozivnica"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Korisnički Meni"
@@ -28825,19 +29064,19 @@ msgid "User Permission"
msgstr "Korisnička Dozvola"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Korisničke Dozvole"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Korisničke Dozvole"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "Korisničke Dozvole se koriste za ograničavanje korisnika na određene zapise."
@@ -28910,7 +29149,7 @@ msgstr "Korisnik se može prijaviti koristeći E-poštu ili Broj Mobilnog Telefo
msgid "User can login using Email id or User Name"
msgstr "Korisnik se može prijaviti koristeći E-poštu ili Korisničko Ime"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "Korisnik ne postoji."
@@ -28944,27 +29183,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Korisnik {0} se ne može izbrisati"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Korisnik {0} se ne može onemogućiti"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Korisnik {0} se ne može preimenovati"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "Korisnik {0} nema pristup ovom dokumentu"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Korisnik {0} nema pristup tipu dokumenta preko dopuštenja uloge za dokument {1}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora."
@@ -28973,11 +29212,11 @@ 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:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "Korisnik {0} predstavljen kao {1}"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Korisnik {0} je onemogućen"
@@ -29002,18 +29241,17 @@ msgstr "URI informacija Korisnika"
msgid "Username"
msgstr "Korisničko Ime"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Korisničko Ime {0} već postoji"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29084,7 +29322,7 @@ msgstr "Validiraj Frappe Mail Postavke"
msgid "Validate SSL Certificate"
msgstr "Potvrdite SSL certifikat"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Greška pri Validaciji"
@@ -29113,7 +29351,7 @@ msgstr "Validnost"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29140,15 +29378,19 @@ msgstr "Vrijednost Promijenjena"
msgid "Value To Be Set"
msgstr "Vrijednost Koju Treba Postaviti"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr "Vrijednost je predugačka"
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Vrijednost se ne može promijeniti za {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Vrijednost ne može biti negativna za"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Vrijednost ne može biti negativna za {0}: {1}"
@@ -29160,7 +29402,7 @@ msgstr "Vrijednost polja za provjeru može biti 0 ili 1"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "Vrijednost za {0} ne može biti lista"
@@ -29185,7 +29427,13 @@ msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, ta
msgid "Value to Validate"
msgstr "Vrijednost za Provjeru"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr "Vrijednost koju treba postaviti kada se primijeni ovo stanje tijeka rada. Koristite običan tekst (npr. Odobreno) ili izraz ako je omogućena opcija \"Procijeni kao izraz\"."
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Vrijednost je Prevelika"
@@ -29202,7 +29450,7 @@ msgstr "Vrijednost {0} mora biti u važećem formatu trajanja: d h m s"
msgid "Value {0} must in {1} format"
msgstr "Vrijednost {0} mora biti u {1} formatu"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Vrijednosti Promijenjene"
@@ -29211,11 +29459,11 @@ msgstr "Vrijednosti Promijenjene"
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Verifikacija"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Verfikacijski Kod"
@@ -29223,7 +29471,7 @@ msgstr "Verfikacijski Kod"
msgid "Verification Link"
msgstr "Veza za Verifikaciju"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "E-pošta sa verifikacionim kodom nije poslana. Kontaktiraj Administratora."
@@ -29237,7 +29485,7 @@ msgid "Verified"
msgstr "Provjereno"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Provjeri"
@@ -29273,7 +29521,7 @@ msgstr "Prikaz"
msgid "View All"
msgstr "Prikaži Sve"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "Prikaži Trag"
@@ -29285,7 +29533,7 @@ msgstr "Prikaz Doctype Dozvola"
msgid "View File"
msgstr "Prikaži datoteku"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Prikaži Cijeli Zapisnik"
@@ -29322,7 +29570,7 @@ msgstr "Prikaži Izvještaj"
msgid "View Settings"
msgstr "Pogledaj Postavke"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr "Prikaži Bočnu Traku"
@@ -29331,14 +29579,11 @@ msgstr "Prikaži Bočnu Traku"
msgid "View Switcher"
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 "Prikaži Web Stranicu"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr "Prikaži sve {0} korisnike"
@@ -29354,7 +29599,7 @@ msgstr "Prrikaži izvještaj u vašem pretraživaču"
msgid "View this in your browser"
msgstr "Prikaži ovo u svom pretraživaču"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Prikaži svoj odgovor"
@@ -29390,7 +29635,7 @@ msgstr "Virtualni DocType {} zahtijeva statičku metodu pod nazivom {} pronađen
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "Virtualni DocType {} zahtijeva nadjačavanje metode instance koja se zove {} pronađena {}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr "Virtualne tabele moraju biti virtualna polja"
@@ -29438,7 +29683,7 @@ msgstr "Skladište"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Upozorenje"
@@ -29447,7 +29692,7 @@ msgstr "Upozorenje"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
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:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Upozorenje: Imenovanje nije postavljeno"
@@ -29531,7 +29776,7 @@ msgstr "Web Stranica"
msgid "Web Page Block"
msgstr "Blok Web Stranice"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "URL Web Stranice"
@@ -29628,7 +29873,7 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29683,7 +29928,7 @@ msgstr "Skripta Web Stranice"
msgid "Website Search Field"
msgstr "Polje Pretraživanja Web Stranice"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Polje Pretraživanja Web Stranice mora biti važeće ime polja"
@@ -29748,6 +29993,11 @@ msgstr "Veza Slike Teme Web Stranice"
msgid "Website Themes Available"
msgstr "Dostupne Teme Web Stranice"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr "Korisnici Web Stranice"
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29835,15 +30085,15 @@ msgstr "URL Dobrodošlice"
msgid "Welcome Workspace"
msgstr "Početni Radni Prostor"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "E-pošta Dobrodošlice poslana"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Dobrodošli u {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Šta je Novo"
@@ -29865,10 +30115,6 @@ msgstr "Kada šaljete dokument putem e-pošte, spremi PDF iz Konverzacije. Upozo
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 "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 "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
@@ -29886,7 +30132,7 @@ msgstr "Na koji prikaz povezanog DocType bi vas ova prečica trebala odvesti?"
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Širina"
@@ -30007,6 +30253,10 @@ msgstr "Radni Tok Detalji"
msgid "Workflow Document State"
msgstr "Stanje Dokumenta Radnog Toka"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr "Pogreška u procjeni tijeka rada"
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -30024,11 +30274,11 @@ msgstr "Stanje Radnog Toka"
msgid "Workflow State Field"
msgstr "Polje stanja radnog toka"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Stanje Radnog Toka nije postavljeno"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}"
@@ -30036,7 +30286,7 @@ msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}"
msgid "Workflow States Don't Exist"
msgstr "Stanja Radnog Toka ne postoje"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Status Radnog Toka"
@@ -30071,18 +30321,15 @@ 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
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Radni Prostor"
@@ -30109,7 +30356,6 @@ 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 "Upravitelj Radnog Prostora"
@@ -30123,27 +30369,15 @@ msgstr "Numerička Kartica Radnog Prostora"
msgid "Workspace Quick List"
msgstr "Brza Lista Radnog Prostora"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "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 "Postavljanje Radnog Prostora je završeno"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Prečica Radnog Prostora"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr "Bočna Traka Radnog Prostora"
@@ -30153,13 +30387,7 @@ msgstr "Bočna Traka Radnog Prostora"
msgid "Workspace Sidebar Item"
msgstr "Stavka Bočne Trake 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 "Vidljivost Radnog Prostora"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "Radni Prostor {0} kreiran"
@@ -30188,11 +30416,12 @@ msgstr "Završava se.."
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "Piši"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Pogrešno Peuzimanje iz vrijednosti"
@@ -30210,7 +30439,7 @@ msgstr "X Polje"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr "XMLHttpRequest Pogreška"
@@ -30225,7 +30454,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y Polje"
@@ -30273,10 +30502,14 @@ msgstr "Žuta"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30285,10 +30518,10 @@ msgstr "Žuta"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -30324,7 +30557,7 @@ msgstr "Dodali ste 1 red u {0}"
msgid "You added {0} rows to {1}"
msgstr "Dodali ste {0} redaka u {1}"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "Upravo ćete otvoriti vanjsku poveznicu. Za potvrdu ponovno kliknite poveznicu."
@@ -30332,7 +30565,7 @@ msgstr "Upravo ćete otvoriti vanjsku poveznicu. Za potvrdu ponovno kliknite pov
msgid "You are connected to internet."
msgstr "Povezani ste na internet."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "Predstavljate se kao neki drugi korisnik."
@@ -30340,11 +30573,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:437
+#: frappe/permissions.py:443
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:426
+#: frappe/permissions.py:432
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}"
@@ -30367,7 +30600,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:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "Nije vam dozvoljeno da izvezete {} doctype"
@@ -30375,10 +30608,14 @@ 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:778
+#: frappe/public/js/frappe/views/communication.js:845
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/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr "Nije vam dopušteno ažuriranje statusa ovog događaja."
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme"
@@ -30395,7 +30632,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:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dopuštenje za pristup ovom resursu. Prijavite se za pristup"
@@ -30403,7 +30640,7 @@ msgstr "Nemate dopuštenje 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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
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."
@@ -30416,7 +30653,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "Priložili ste {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Možete dodati dinamička svojstva iz dokumenta korištenjem Jinja šablona."
@@ -30440,10 +30677,6 @@ msgstr "Također možete kopirati i zalijepiti ovo {0} u svoj pretraživač"
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "Možete zamoliti svoj tim da vam ponovno pošalje pozivnicu ako se i dalje želite pridružiti."
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-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 "Pravila zadržavanja možete promijeniti u {0}."
@@ -30498,7 +30731,7 @@ msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika pri
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati promijeniti filtere vašeg izvještaja."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima."
@@ -30528,6 +30761,10 @@ msgstr "Otkazali ste ovaj dokument {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr "Ne možete dijeliti `{0}` na {1} `{2}` jer nemate dopuštenje `{0}` na `{1}`"
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}"
@@ -30554,7 +30791,6 @@ msgid "You changed {0} to {1}"
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:152
msgid "You created this"
msgstr "Vi ste kreirali ovo"
@@ -30563,11 +30799,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "Izradili ste ovaj dokument {0}"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
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."
@@ -30579,15 +30811,19 @@ msgstr "Nemate dovoljno dozvola da dovršite radnju"
msgid "You do not have import permission for {0}"
msgstr "Nemate dozvolu za uvoz za {0}"
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr "Nemate dopuštenje za pristup podređenom polju tablice: {0}"
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "Nemate dopuštenje za pristup polju: {0}"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata."
@@ -30623,7 +30859,7 @@ msgstr "Uspješno ste odjavljeni"
msgid "You have hit the row size limit on database table: {0}"
msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Niste unijeli vrijednost. Polje će biti prazno."
@@ -30643,7 +30879,7 @@ msgstr "Niste vidjeli {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "{0} nema u sistemu"
@@ -30652,7 +30888,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Dosegli ste ograničenje zbog previše zahtjeva. Molimo pokušajte nakon nekog vremena."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Zadnji put ste uređivali ovo"
@@ -30668,12 +30903,12 @@ msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac."
msgid "You must login to submit this form"
msgstr "Morate se prijaviti da pošaljete ovu formu"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
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."
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Morate biti Upravitelj Radnog Prostora da biste izbrisali javni radni prostor."
@@ -30681,7 +30916,7 @@ msgstr "Morate biti Upravitelj Radnog Prostora da biste izbrisali javni radni pr
msgid "You need to be Workspace Manager to edit this document"
msgstr "Morate biti Upravitelj Radnog Prostora da biste uredili ovaj dokument"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici."
@@ -30713,7 +30948,7 @@ msgstr "Morate omogućiti JavaScript da bi vaša aplikacija radila."
msgid "You need to have \"Share\" permission"
msgstr "Morate imati dozvolu \"Dijeli\""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Morate instalirati pycups da biste koristili ovu funkciju!"
@@ -30733,7 +30968,7 @@ msgstr "Trebate dozvolu za pisanje na {0} {1} za spajanje"
msgid "You need write permission on {0} {1} to rename"
msgstr "Trebate dozvolu za pisanje na {0} {1} da biste preimenovali"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "Trebate {0} dozvolu da preuzmete vrijednosti iz {1} {2}"
@@ -30780,7 +31015,7 @@ msgstr "Prestali ste pratiti ovaj dokument"
msgid "You viewed this"
msgstr "Prikazali ste ovo"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "Bit ćete preusmjereni na:"
@@ -30857,7 +31092,7 @@ msgstr "Vaša adresa e-pošte"
msgid "Your exported report: {0}"
msgstr "Vaše izvezeno izvješće: {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Vaša forma je uspješno ažurirana"
@@ -30899,7 +31134,7 @@ msgstr "Vaše se izvješće generira u pozadini. Primit ćete e-poruku na {0} s
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "Vaša je stranica u toku održavanja ili ažuriranja."
@@ -30921,7 +31156,7 @@ msgstr "Nula znači slanje zapisa ažuriranih u bilo koje vrijeme"
msgid "[Action taken by {0}]"
msgstr "[Radnju preduzeta od {0}]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
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`"
@@ -30940,7 +31175,7 @@ msgstr "nakon_umetanja"
msgid "amend"
msgstr "izmijeni"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "i"
@@ -30963,7 +31198,7 @@ msgstr "po Ulozi"
msgid "cProfile Output"
msgstr "cProfil Izlaz"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "kalendar"
@@ -30979,7 +31214,9 @@ msgid "canceled"
msgstr "otkazano"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "Chrome"
@@ -31003,7 +31240,7 @@ msgid "cyan"
msgstr "cijan"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "d"
@@ -31061,7 +31298,7 @@ msgstr "izbriši"
msgid "descending"
msgstr "silazno"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "tip dokumenta..., npr. klijent"
@@ -31071,7 +31308,7 @@ msgstr "tip dokumenta..., npr. klijent"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "npr. \"Podrška\", \"Prodaja\", \"Jerry Yang\""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "npr. (55 + 434) / 4 ili =Math.sin(Math.PI/2)..."
@@ -31113,12 +31350,16 @@ msgstr "emacs"
msgid "email"
msgstr "e-pošta"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "prijemno sanduče e-pošte"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "prazno"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "prazno"
@@ -31174,12 +31415,12 @@ 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:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "h"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "čvorište"
@@ -31194,6 +31435,20 @@ msgstr "ikona"
msgid "import"
msgstr "uvoz"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr "je onemogućeno"
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr "je omogućeno"
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "jane@example.com"
@@ -31233,16 +31488,11 @@ msgid "long"
msgstr "dugo"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr "macOS Launchpad"
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "spojeno {0} u {1}"
@@ -31261,15 +31511,15 @@ msgstr "mm-dd-gggg"
msgid "mm/dd/yyyy"
msgstr "mm/dd/gggg"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "naziv modula..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "novi"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "nova vrsta dokumenta"
@@ -31331,7 +31581,7 @@ msgstr "na_ažuriranju"
msgid "on_update_after_submit"
msgstr "na_ažuriranju_nakon_podnošenja"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "ili"
@@ -31404,7 +31654,7 @@ msgid "restored {0} as {1}"
msgstr "vraćeno {0} kao {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -31488,11 +31738,11 @@ msgstr "vrijednost stringa, tj. {0} ili uid={0},ou=korisnici,dc=primjer,dc=com"
msgid "submit"
msgstr "podnesi"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "naziv oznake..., npr. #tag"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "tekst u vrsti dokumenta"
@@ -31590,11 +31840,13 @@ msgid "when clicked on element it will focus popover if present."
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'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (sa zakrpljenim qt-om)."
@@ -31630,11 +31882,11 @@ msgstr "gggg-mm-dd"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : tip}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31651,8 +31903,8 @@ msgstr "{0} ({1}) (1 red obavezan)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31665,13 +31917,13 @@ msgid "{0} Chart"
msgstr "{0} Grafikon"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} Nadzorna Tabla"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31705,11 +31957,11 @@ msgstr "{0} M"
msgid "{0} Map"
msgstr "{0} Karta"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} Naziv"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}"
@@ -31717,7 +31969,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:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} Izvještaji"
@@ -31730,11 +31982,11 @@ msgid "{0} Tree"
msgstr "{0} Stablo"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} Prikaza Web Stranice"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} dodano"
@@ -31796,7 +32048,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} je otkazao ovaj dokument {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
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."
@@ -31825,16 +32077,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} promijenio(la) {1} u {2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0} sadrži nevažeći izraz Preuzmi Iz, Preuzmi Iz ne može biti samoreferencijalan."
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr "{0} sadrži {1}"
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
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:153
msgid "{0} created this"
msgstr "{0} je kreirao(la) ovo"
@@ -31851,11 +32106,19 @@ msgstr "{0} d"
msgid "{0} days ago"
msgstr "{0} dana prije"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr "{0} ne sadrži {1}"
+
#: 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} ne postoji u redu {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr "{0} jednako je {1}"
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
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"
@@ -31880,7 +32143,7 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodijelio(la) standard vrijednost za {1}."
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr "{0} ima nevažeću notaciju povratnog aluzija: {1}"
@@ -31901,7 +32164,11 @@ msgstr "{0} ako ne budete preusmjereni unutar {1} sekundi"
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} u redu {1} ne može imati i URL i podređene artikle"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr "{0} je podređen {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} je obavezno polje"
@@ -31909,7 +32176,15 @@ msgstr "{0} je obavezno polje"
msgid "{0} is a not a valid zip file"
msgstr "{0} nije važeća zip datoteka"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr "{0} je nakon {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr "{0} je nadređen {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} je nevažeće polje podataka."
@@ -31917,6 +32192,15 @@ msgstr "{0} je nevažeće polje podataka."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} je nevažeća adresa e-pošte u 'Primatelji'"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr "{0} je prije {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr "{0} je između {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} je između {1} i {2}"
@@ -31926,22 +32210,36 @@ msgstr "{0} je između {1} i {2}"
msgid "{0} is currently {1}"
msgstr "{0} je trenutno {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr "{0} je onemogućen"
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr "{0} je omogućen"
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} je jednako {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} je veće ili jednako {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} je veće od {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} je manje ili jednako {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} je manje od {1}"
@@ -31954,10 +32252,14 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezan"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "{0} nije podređena tablica od {1}"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr "{0} nije podređen {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}"
@@ -31974,12 +32276,12 @@ msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar."
msgid "{0} is not a valid Cron expression."
msgstr "{0} nije važeći Cron izraz."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeća DocType za dinamičku vezu"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća adresa e-pošte"
@@ -31987,23 +32289,23 @@ 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:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} nije važeće Ime"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije ispravan broj telefona"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
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:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nije važeći nadređeni DocType za {1}"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće nadređeno polje za {1}"
@@ -32019,6 +32321,11 @@ msgstr "{0} nije zip datoteka"
msgid "{0} is not an allowed role for {1}"
msgstr "{0} nije dopuštena uloga za {1}"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr "{0} nije nadređen {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} nije jednako {1}"
@@ -32027,10 +32334,12 @@ msgstr "{0} nije jednako {1}"
msgid "{0} is not like {1}"
msgstr "{0} nije kao {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} nije jedno od {1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} nije postavljeno"
@@ -32039,36 +32348,50 @@ msgstr "{0} nije postavljeno"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr "{0} je na ili nakon {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr "{0} je na ili prije {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} je jedan od {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} je obavezan"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} je postavljeno"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr "{0} je {1}"
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} artikala odabrano"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} je zadnji put uredio ovo"
@@ -32096,35 +32419,35 @@ msgstr "prije {0} minuta"
msgid "{0} months ago"
msgstr "{0} mjeseci prije"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} mora biti iza {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora početi sa '{1}'"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} ne smije biti ni jedna od {1}"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} se mora prvo postaviti"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstven"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -32141,11 +32464,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} nije dozvoljeno preimenovati"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} od {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redovi sa potomcima)"
@@ -32174,7 +32497,7 @@ msgstr "{0} zapis(a) su zadržana {1} dana."
msgid "{0} records deleted"
msgstr "{0} zapis(a) je obrisan(o)"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} zapis(a) će biti izvezen(o)"
@@ -32199,7 +32522,7 @@ msgstr "{0} uklonilo je {1} redaka iz {2}"
msgid "{0} role does not have permission on any doctype"
msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} red #{1}:"
@@ -32213,7 +32536,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0} redaka do {1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} uspješno spremljen"
@@ -32221,7 +32544,7 @@ msgstr "{0} uspješno spremljen"
msgid "{0} self assigned this task: {1}"
msgstr "{0} je sam sebi dodijelio ovaj zadatak: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} podijelio(la) dokument {1} {2} s vama"
@@ -32289,7 +32612,7 @@ msgstr "{0} w"
msgid "{0} weeks ago"
msgstr "prije {0} tjedana"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr "{0} s ulogom {1}"
@@ -32301,7 +32624,7 @@ msgstr "{0} g"
msgid "{0} years ago"
msgstr "{0} godina prije"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} dodano"
@@ -32309,11 +32632,11 @@ msgstr "{0} {1} dodano"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} dodan na Nadzornu Ploču {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} već postoji"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} ne može biti \"{2}\". Trebao bi biti jedan od \"{3}\""
@@ -32325,11 +32648,11 @@ msgstr "{0} {1} ne može biti nadređeni jer ima podređene"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
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:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađeno"
@@ -32337,87 +32660,59 @@ msgstr "{0} {1} nije pronađeno"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, Red {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka."
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) će biti skraćen, jer je maksimalni dozvoljeni broj znakova {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Ne može se postaviti Izmjena bez Otkaži"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Nije moguće postaviti Dodijeli Izmjenu ako nije Podnošljivo"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Ne može se postaviti Dodijeli Podnošenje ako nije Podnošljivo"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Nije moguće postaviti Otkaži bez Podnesi"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Nije moguće postaviti Uvoz bez Kreiranja"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Nije moguće podesiti Podnesi, Otkaži, Izmijeni bez Piši"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Nije moguće postaviti uvoz jer {1} nije uvožljiv"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{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:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: Polje '{1}' ne može se postaviti kao jedinstveno jer ima nejedinstvene vrijednosti"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: Polje {1} u redu {2} ne može biti skriveno i obavezno bez standardnog"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Polje {1} tipa {2} ne može biti obavezno"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Ime polja {1} se pojavljuje više puta u redovima {2}"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Tip polja {1} za {2} ne može biti jedinstven"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Nisu postavljene osnovne dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Dozvoljeno je samo jedno pravilo sa istom ulogom, nivoom i {1}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Opcije moraju biti važeći DocType za polje {1} u redu {2}"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: Obavezne opcije za polje Tip Veze ili Tabele {1} u redu {2}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {3}"
@@ -32425,15 +32720,59 @@ msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Mogu se primjenjivati i druga pravila o dozvolama"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših nivoa"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: Dozvola za 'Izmjenu' ne može se odobriti za DocType koji se ne može podnijeti."
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: Dozvola 'Izmjena' ne može se odobriti bez dozvole 'Stvaranje'."
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr "{0}: Dozvola 'Otkaži' ne može se odobriti bez dozvole 'Podnesi'."
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Dozvola za 'Izvoz' je uklonjena jer se ne može odobriti za 'jedan' DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr "{0}: Dozvola za 'Uvoz' ne može se odobriti za DocType koji se ne može uvesti."
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: Dozvola za 'Uvoz' ne može se odobriti bez dozvole za 'Stvaranje'."
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Dozvola za 'Uvoz' je uklonjena jer se ne može odobriti za 'jedan' DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Dozvola 'Prijavi' je uklonjena jer se ne može odobriti za 'jedan' DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: Dozvola 'Podnesi' ne može se odobriti za DocType koji se ne može podnijeti."
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr "{0}: Dozvole 'Podnesi', 'Otkaži' i 'Izmijeni' ne mogu se dodijeliti bez dozvole 'Piši'."
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: Možete povećati ograničenje za polje ako je potrebno preko {1}"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr "{0}: naziv polja se ne može postaviti na rezervirano polje {1} u DocType-u"
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: naziv polja ne može se postaviti na rezerviranu ključnu riječ {1}"
@@ -32446,15 +32785,15 @@ 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:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} naspram {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}:Tip polja {1} za {2} ne može se indeksirati"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} spremljen"
@@ -32474,11 +32813,11 @@ msgstr "{count} red odabran"
msgid "{count} rows selected"
msgstr "{count} redova odabrano"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Završeno"
diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po
index 2497e3c854..8c2830e781 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2026-01-05 23:50\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -32,7 +32,7 @@ msgstr "\"Cégtörténet\""
#: frappe/core/doctype/data_export/exporter.py:202
msgid "\"Parent\" signifies the parent table in which this row must be added"
-msgstr "\"Szülő\" jelenti azt a szülő táblát, amelyhez ezt a sort hozzá kell adni"
+msgstr "\"Szülő\" jelenti azt a fő táblát, amelyhez ezt a sort hozzá kell adni"
#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us
#. Settings'
@@ -40,7 +40,7 @@ msgstr "\"Szülő\" jelenti azt a szülő táblát, amelyhez ezt a sort hozzá k
msgid "\"Team Members\" or \"Management\""
msgstr "\"Csapat tagok\" vagy \"Vezetőség\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "Az \"amended_from\" mezőnek jelen kell lennie a módosítás végrehajtásához."
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. és közreműködők"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr "A '*' csak {0} SQL függvény(ek)ben engedélyezett"
@@ -74,7 +74,7 @@ msgstr "A '*' csak {0} SQL függvény(ek)ben engedélyezett"
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "A \"Globális keresésben\" nem engedélyezett a {0} típusú {1} mezőnél"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "A \"Globális keresésben\" nem engedélyezett {0} típusú a {1} sorban"
@@ -90,19 +90,19 @@ msgstr "A \"Listanézetben\" nem engedélyezett {0} típusú az {1} sorban"
msgid "'Recipients' not specified"
msgstr "A \"Címzettek\" nincsenek megadva"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "\"{0}\" nem érvényes IBAN"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "\"{0}\" nem érvényes URL cím"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "A(z) \"{0}\" nem engedélyezett a(z) {1} típusnál a(z) {2} sorban"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Kötelező)"
@@ -148,7 +148,7 @@ msgstr "0 - túl kitalálható: kockázatos jelszó.\n"
msgid "0 is highest"
msgstr "0 a legnagyobb"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = igaz és 0 = hamis"
@@ -167,7 +167,7 @@ msgstr "1 nap"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Naptár esemény szinkronizálva."
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Jelentés"
@@ -198,7 +198,7 @@ msgstr "1 hónapja"
msgid "1 of 2"
msgstr "1 a 2-ből"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 rekord exportálásra kerül"
@@ -598,10 +598,10 @@ msgstr "Email válasz példa
\n\n"
"A {{ name }} tranzakció túllépte az esedékességi határidőt. Kérjük, tegye meg a szükséges intézkedéseket.\n\n"
"Részletek\n\n"
"- Ügyfél: {{ customer }}\n"
-"- Amount: {{ grand_total }}\n"
+"- Összeg: {{ grand_total }}\n"
"\n\n"
"Hogyan kaphatom meg a mezőneveket?
\n\n"
-"Az e-mail sablonban használható mezőnevek annak a dokumentumnak a mezői, amelyből az e-mailt küldi. Bármely dokumentum mezőit megtudhatja a Beállítások > Formanyomtatványnézet testreszabása és a dokumentum típusának kiválasztása (pl. Értékesítési számla) segítségével.
\n\n"
+"Az e-mail sablonban használható mezőnevek annak a dokumentumnak a mezői, amelyből az e-mailt küldi. Bármely dokumentum mezőit megtudhatja a Beállítások > Űrlap Testraszabás és a dokumentum típusának kiválasztása (pl. Értékesítési számla) segítségével.
\n\n"
"Sablonkészítés
\n\n"
"A sablonok összeállítása a Jinja Templating Language segítségével történik. Ha többet szeretne megtudni a Jinjáról, olvassa el ezt a dokumentációt.
\n"
@@ -778,7 +778,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "A DocType nevének betűvel kell kezdődnie, és csak betűkből, számokból, szóközökből, aláhúzásjelekből és kötőjelekből állhat"
@@ -792,7 +792,7 @@ msgstr "Egy Frappe Framework példány működhet OAuth-ügyfélként, erőforr
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "Az Ön adatainak letöltési linkjét elküldjük a fiókjához tartozó e-mail címre."
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "A {0} nevű mező már létezik itt {1}"
@@ -898,7 +898,7 @@ msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "API Access"
-msgstr "API hozzáférés"
+msgstr "API Hozzáférés"
#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -926,7 +926,7 @@ msgstr "Az API végpont argumentumainak érvényes JSON-ként kell lenniük"
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Key"
-msgstr "API kulcs"
+msgstr "API Kulcs"
#. Description of the 'Authentication' (Section Break) field in DocType 'Push
#. Notification Settings'
@@ -967,7 +967,7 @@ msgstr "API Kérés Napló"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
-msgstr "API Secret"
+msgstr "API Jelszó"
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
@@ -1113,7 +1113,7 @@ msgstr "Művelet / Útvonal"
msgid "Action Complete"
msgstr "Művelet Befejezve"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Művelet Sikertelen"
@@ -1162,13 +1162,13 @@ msgstr "A {0} művelet nem sikerült a következőn: {1} {2}. Tekintse meg {3}"
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Műveletek"
@@ -1225,20 +1225,20 @@ msgstr "Tevékenység"
msgid "Activity Log"
msgstr "Tevékenység Napló"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Hozzáadás"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Oszlopok Hozzáadása / Eltávolítása"
@@ -1246,11 +1246,11 @@ msgstr "Oszlopok Hozzáadása / Eltávolítása"
msgid "Add / Update"
msgstr "Hozzáadás / Módosítás"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Új Szabály Hozzáadása"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Melléklet Hozzáadása"
@@ -1270,11 +1270,15 @@ msgstr "Szegély Hozzáadása Alul"
msgid "Add Border at Top"
msgstr "Szegély Hozzáadása Felül"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr "CSS Hozzáadása"
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Kártya Hozzáadása a Műszerfalhoz"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Diagram Hozzáadása a Műszerfalhoz"
@@ -1283,8 +1287,8 @@ msgid "Add Child"
msgstr "Alkategória Hozzáadása"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1328,11 +1332,7 @@ msgstr "Csoport Hozzáadása"
msgid "Add Indexes"
msgstr "Indexek Hozzáadása"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Többszörös Hozzáadás"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Új Jogosultsági Szabály Hozzáadása"
@@ -1345,17 +1345,13 @@ msgstr "Résztvevők Hozzáadása"
msgid "Add Query Parameters"
msgstr "Lekérdezési Paraméterek Hozzáadása"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Szerepkörök Hozzáadása"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr "Sor Hozzáadása"
-
#. 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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Aláírás Hozzáadása"
@@ -1374,16 +1370,16 @@ msgstr "Hely Hozzáadása Felül"
msgid "Add Subscribers"
msgstr "Feliratkozók Hozzáadása"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Címkék Hozzáadása"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Címkék Hozzáadása"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Sablon Hozzáadása"
@@ -1433,19 +1429,19 @@ msgstr "Hozzászólás Hozzáadása"
msgid "Add a new section"
msgstr "Új Szakasz Hozzáadása"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Sor hozzáadása az aktuális sor fölé"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Adjon hozzá egy sort az aljára"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Adjon hozzá egy sort a tetejére"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Sor hozzáadása az aktuális sor alá"
@@ -1463,6 +1459,10 @@ msgstr "Oszlop Hozzáadása"
msgid "Add field"
msgstr "Mező Hozzáadása"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr "Több hozzáadása"
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1476,6 +1476,10 @@ msgstr "Számok vagy speciális karakterek hozzáadása."
msgid "Add page break"
msgstr "Oldaltörés Hozzáadása"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr "Sor hozzáadása"
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Szkript Hozzáadása a Gyermek Táblázathoz"
@@ -1494,7 +1498,7 @@ msgid "Add tab"
msgstr "Fül Hozzáadása"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Hozzáadás a Műszerfalhoz"
@@ -1534,8 +1538,8 @@ msgstr "HTML hozzáadva a weboldal <head> részéhez, amelyet elsősorban
msgid "Added default log doctypes: {}"
msgstr "Hozzáadva az alapértelmezett napló doctype-okhoz: {}"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Hozzáadva {0} ({1})"
@@ -1618,14 +1622,14 @@ msgstr "Címek és Kapcsolatok"
#. Description of a DocType
#: frappe/custom/doctype/client_script/client_script.json
msgid "Adds a custom client script to a DocType"
-msgstr "Egyéni ügyfélszkript hozzáadása egy DocType-hoz"
+msgstr "Egyéni kliens szkript hozzáadása egy DocType-hoz"
#. Description of a DocType
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Adds a custom field to a DocType"
msgstr "Egyéni mező hozzáadása egy DocType-hoz"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Adminisztráció"
@@ -1652,15 +1656,15 @@ msgstr "Adminisztráció"
msgid "Administrator"
msgstr "Rendszergazda"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Rendszergazda Bejelentkezve"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "A rendszergazda a {1} oldalon a {2} IP-címen keresztül lépett be a {0} címre."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "A rendszergazda nem követheti"
@@ -1677,8 +1681,8 @@ msgstr "Haladó"
msgid "Advanced Control"
msgstr "Speciális vezérlés"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Részletes keresés"
@@ -1759,7 +1763,7 @@ msgstr "Az Összesítő Függvény mező kitöltése kötelező a műszerfal dia
msgid "Alert"
msgstr "Riasztás"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr "Az aliasnak egy karakterláncnak kell lennie"
@@ -1783,6 +1787,15 @@ msgstr "Igazítás Jobbra"
msgid "Align Value"
msgstr "Igazítás Értéke"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr "Igazítás"
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1815,7 +1828,7 @@ msgstr "Összes"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Minden Nap"
@@ -1827,11 +1840,11 @@ msgstr "A weboldal diavetítéshez csatolt, összes képének, nyilvánosnak kel
msgid "All Records"
msgstr "Összes Rekord"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "Összes Beküldés"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "Összes testreszabás eltávolításra kerül. Kérjük, erősítse meg."
@@ -2143,7 +2156,7 @@ msgstr "Engedélyezett Szerepkörök"
msgid "Allowed embedding domains"
msgstr "Engedélyezett beágyazási domainek"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "DocType, DocType engedélyezése. Legyen óvatos!"
@@ -2177,13 +2190,61 @@ msgstr "Lehetővé teszi az ügyfelek számára a /.well-known/oauth-prote
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr "Lehetővé teszi az engedélyezett közösségi bejelentkezési kulcs alap URL-címének megjelenítését jogosultság kiszolgálóként."
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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 "Lehetővé teszi az engedélyezés kihagyását, ha a felhasználó aktív tokenekkel rendelkezik."
-#: frappe/core/doctype/user/user.py:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Már Regisztrált"
@@ -2278,7 +2339,7 @@ msgstr "Helyesbítés"
msgid "Amendment Naming Override"
msgstr "Helyesbítés Elnevezés Felülírása"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Helyesbítés Nem Engedélyezett"
@@ -2291,7 +2352,7 @@ msgstr "Helyesbítés elnevezési szabályai frissültek."
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr "Egy visszaigazoló e-mailt küldtünk az e-mail címére, amely a kérését ellenőrzi. Kérjük, erősítse meg kérését a folyamat befejezéséhez."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Hiba történt a Munkamenet Alapértelmezéseinek beállításakor"
@@ -2342,7 +2403,7 @@ msgstr "Anonimizálási Mátrix"
msgid "Anonymous responses"
msgstr "Névtelen válaszok"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "Egy másik tranzakció blokkolja ezt. Kérjük, próbálja újra pár másodperc múlva."
@@ -2355,7 +2416,7 @@ msgstr "Egy másik {0} létezik ezzel a névvel: {1}, válasszon másik nevet"
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr "Bármely karakterlánc-alapú nyomtatónyelv használható. A nyers parancsok írásához a nyomtató anyanyelvének ismerete szükséges, amelyet a nyomtató gyártója biztosít. A natív parancsok írásáról lásd a nyomtató gyártója által kiadott fejlesztői útmutatót. Ezeket a parancsokat a szerver oldalon a Jinja sablon nyelv használatával jelenítik meg."
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr "A Rendszergazdán kívül a Felhasználói engedélyek beállítása joggal rendelkező szerepkörök is beállíthatják más felhasználók engedélyeit az adott dokumentumtípushoz."
@@ -2405,11 +2466,11 @@ msgstr "Alkalmazás Név"
msgid "App Name (Client Name)"
msgstr "Alkalmazás Név (Kliens Név)"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "A modulhoz nem található alkalmazás: {0}"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "A {0} alkalmazás nincs telepítve"
@@ -2483,7 +2544,7 @@ msgstr "Vonatkozik (DocType)"
msgid "Apply"
msgstr "Alkalmaz"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Hozzárendelési Szabály Alkalmazása"
@@ -2492,6 +2553,10 @@ msgstr "Hozzárendelési Szabály Alkalmazása"
msgid "Apply Filters"
msgstr "Szűrők Alkalmazása"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2531,7 +2596,7 @@ msgstr "Alkalmazza ezt a szabályt, ha a Felhasználó a Tulajdonos"
msgid "Apply to all Documents Types"
msgstr "Minden Dokumentumtípusra Alkalmazni"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Alkalmazás: {0}"
@@ -2539,18 +2604,11 @@ msgstr "Alkalmazás: {0}"
msgid "Approval Required"
msgstr "Jóváhagyás Szükséges"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Alkalmazások"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr "Kereséssel rendelkező alkalmazások"
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2573,16 +2631,16 @@ msgstr "Archívált Oszlopok"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Biztosan visszavonja ezt a meghívást?"
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr "Biztosan törölni szeretnéd a hozzárendeléseket?"
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Biztosan törölni szeretné az összes sort?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Biztosan törölni szeretné a mellékletet?"
@@ -2601,19 +2659,19 @@ 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 "Biztosan törölni szeretné a fület? A fülön található összes szakasz és mező átkerül az előző fülre."
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr "Biztosan törölni szeretné ezt a bejegyzést?"
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr "Biztosan elveti a változtatásokat?"
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "Biztosan új jelentést szeretne létrehozni?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Biztosan egyesíteni szeretné a(z) {0} elemet a(z) {1} elemmel?"
@@ -2633,7 +2691,7 @@ msgstr "Biztosan újra szeretnéd csatolni ezt a kommunikációt a(z) {0} címhe
msgid "Are you sure you want to remove all failed jobs?"
msgstr "Biztosan eltávolítja az összes sikertelen feladatot?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "Biztosan eltávolítod a(z) {0} szűrőt?"
@@ -2682,7 +2740,7 @@ msgstr "Az Ön kérésének megfelelően az Ön fiókját és a {0} oldalon tal
msgid "Ask"
msgstr "Kérdez"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Hozzárendel"
@@ -2695,7 +2753,7 @@ msgstr "Feltétel Hozzárendelése"
msgid "Assign To"
msgstr "Hozzárendelés"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Hozzárendelés"
@@ -2745,7 +2803,7 @@ msgstr "Hozzárendelte"
msgid "Assigned By Full Name"
msgstr "Hozzárendelte Teljes Nevén"
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2834,7 +2892,7 @@ msgstr "Feladatok"
msgid "Asynchronous"
msgstr "Aszinkron"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "Legalább egy oszlopnak meg kell jelennie a táblázatban."
@@ -2859,7 +2917,7 @@ msgstr "A szülői dokumentumtípus legalább egy mezője kötelező"
msgid "Attach"
msgstr "Csatolás"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Dokumentum Nyomtatvány Csatolása"
@@ -2957,19 +3015,26 @@ msgstr "Csatolmány Beállításai"
#. 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:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Csatolmányok"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "Csatlakozás kísérlete a QZ tálcával..."
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "A QZ tálca elindítására tett kísérlet..."
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "Attribúció"
@@ -3294,11 +3359,6 @@ msgstr "Kiváló Munka"
msgid "Awesome, now try making an entry yourself"
msgstr "Szuper, most próbáljon elkészíteni egy bejegyzést Ön"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr "Awesomebar"
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3404,17 +3464,12 @@ msgstr "Háttérszín"
msgid "Background Image"
msgstr "Háttérkép"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-msgstr "Háttérben Futó Feladatok"
-
#. 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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Háttérfeladatok"
@@ -3440,7 +3495,7 @@ msgstr "Háttérnyomtatás (>25 dokumentum esetén szükséges)"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Background Workers"
-msgstr "Háttér Munkások"
+msgstr "Háttérmunkások"
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
@@ -3527,8 +3582,8 @@ msgstr "Alapértelmezett URL"
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "Alapján"
@@ -3552,6 +3607,8 @@ msgstr "Alapvető"
msgid "Basic Info"
msgstr "Alapvető Információ"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3621,7 +3678,7 @@ msgstr "Kezdve"
msgid "Beta"
msgstr "Béta"
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "Jobb ha adunk hozzá még néhány betűt, vagy egy másik szót"
@@ -3749,18 +3806,11 @@ msgstr "Márka HTML"
msgid "Brand Image"
msgstr "Márka Kép"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr "Márka Logó"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr "Logó és Keresési Mező"
-
#. 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"
@@ -3831,7 +3881,7 @@ msgstr "Tömeges Törlés"
msgid "Bulk Edit"
msgstr "Tömeges Szerkesztés"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Tömeges Szerkesztés {0}"
@@ -3852,7 +3902,7 @@ msgstr "Tömeges PDF Exportálás"
msgid "Bulk Update"
msgstr "Tömeges Frissítés"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr "A tömeges jóváhagyás legfeljebb 500 dokumentumot támogat."
@@ -3864,7 +3914,7 @@ msgstr "A tömeges művelet a háttérben várakozik."
msgid "Bulk operations only support up to 500 documents."
msgstr "A tömeges műveletek csak 500 dokumentumig támogatottak."
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr "A tömeges {0} a háttérben várakozik."
@@ -4013,7 +4063,7 @@ msgstr "Gyorsítótár"
msgid "Cache Cleared"
msgstr "Gyorsítótár Törölve"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Számolás"
@@ -4063,12 +4113,12 @@ msgid "Callback Title"
msgstr "Visszahívási Cím"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4080,11 +4130,11 @@ msgstr "Kampány"
msgid "Campaign Description (Optional)"
msgstr "Kampány Leírása (nem kötelező)"
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr "Nem lehet átnevezni, mivel a {0} oszlop már jelen van a DocType-ban."
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr "Csak akkor válthat az Autoincrement elnevezési szabályra/ről, ha nincs adat a doctype-ban"
@@ -4094,7 +4144,7 @@ msgstr "Csak akkor válthat az Autoincrement elnevezési szabályra/ről, ha nin
msgid "Can only list down the document types which has been linked to the User document type."
msgstr "Csak azokat a dokumentumtípusokat tudja felsorolni, amelyek a Felhasználó dokumentumtípushoz kapcsolódnak."
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr "Nem követhető, mivel a változások nincsenek rögzítve."
@@ -4116,7 +4166,7 @@ msgstr "A {0} nem nevezhető át {1} -re, mert a {0} nem létezik."
msgid "Cancel"
msgstr "Mégsem"
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Mégsem"
@@ -4126,11 +4176,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Mégsem"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "Összes Visszavonása"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "Összes Dokumentum Visszavonása"
@@ -4142,7 +4192,7 @@ msgstr "Importálás Megszakítása"
msgid "Cancel Prepared Report"
msgstr "Előkészített Jelentés Megszakítása"
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "{0} dokumentumok törlése?"
@@ -4175,7 +4225,7 @@ msgstr "Visszavonás"
msgid "Cancelling documents"
msgstr "Dokumentumok visszavonása"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "{0} visszavonása"
@@ -4183,7 +4233,7 @@ msgstr "{0} visszavonása"
msgid "Cannot Download Report due to insufficient permissions"
msgstr "Nem lehet Jelentést letölteni a nem megfelelő jogosultságok miatt"
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr "Nem Lekérdezhető Értékek"
@@ -4191,7 +4241,7 @@ msgstr "Nem Lekérdezhető Értékek"
msgid "Cannot Remove"
msgstr "Nem Lehet Eltávolítani"
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr "Nem Lehet Frissíteni Belküldés Után"
@@ -4211,11 +4261,11 @@ msgstr "Nem lehet visszavonni beküldés előtt. Lásd Átvezetést {0}"
msgid "Cannot cancel {0}."
msgstr "Nem lehet visszavonni {0}."
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "A dokumentum státuszát nem lehet 0-ról (Tervezet) 2-re (Visszavont) változtatni"
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "A dokumentum státuszát nem lehet 1 (Beküldve) helyett 0-ra (Tervezet) változtatni"
@@ -4227,7 +4277,7 @@ msgstr "Nem lehet megváltoztatni a Visszavont dokumentum állapotát (Állap
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "Nem lehet megváltoztatni a Törölt dokumentum állapotát. Átvezetési sor {0}"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "Nem lehet megváltoztatni az automatikus elnevezést automatikusan növekedő-re/ről a Testreszabott Űrlapon"
@@ -4235,10 +4285,14 @@ msgstr "Nem lehet megváltoztatni az automatikus elnevezést automatikusan növe
msgid "Cannot create a {0} against a child document: {1}"
msgstr "Nem lehet {0} -t létrehozni egy gyermek dokumentumhoz: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "Nem lehet létrehozni privát munkaterület más felhasználók számára"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "Nem lehet törölni az Otthon és Csatolmányok mappát"
@@ -4247,15 +4301,15 @@ msgstr "Nem lehet törölni az Otthon és Csatolmányok mappát"
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Nem törölhető vagy visszavonható, mert a {0} {1} ehhez kapcsolódik: {2} {3} {4}"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "Nem lehet törölni szabványos műveletet. Ha akarja, elrejtheti"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "Nem törölhető szabványos dokumentum állapot."
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "Nem törölhető {0} szabványos mező. Ehelyett elrejtheti."
@@ -4266,11 +4320,11 @@ msgstr "Nem törölhető {0} szabványos mező. Ehelyett elrejt
msgid "Cannot delete standard field. You can hide it if you want"
msgstr "Nem lehet törölni szabványos mezőt. Elrejtheti, ha akarja"
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "Nem lehet törölni szabványos hivatkozást. Elrejtheti, ha akarja"
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr "Nem törölhető a {0} rendszer által generált mezőt. Ehelyett elrejtheti."
@@ -4298,7 +4352,7 @@ msgstr "Nem lehet szerkeszteni szabványos diagramokat"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Nem lehet szerkeszteni egy szabványos jelentést. Kérjük, másolja le és hozzon létre egy új jelentést"
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "Visszavont dokumentumot nem lehet szerkeszteni"
@@ -4311,7 +4365,7 @@ msgstr "Szabványos diagramok szűrői nem szerkeszthetők"
msgid "Cannot edit filters for standard number cards"
msgstr "Szabványos számkártyák szűrői nem szerkeszthetők"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "Szabványos mezők nem szerkeszthetők"
@@ -4327,15 +4381,15 @@ msgstr "{} fájl nem található"
msgid "Cannot get file contents of a Folder"
msgstr "Nem lehet lekérni egy mappa tartalmát"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Nem lehet több nyomtatót egyetlen nyomtatási formátumhoz rendelni."
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr "Nem lehet 5000-nél több sort tartalmazó táblázatot importálni."
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "Nem lehet csatolni a visszavont dokumentumot: {0}"
@@ -4347,7 +4401,7 @@ msgstr "Nem lehet leképezni, mivel a következő feltétel nem teljesül:"
msgid "Cannot match column {0} with any field"
msgstr "A(z) {0} oszlop nem illeszthető egyetlen mezőhöz sem"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "A sor nem mozgatható"
@@ -4372,7 +4426,7 @@ msgid "Cannot submit {0}."
msgstr "Nem lehet beküldeni {0}."
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "Nem lehet frissíteni: {0}"
@@ -4392,7 +4446,7 @@ msgstr "Nem lehet {0} {1}."
msgid "Capitalization doesn't help very much."
msgstr "A nagybetűs írásmód nem sokat segít."
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "Rögzítés"
@@ -4406,7 +4460,7 @@ msgstr "Kártya"
msgid "Card Break"
msgstr "Kártya Szünet"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "Kártya Címke"
@@ -4435,17 +4489,19 @@ msgstr "Kategória Leírás"
msgid "Category Name"
msgstr "Kategória Neve"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr "Központ"
-#: 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 "Bizonyos dokumentumokat, mint például a számlát, nem szabad módosítani, ha már véglegesek. Az ilyen dokumentumok végleges állapota a Beküldött. Korlátozhatja, hogy mely szerepkörök küldhetik be."
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4473,7 +4529,7 @@ msgstr "Levélfej Módosítása"
#. Label of the change_password (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Change Password"
-msgstr "Változtass Jelszót"
+msgstr "Jelszó Módosítás"
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
@@ -4534,7 +4590,7 @@ msgstr "Diagram Konfiguráció"
#. 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/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Diagram Neve"
@@ -4599,6 +4655,12 @@ msgstr "Jelölje be az oszlopokat a kiválasztáshoz, húzással állítsa be a
msgid "Check the Error Log for more information: {0}"
msgstr "További információkért nézze meg a hibanaplót: {0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr "Jelölje be ezt a lehetőséget, ha nem szeretné, hogy a felhasználóknak fiókot kelljen regisztrálniuk a webhelyén. A felhasználók nem kapnak íróasztal-hozzáférést, hacsak nem adod meg kifejezetten."
@@ -4650,7 +4712,7 @@ msgstr "Gyermek DocType"
msgid "Child Item"
msgstr "Gyerek Elem"
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr "A(z) {1} mező {0} gyermektáblájának virtuálisnak kell lennie"
@@ -4660,7 +4722,7 @@ msgstr "A(z) {1} mező {0} gyermektáblájának virtuálisnak kell lennie"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "A Gyermek Táblák táblázatként jelennek meg a többi DocType-ban"
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "A '{0}' gyermek lekérdezési mezőinek listának vagy tömbnek kell lenniük."
@@ -4668,7 +4730,7 @@ msgstr "A '{0}' gyermek lekérdezési mezőinek listának vagy tömbnek kell len
msgid "Choose Existing Card or create New Card"
msgstr "Válasszon meglévő Kártyát vagy hozzon létre új Kártyát"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "Válasszon egy blokkot vagy folytassa a gépelést"
@@ -4688,10 +4750,6 @@ msgstr "Válasszon egy ikont"
msgid "Choose authentication method to be used by all users"
msgstr "Válassza ki az összes felhasználó által használt hitelesítési módot"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr "A Chromium nincs letöltve. Kérjük, először futtassa a telepítőt."
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4708,11 +4766,11 @@ msgstr "Város/Település"
msgid "Clear"
msgstr "Törlés"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "Törlés és Sablon Hozzáadása"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "Törlés és Sablon Hozzáadása"
@@ -4720,7 +4778,7 @@ msgstr "Törlés és Sablon Hozzáadása"
msgid "Clear All"
msgstr "Összes törlése"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Hozzárendelés Törlése"
@@ -4746,7 +4804,7 @@ msgstr "Naplók Törlése Után (napok)"
msgid "Clear User Permissions"
msgstr "Felhasználói Engedélyek Törlése"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "Törölje az e-mail üzenetet és adja hozzá a sablont"
@@ -4814,7 +4872,7 @@ msgstr "Kattintson a Dinamikus Szűrők beállítása elemre"
msgid "Click to Set Filters"
msgstr "Kattintson a Szűrők Beállítása elemre"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "Kattints a {0} szerinti rendezéshez"
@@ -4878,7 +4936,7 @@ msgstr "Ügyfél Metaadatok"
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/website/doctype/web_page/web_page.js:103
msgid "Client Script"
-msgstr "Ügyfél Szkript"
+msgstr "Kliens Szkript"
#. Label of the client_secret (Password) field in DocType 'Connected App'
#. Label of the client_secret (Password) field in DocType 'Google Settings'
@@ -4922,7 +4980,7 @@ msgstr "Ügyfél Szkript"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Bezárás"
@@ -4932,7 +4990,7 @@ msgstr "Bezárás"
msgid "Close Condition"
msgstr "Bezárás Feltétel"
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr "Tulajdonságok bezárása"
@@ -4988,12 +5046,12 @@ msgstr "Kódkihívás módszere"
msgid "Collapse"
msgstr "Összezár"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Összezár"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Minden Összezárása"
@@ -5050,7 +5108,7 @@ msgstr "Összecsukhatóság Ettől Függ (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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5061,7 +5119,7 @@ msgstr "Szín"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5106,11 +5164,11 @@ msgstr "Oszlop Neve"
msgid "Column Name cannot be empty"
msgstr "Oszlop Neve nem lehet üres"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "Oszlopszélesség"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "Oszlopszélesség nem lehet nulla."
@@ -5153,7 +5211,7 @@ msgstr "Comm10E"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5300,12 +5358,12 @@ msgstr "Teljes"
msgid "Complete By"
msgstr "Teljesítve"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Regisztráció Befejezéséhez"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "Beállítás Befejezése"
@@ -5320,7 +5378,7 @@ msgstr "Beállítás Befejezése"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Befejezve"
@@ -5411,7 +5469,7 @@ msgstr "Beállítás"
msgid "Configure Chart"
msgstr "Diagram Konfigurálása"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "Oszlopok Konfigurálása"
@@ -5502,8 +5560,8 @@ msgstr "Csatlakozott Alkalmazás"
msgid "Connected User"
msgstr "Csatlakozott Felhasználó"
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "Csatlakoztatva a QZ tálcához!"
@@ -5621,7 +5679,7 @@ msgstr "{0} biztonsági javításokat tartalmaz"
#. 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:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5690,11 +5748,11 @@ msgstr "Hozzájárulás Állapota"
msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected."
msgstr "Szabályozza, hogy az új felhasználók regisztrálhatnak-e ezzel a közösségi bejelentkezési kulccsal. Ha nincs beállítva, akkor a Webhelybeállításokat tiszteletben tartják."
-#: frappe/public/js/frappe/utils/utils.js:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "Vágólapra másolva."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr "{0} {1} a vágólapra másolva"
@@ -5706,12 +5764,12 @@ msgstr "Hivatkozás Másolása"
msgid "Copy embed code"
msgstr "Beágyazási kód másolása"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "Hibák másolása vágólapra"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "Másolás a Vágólapra"
@@ -5732,7 +5790,7 @@ msgstr "A Core DocType-ok nem testreszabhatók."
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "Az alapmodulok {0} nem kereshetők globális kereséssel."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "Helyes verzió :"
@@ -5740,7 +5798,7 @@ msgstr "Helyes verzió :"
msgid "Could not connect to outgoing email server"
msgstr "Nem tudott csatlakozni a kimenő e-mail szerverre"
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "Nem található {0}"
@@ -5748,11 +5806,11 @@ msgstr "Nem található {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Nem sikerült a {0} oszlopot a {1} mezőhöz rendelni"
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr "Nem sikerült elemezni a mezőt: {0}"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr "Nem sikerült elindítani a Chromiumot. A részletekért tekintse meg a naplókat."
@@ -5760,7 +5818,7 @@ msgstr "Nem sikerült elindítani a Chromiumot. A részletekért tekintse meg a
msgid "Could not start up:"
msgstr "Nem sikerült elindulni:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "Nem sikerült menteni, kérjük, ellenőrizze a megadott adatokat"
@@ -5812,7 +5870,7 @@ msgstr "Számláló"
msgid "Country"
msgstr "Ország"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "Országkód Kötelező"
@@ -5839,15 +5897,16 @@ msgstr "Cr"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Létrehozás"
@@ -5860,13 +5919,13 @@ msgstr "Létrehozás és Folytatás"
msgid "Create Address"
msgstr "Cím Létrehozása"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "Kártya Létrehozása"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "Diagram Létrehozása"
@@ -5900,7 +5959,7 @@ msgstr "Napló Létrehozása"
msgid "Create New"
msgstr "Új Létrehozása"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Új Létrehozása"
@@ -5913,7 +5972,7 @@ msgstr "Új DocType Létrehozása"
msgid "Create New Kanban Board"
msgstr "Új Kanban Tábla Létrehozása"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr "Szűrő Mentése"
@@ -5929,18 +5988,18 @@ msgstr "Új Formátum Létrehozása"
msgid "Create a Reminder"
msgstr "Emlékeztető Létrehozása"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "Új létrehozása..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "Új rekord létrehozása"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Hozzon létre egy új {0}"
@@ -5957,7 +6016,7 @@ msgstr "Nyomtatási Formátum Létrehozása vagy Szerkesztése"
msgid "Create or Edit Workflow"
msgstr "Munkafolyamat Létrehozása vagy Szerkesztése"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "Első {0} létrehozása"
@@ -5969,20 +6028,28 @@ msgstr "Hozzon létre munkafolyamatot vizuálisan a Munkafolyamat Készítő seg
#: frappe/core/doctype/comment/comment.json
#: frappe/public/js/frappe/views/file/file_view.js:371
msgid "Created"
-msgstr "Létrehozva"
+msgstr "Létrehozva ekkor"
#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Created At"
msgstr "Létrehozva Ekkor"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Létrehozta"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "Egyéni mező {0} létrehozva a(z) {1} helyen"
@@ -6176,7 +6243,7 @@ msgstr "Egyedi Dokumentum Típusok (Engedély Kiválasztása)"
msgid "Custom Document Types Limit Exceeded"
msgstr "Egyedi Dokumentum Típusok Korlátja Túllépve"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "Egyedi Dokumentumok"
@@ -6187,15 +6254,15 @@ msgstr "Egyedi Dokumentumok"
msgid "Custom Field"
msgstr "Egyedi Mező"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "A {0} egyedi mezőt a rendszergazda hozza létre, és csak a rendszergazdai fiókon keresztül törölhető."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Egyéni Mezők csak a szabványos DocType-hoz adhatók hozzá."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Egyéni Mezők nem adhatók hozzá a Core DocType-okhoz."
@@ -6221,7 +6288,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr "Egyedi Csoport Keresés, ha kitöltve kell tartalmaznia a felhasználó helyőrzőt {0}, pl. 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/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "Egyedi HTML"
@@ -6267,7 +6334,7 @@ msgstr "Egyedi Felülírások"
msgid "Custom Report"
msgstr "Egyedi Jelentés"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "Egyedi Jelentések"
@@ -6292,11 +6359,11 @@ msgstr "Egyedi Oldalsáv Menü"
msgid "Custom Translation"
msgstr "Egyedi Fordítás"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "Egyedi mező átnevezése {0}-ra sikeresen megtörtént."
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr "A(z) {0} egyéni get_list metódusának egy QueryBuilder objektumot vagy None-t kell visszaadnia, ehelyett kapott: {1}"
@@ -6319,26 +6386,26 @@ msgstr "Egyedi?"
msgid "Customization"
msgstr "Testreszabás"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "Testreszabások Elvetve"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "Testreszabások Visszaállítva"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "Testreszabások a {0} exportált:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Testreszabás"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Testreszabás"
@@ -6435,7 +6502,7 @@ msgstr "Napi"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "A napi eseményösszefoglaló azokhoz a naptári eseményekhez kerül elküldésre, amelyekhez emlékeztetők vannak beállítva."
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "A napi eseményeknek ugyanazon a napon kell befejeződni."
@@ -6492,8 +6559,8 @@ msgstr "Sötét Téma"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "Műszerfal"
@@ -6743,7 +6810,7 @@ msgstr "Napok előtt"
msgid "Days Before or After"
msgstr "Napok előtt vagy után"
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "Holtpontra Jutott"
@@ -6940,11 +7007,11 @@ msgstr "Alapértelmezett Munkaállomás"
msgid "Default display currency"
msgstr "Alapértelmezetten megjelenő pénznem"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "A {0} mező 'Check' típusának alapértelmezett értéke '0' vagy '1' kell, hogy legyen"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "A {0} alapértelmezett értékének szerepelnie kell az opciók listájában."
@@ -7001,11 +7068,12 @@ msgstr "Késleltetett"
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -7013,7 +7081,7 @@ msgstr "Késleltetett"
msgid "Delete"
msgstr "Törlés"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Törlés"
@@ -7027,10 +7095,6 @@ msgstr "Törlés"
msgid "Delete Account"
msgstr "Fiók Törlése"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "Összes Törlése"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7060,7 +7124,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Lap Törlése"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "Törlés és Új Létrehozása"
@@ -7088,6 +7160,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "Teljes lap törlése mezőkkel"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7102,16 +7178,20 @@ msgstr "Lap törlése"
msgid "Delete this record to allow sending to this email address"
msgstr "Törölje ezt a rekordot, hogy engedélyezze a küldést erre az e-mail címre"
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "A {0} elem végleges törlése?"
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "{0} tétel végleges törlése?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7142,7 +7222,7 @@ msgstr "Törölt Név"
msgid "Deleted all documents successfully"
msgstr "Sikeresen törölte az összes dokumentumot"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Törölt!"
@@ -7249,6 +7329,7 @@ msgstr "Leszármazottai a (beleértve)"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7331,16 +7412,21 @@ msgstr "Asztal Téma"
msgid "Desk User"
msgstr "Asztal Felhasználó"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr "Asztal"
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "Parancsikon"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7370,11 +7456,11 @@ msgstr "Részletek"
msgid "Detect CSV type"
msgstr "CSV típusának észlelése"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "Nem adja hozzá"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "Nem távolította el"
@@ -7522,10 +7608,11 @@ msgstr "Tiltva"
msgid "Disabled Auto Reply"
msgstr "Automatikus Válasz Tiltva"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Elvet"
@@ -7539,11 +7626,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Elvet"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "{0} elvetése"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "Elvet?"
@@ -7617,11 +7704,11 @@ msgstr "Ne hozzon létre új felhasználót"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Ne hozzon létre új felhasználót, ha az e-mail címmel rendelkező felhasználó nem létezik a rendszerben"
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "Ne módosítsa a sablonban beállított fejléceket"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr "Ne figyelmeztessen többé erre: {0}"
@@ -7629,7 +7716,7 @@ msgstr "Ne figyelmeztessen többé erre: {0}"
msgid "Do you still want to proceed?"
msgstr "Szeretné még folytatni?"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "Visszavonja az összes kapcsolódó dokumentumokat?"
@@ -7687,7 +7774,6 @@ msgstr "A következő állapotok DocStatus-a megváltozott:
{0}{0}{0}{0} provided for the field {1} must have atleast one Link field"
msgstr "DocType {0} a mezőhöz megadott {1} legalább egy Link mezővel kell rendelkeznie"
@@ -7791,10 +7876,6 @@ msgstr "DocType egy Táblázat / Űrlap az alkalmazában."
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "A DocType-nak Beküldhetőnek kell lennie a kiválasztott dokumentumeseményhez"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "DocType-nak egy karakterláncnak kell lennie"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "DocType-nak legalább egy mezővel kell rendelkeznie"
@@ -7812,15 +7893,15 @@ msgstr "DocType melyre ez a munkafolyamat alkalmazható."
msgid "DocType required"
msgstr "DocType szükséges"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "DocType {0} nem létezik."
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "DocType {} nem található"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "DocType neve nem kezdődhet és nem zárulhat szóközzel"
@@ -7834,7 +7915,7 @@ msgstr "DocType-ok nem módosíthatók, kérjük, használja helyette a {0}"
msgid "Doctype"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "DocType neve legfeljebb {0} karakter lehet ({1})"
@@ -7873,7 +7954,7 @@ msgstr "Dokumentum Műveletek"
msgid "Document Follow"
msgstr "Dokumentum Követése"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "Dokumentum Követési Értesítés"
@@ -7896,19 +7977,19 @@ msgstr "Dokumentum Kapcsolás"
msgid "Document Links"
msgstr "Dokumentum Hivatkozások"
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "Dokumentumhivatkozások sor #{0}: Nem található a {1} mező a {2} DocType-ban"
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "Dokumentumhivatkozások sor #{0}: Érvénytelen doctype vagy mezőnév."
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "Dokumentumhivatkozások sor #{0}: A szülő DocType kötelező a belső hivatkozásokhoz"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr "Dokumentumhivatkozások sor #{0}: A tábla mezőneve kötelező a belső hivatkozásokhoz"
@@ -7927,9 +8008,9 @@ msgstr "Dokumentumhivatkozások sor #{0}: A tábla mezőneve kötelező a belső
msgid "Document Name"
msgstr "Dokumentum Neve"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "Dokumentum Nevének egy karakterláncnak kell lennie"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7946,7 +8027,7 @@ msgstr "Dokumentum Elnevezési Szabály Feltétele"
msgid "Document Naming Settings"
msgstr "Dokumentum Elnevezési Beállítások"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "Várólistás Dokumentum"
@@ -8050,7 +8131,7 @@ msgstr "Dokumentum Címe"
#: 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:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8070,11 +8151,11 @@ msgstr "Dokumentum Típus"
msgid "Document Type and Function are required to create a number card"
msgstr "A számkártya létrehozásához a Dokumentum Típus és a Függvény szükséges"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "Dokumentum Típus nem importálható"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "Dokumentum Típus nem lezárható"
@@ -8103,27 +8184,27 @@ msgid "Document Types and Permissions"
msgstr "Dokumentum Típusok és Engedélyek"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "Dokumentum Feloldva"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr "A dokumentum nem használható szűrőként"
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "A dokumentumkövetés nincs engedélyezve ennek a felhasználónak."
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "A dokumentumot visszavonták"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "A dokumentumot beküldték"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "A dokumentum vázlat állapotban van"
@@ -8135,11 +8216,11 @@ msgstr "A dokumentumot csak szerepkörrel rendelkező felhasználók szerkeszthe
msgid "Document not Relinked"
msgstr "Dokumentum nincs újracsatolva"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "A dokumentum átnevezése: {0} - {1}"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "A dokumentum átnevezése {0} -ról {1} -re várólistára került"
@@ -8155,10 +8236,6 @@ msgstr "A(z) {0} dokumentum már visszaállítva"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "A(z) {0} dokumentum {1} állapotát a {2} állította be"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "A {0} {1} dokumentum nem létezik"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8296,7 +8373,7 @@ msgstr "Letöltési Link"
msgid "Download PDF"
msgstr "PDF Letöltése"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "Jelentés Letöltése"
@@ -8380,7 +8457,7 @@ msgid "Due Date Based On"
msgstr "Határidő dátuma ez alapján"
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "Másol"
@@ -8388,19 +8465,15 @@ msgstr "Másol"
msgid "Duplicate Entry"
msgstr "Ismétlődő Bejegyzés"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "Ismétlődő Szűrőnév"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Ismétlődő Név"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "Sor Másolása"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "Aktuális sor duplikálása"
@@ -8408,6 +8481,18 @@ msgstr "Aktuális sor duplikálása"
msgid "Duplicate field"
msgstr "Mező másolása"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8495,9 +8580,10 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8508,7 +8594,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Szerkeszt"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Szerkeszt"
@@ -8518,7 +8604,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Szerkeszt"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Szerkeszt"
@@ -8539,15 +8625,15 @@ msgstr "Diagram Szerkesztése"
msgid "Edit Custom Block"
msgstr "Egyéni Blokk Szerkesztése"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "Egyedi HTML Szerkesztése"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "DocType Szerkesztése"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "DocType Szerkesztése"
@@ -8561,7 +8647,7 @@ msgstr "Meglévő Szerkesztése"
msgid "Edit Filters"
msgstr "Szűrők Szerkesztése"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "Szűrők Szerkesztése"
@@ -8574,7 +8660,7 @@ msgstr "Lábléc Szerkesztése"
msgid "Edit Format"
msgstr "Formátum Szerkesztése"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr "Teljes Űrlap Szerkesztése"
@@ -8632,7 +8718,7 @@ msgstr "Gyorslista Szerkesztése"
msgid "Edit Shortcut"
msgstr "Gyorsbillentyű Szerkesztése"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr "Oldalsáv Szerkesztése"
@@ -8655,11 +8741,11 @@ msgstr "Szerkesztőmód"
msgid "Edit the {0} Doctype"
msgstr "A(z) {0} Doctype szerkesztése"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "Szerkesztés a tartalom hozzáadásához"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "Szerkeszd a válaszodat"
@@ -8715,6 +8801,7 @@ msgstr "Elemválasztó"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8730,12 +8817,14 @@ msgstr "Elemválasztó"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8770,7 +8859,7 @@ msgstr "E-mail Fiók Tiltva."
msgid "Email Account Name"
msgstr "E-mail Fiók Neve"
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "E-mail Fiókot többször adta meg"
@@ -8968,7 +9057,7 @@ msgstr "Az E-mail a kukába került"
msgid "Email is mandatory to create User Email"
msgstr "E-mail kötelező a Felhasználó E-mail létrehozásához"
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "E-mail nem lett elküldve a(z) {0} címre (leiratkozott / letiltva)"
@@ -9007,7 +9096,7 @@ msgstr "A következő lehetséges munkafolyamatokkal fogjuk küldeni az e-mailt"
msgid "Embed code copied"
msgstr "Beágyazási kód másolva"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr "Üres alias nem megengedett"
@@ -9015,7 +9104,7 @@ msgstr "Üres alias nem megengedett"
msgid "Empty column"
msgstr "Üres oszlop"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr "Üres karakterlánc argumentumok nem engedélyezettek"
@@ -9160,7 +9249,7 @@ msgstr "Közösségi Bejelentkezés Engedélyezése"
#: frappe/website/doctype/website_settings/website_settings.js:139
msgid "Enable Tracking Page Views"
-msgstr "Oldalmegtekintések Követésének Engedélyezése"
+msgstr "Oldalmegtekintés Számának Követése"
#. Label of the enable_two_factor_auth (Check) field in DocType 'System
#. Settings'
@@ -9335,11 +9424,11 @@ msgstr "Győződjön meg arról, hogy a felhasználói és csoportos keresési
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Írja be az Ügyfél-azonosítót és az Ügyfél-titkot a Google Beállításokban."
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "Írja be az OTP alkalmazásban megjelenő kódot."
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr "Adja meg az e-mail címzett(ek)et a Címzett, CC vagy BCC mezőkben"
@@ -9366,6 +9455,10 @@ msgstr "Adja meg az alapértelmezett értékmezőket (kulcsokat) és értékeket
msgid "Enter folder name"
msgstr "Írja be a mappa nevét"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9396,7 +9489,7 @@ msgstr "Jogalany Neve"
msgid "Entity Type"
msgstr "Jogalany Típusa"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Egyenlő"
@@ -9430,7 +9523,7 @@ msgstr "Egyenlő"
msgid "Error"
msgstr "Hiba"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Hiba"
@@ -9445,12 +9538,12 @@ msgstr "Hiba Napló"
msgid "Error Logs"
msgstr "Hiba Naplók"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr "Hiba Üzenet"
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 "Hiba a QZ tálca alkalmazáshoz való csatlakozásban...
A Raw Print funkció használatához telepíteni és futtatni kell a QZ Tray alkalmazást.
Kattintson ide a QZ Tray letöltéséhez és telepítéséhez.
Kattintson ide, ha többet szeretne megtudni a nyers nyomtatásról."
@@ -9488,15 +9581,15 @@ msgstr "Hiba az értesítésben"
msgid "Error in print format on line {0}: {1}"
msgstr "Hiba a nyomtatási formátumban a {0} sorban: {1}"
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr "Hiba a {0}.get_list: {1}"
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr "Hiba a beágyazott szűrők elemzésekor: {0}. {1}"
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr "Hiba a „Felhasználói engedélyek figyelmen kívül hagyása” opció érvényesítésekor"
@@ -9512,15 +9605,15 @@ msgstr "Hiba az értesítés kiértékelése közben {0}. Kérjük, javítsa ki
msgid "Error {0}: {1}"
msgstr "Hiba {0}: {1}"
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "Hiba: Hiányzó adat a {0} táblában"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "Hiba: Hiányzik az érték erre {0}: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Hiba: {0} Sor #{1}: Hiányzik az érték ehhez: {2}"
@@ -9530,6 +9623,12 @@ msgstr "Hiba: {0} Sor #{1}: Hiányzik az érték ehhez: {2}"
msgid "Errors"
msgstr "Hibák"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9548,6 +9647,11 @@ msgstr "Esemény Kategória"
msgid "Event Frequency"
msgstr "Esemény Gyakorisága"
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9573,11 +9677,11 @@ msgstr "Esemény szinkronizálva van a Google Naptárral."
msgid "Event Type"
msgstr "Esemény Típusa"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "Események"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "Mai napi események a Naptárban"
@@ -9599,6 +9703,7 @@ msgid "Exact Copies"
msgstr "Pontos Másolatok"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr "Példa"
@@ -9669,7 +9774,7 @@ msgstr "Kód Végrehajtása"
msgid "Executing..."
msgstr "Futtatás..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "Futtatási idő: {0} mp"
@@ -9690,21 +9795,21 @@ msgstr "Meglévő Szerepkör"
msgid "Expand"
msgstr "Kiterjeszt"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Kiterjeszt"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Összes Kiterjesztése"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "A várt 'és' vagy 'vagy' operátor, talált: {0}"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "Kísérleti"
@@ -9756,20 +9861,21 @@ msgstr "A QR kód képoldal lejárati ideje"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportálás"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportálás"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "1 rekord exportálása"
@@ -9808,11 +9914,11 @@ msgstr "Jelentés Exportálás: {0}"
msgid "Export Type"
msgstr "Export Típusa"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "Az összes egyező sor exportálása?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "Az összes {0} sor exportálása?"
@@ -9828,6 +9934,10 @@ msgstr "Exportálás a Háttérben"
msgid "Export not allowed. You need {0} role to export."
msgstr "Export nem engedélyezett. {0} szerepkör szükséges az exporthoz."
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9840,7 +9950,7 @@ msgstr "Exportálja az adatokat fejlécjegyzetek és oszlopleírások nélkül"
msgid "Export without main header"
msgstr "Exportálás főfejléc nélkül"
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "{0} rekord exportálása"
@@ -9880,7 +9990,7 @@ msgstr "Külső"
#. Label of the external_link (Data) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "Külső Hivatkozás"
@@ -9929,12 +10039,17 @@ msgstr "Sikertelen Feladatok Száma"
msgid "Failed Jobs"
msgstr "Sikertelen Feladatok"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+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 "Sikertelen Bejelentkezések (az elmúlt 30 napban)"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "Sikertelen Tranzakciók"
@@ -9997,7 +10112,7 @@ msgstr "Nem sikerült előnézetet generálni a sorozatról"
msgid "Failed to get method for command {0} with {1}"
msgstr "Nem sikerült lekérni a {0} parancs metódusát a {1} paraméterrel"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "Nem sikerült megszerezni a {0} metódust a {1} címmel"
@@ -10009,7 +10124,7 @@ msgstr "Nem sikerült lekérni a webhely adatait"
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "Nem sikerült importálni a virtuális doctype {} fájlt, jelen van a vezérlőfájl?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "Nem sikerült optimalizálni a képet: {0}"
@@ -10025,7 +10140,7 @@ msgstr "Nem sikerült megjeleníteni a tárgyat: {}"
msgid "Failed to request login to Frappe Cloud"
msgstr "Nem sikerült bejelentkezést kérni a Frappe Cloudba"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "Nem sikerült elküldeni az e-mailt a következő tárggyal:"
@@ -10067,7 +10182,7 @@ msgstr "Weboldal ikon"
msgid "Fax"
msgstr "Fax"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "Visszajelzés"
@@ -10127,8 +10242,8 @@ msgstr "Mezők lekérése innen: {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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10138,7 +10253,7 @@ msgstr "Mező"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "A webes nézetekhez kötelező mező az \"útvonal\""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "A \"cím\" mező kötelező, ha a \"Webhely keresési mező\" be van állítva."
@@ -10146,7 +10261,7 @@ msgstr "A \"cím\" mező kötelező, ha a \"Webhely keresési mező\" be van ál
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "Az \"érték\" mező kötelező. Kérjük, adja meg az értéket a frissítéshez"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr "A(z) {0} mező nem található itt: {1}"
@@ -10155,7 +10270,7 @@ msgstr "A(z) {0} mező nem található itt: {1}"
msgid "Field Description"
msgstr "Mező Leírása"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Mező Hiányzik"
@@ -10203,7 +10318,7 @@ msgstr "Mező nyomon követése"
msgid "Field type cannot be changed for {0}"
msgstr "Mező típusa nem módosítható erre: {0}"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "A {0} mező nem létezik a {1} oldalon"
@@ -10211,11 +10326,11 @@ msgstr "A {0} mező nem létezik a {1} oldalon"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "A {0} mező nem létező doctype-ra utal {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "A(z) {0} mezőnek virtuális mezőnek kell lennie a virtuális doctype támogatásához."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "{0} mező nem található."
@@ -10237,7 +10352,7 @@ msgstr "A(z) {1} dokumentum {0} mezője nem mobilszám mező, és nem is Ügyfé
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Mezőnév"
@@ -10246,7 +10361,7 @@ msgstr "Mezőnév"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "A '{0}' mezőnév ütközik a {2} név {1} elemével a {3} mezőben"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "A {0} nevű mezőnévnek léteznie kell az automatikus elnevezés engedélyezéséhez"
@@ -10254,7 +10369,7 @@ msgstr "A {0} nevű mezőnévnek léteznie kell az automatikus elnevezés enged
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "A mezőnév legfeljebb 64 karakterből állhat ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Mezőnév nincs beállítva az Egyéni mezőhöz"
@@ -10270,7 +10385,7 @@ msgstr "A {0} mezőnév többször is megjelenik"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "A {0} mezőnév nem tartalmazhat speciális karaktereket, mint a(z) {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Mezőnév {0} ütközik a meta objektummal"
@@ -10318,7 +10433,7 @@ msgstr "A `file_name` vagy `file_url` mezőket be kell állítani a Fájlhoz"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "A mezőknek listának vagy tuple-nek kell lenniük, ha az as_list engedélyezve van"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "A mezőknek stringnek, listának, tuple-nek, pypika Fieldnek vagy pypika Functionnek kell lenniük"
@@ -10342,7 +10457,7 @@ msgstr "A vesszővel (,) elválasztott mezők bekerülnek a Keresés párbeszéd
msgid "Fieldtype"
msgstr "Mezőtípus"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Mezőtípust nem lehet megváltoztatni erről {0} erre {1}"
@@ -10418,12 +10533,12 @@ msgstr "A fájlnév nem tartalmazhat {0}"
msgid "File not attached"
msgstr "Fájl nincs csatolva"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Fájlméret meghaladta a maximálisan megengedett méretet {0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "A fájl túl nagy"
@@ -10450,12 +10565,17 @@ msgstr "Fájlok"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Szűrő"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10474,7 +10594,7 @@ msgstr "Meta Szűrése"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Név Szűrése"
@@ -10483,11 +10603,11 @@ msgstr "Név Szűrése"
msgid "Filter Values"
msgstr "Értékek Szűrése"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "A szűrőfeltétel hiányzik az operátor után: {0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr "A szűrőmezőkben érvénytelen a backtick jelölés: {0}"
@@ -10506,10 +10626,14 @@ msgid "Filtered Records"
msgstr "Szűrt Rekordok"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Szűrve: \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10533,7 +10657,7 @@ msgstr "Szűrve: \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Szűrők"
@@ -10564,10 +10688,6 @@ msgstr "JSON Szűrők"
msgid "Filters Section"
msgstr "Szűrők Szakasz"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Szűrők alkalmazva a következőre: {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Szűrők mentve"
@@ -10585,14 +10705,14 @@ msgstr "Szűrők: {0}"
msgid "Filters:"
msgstr "Szűrők:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Keresés '{0}' benne ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Megtalálta ezt: {0}, ebben: {1}"
@@ -10680,11 +10800,11 @@ msgstr "Lebegőpontos Szám Pontosság"
msgid "Fold"
msgstr "Becsuk"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Becsukás nem lehet az űrlap végén"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Becsukásnak a szekció elválasztás előtt kell lennie"
@@ -10713,12 +10833,12 @@ msgstr "Mappa {0} nem üres"
msgid "Folio"
msgstr "Folio"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Kövesse"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Követte"
@@ -10726,7 +10846,7 @@ msgstr "Követte"
msgid "Following Report Filters have missing values:"
msgstr "A következő jelentésszűrők hiányzó értékeket tartalmaznak:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Dokumentum követése {0}"
@@ -10734,7 +10854,7 @@ msgstr "Dokumentum követése {0}"
msgid "Following fields are missing:"
msgstr "Következő mezők hiányoznak:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Következő mezőkben érvénytelenek az értékek:"
@@ -10742,7 +10862,7 @@ msgstr "Következő mezőkben érvénytelenek az értékek:"
msgid "Following fields have missing values"
msgstr "Következő mezőkben hiányoznak az értékek"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Következő mezőkben hiányoznak az értékek:"
@@ -10811,7 +10931,7 @@ msgstr "Lábléc Részletek"
msgid "Footer HTML"
msgstr "Lábléc HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "Lábléc HTML beállítása a {0} mellékletből"
@@ -10848,7 +10968,7 @@ msgstr "Lábléc Sablon"
msgid "Footer Template Values"
msgstr "Lábléc Sablon Értékek"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "A lábléc lehet, hogy nem lesz látható, mivel a {0} opció le van tiltva."
@@ -10881,16 +11001,6 @@ msgstr "Dokumentum Típusához"
msgid "For Example: {} Open"
msgstr "Például: {} Megnyitás"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "A Linkek esetében adja meg a DocType-t tartományként.\n"
-"A Select (Kiválasztás) esetében adja meg az Options (Opciók) listáját, mindegyik új sorban."
-
#. 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'
@@ -10914,20 +11024,16 @@ msgstr "Értéknek"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "Dinamikus tárgy esetén használj Jinja tageket, mint ez: {{ doc.name }} Kézbesítve"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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 "Az összehasonlításhoz használja a >5, <10 vagy =324 értékeket. Tartományok esetén használja az 5:10-et (5 és 10 közötti értékek esetén)."
-#: 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 "Például ha visszavonja, és helyesbíti az SZLA004, akkor az egy új dokumentumot hoz létre: SZLA004-1 névvel. Ez segít nyomon követni az egyes módosításokat."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "Például:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Például: Ha hozzá szeretné fűzni a dokumentum azonosítót, használja ezt: {0}"
@@ -10955,7 +11061,7 @@ msgstr "Több cím esetén a címeket külön sorban kell megadni. pl.: test@tes
msgid "For updating, you can update only selective columns."
msgstr "A frissítéshez csak szelektív oszlopokat frissíthet."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "{0} esetén a(z) {1} szinten a(z) {2} sorban a(z) {3} sorban"
@@ -11005,7 +11111,8 @@ msgstr "Elfelejtette a jelszót?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Űrlap"
@@ -11117,7 +11224,7 @@ msgstr "Frappe Framework"
#: frappe/public/js/frappe/ui/theme_switcher.js:59
msgid "Frappe Light"
-msgstr "Frappe Light"
+msgstr "Frappe Világos"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -11184,7 +11291,7 @@ msgstr "Péntek"
msgid "From"
msgstr "-tól"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "-tól"
@@ -11205,7 +11312,7 @@ msgstr "Dátumtól"
msgid "From Date Field"
msgstr "Dátum Mezőtől"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Dokumentum Típusától"
@@ -11246,7 +11353,7 @@ msgstr "Tele"
msgid "Full Name"
msgstr "Teljes Név"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Teljes Oldal"
@@ -11259,7 +11366,7 @@ msgstr "Teljes Szélesség"
#. 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/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funkció"
@@ -11268,11 +11375,11 @@ msgstr "Funkció"
msgid "Function Based On"
msgstr "Funkció Alapján"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "A {0} funkció nincs fehérlistázva."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "A(z) {0} függvény argumentumokat vár, de nem adtak meg egyet sem"
@@ -11337,11 +11444,11 @@ msgstr "Általános"
msgid "Generate Keys"
msgstr "Kulcsok Generálása"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Új Jelentések Generálása"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Véletlenszerű Jelszó Generálása"
@@ -11351,8 +11458,8 @@ msgstr "Véletlenszerű Jelszó Generálása"
msgid "Generate Separate Documents For Each Assignee"
msgstr "Külön dokumentumok létrehozása minden megbízott számára"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Nyomonkövetési URL Generálása"
@@ -11463,7 +11570,7 @@ msgstr "Globális Gyorsbillentyűk"
msgid "Global Unsubscribe"
msgstr "Globális Leiratkozás"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Ugrás"
@@ -11523,7 +11630,7 @@ msgstr "Ugrás a(z) {0} listára"
msgid "Go to {0} Page"
msgstr "Ugrás a(z) {0} oldalra"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Cél"
@@ -11749,7 +11856,7 @@ msgstr "Csoportosítás Típus Szerint"
msgid "Group By field is required to create a dashboard chart"
msgstr "A Csoportosítva mező szükséges a műszerfal diagram létrehozásához"
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "A Csoportosítási szempontnak karakterláncnak kell lennie"
@@ -11829,6 +11936,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "HTML Szerkesztő"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11917,7 +12028,7 @@ msgstr "Fejléc"
msgid "Header HTML"
msgstr "Fejléc HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "Fejléc HTML beállítása a mellékletből {0}"
@@ -11953,7 +12064,7 @@ msgstr "Fejléc/Lábléc szkriptek segítségével dinamikus viselkedéseket leh
msgid "Headers"
msgstr "Fejlécek"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "A fejléceknek egy kulcs-érték párnak kell lenniük"
@@ -11990,7 +12101,7 @@ msgstr "Szia,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12045,7 +12156,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Itt a követési URL-címed"
@@ -12081,9 +12192,9 @@ msgstr "Rejtett"
msgid "Hidden Fields"
msgstr "Rejtett Mezők"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "Rejtett oszlopok a következők: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+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
@@ -12248,7 +12359,7 @@ msgstr "Tipp: A jelszó tartalmazzon szimbólumokat, számokat és nagybetűket"
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12331,18 +12442,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr "Úgy tűnik, nincs hozzáférése semmilyen munkaterülethez, de létrehozhat egyet magának. Kattintson a Munkatér létrehozása gombra, ha szeretne létrehozni egyet.
"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12393,7 +12504,6 @@ msgid "IP Address"
msgstr "IP Cím"
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12414,11 +12524,16 @@ msgstr "IP Cím"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Ikon"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12429,6 +12544,10 @@ msgstr "Ikon Stílus"
msgid "Icon Type"
msgstr "Ikon Típus"
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12460,13 +12579,13 @@ msgstr "Ha a Szigorú felhasználói engedély be van jelölve, és a felhaszná
msgid "If Checked workflow status will not override status in list view"
msgstr "Ha be van jelölve, a munkafolyamat állapota nem fogja felülírni az állapotát, listanézetben"
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Ha tulajdonos"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "Ha egy szerepkör nem rendelkezik 0. szintű hozzáféréssel, akkor a magasabb szintek értelmetlenek."
@@ -12523,7 +12642,7 @@ msgstr "Ha engedélyezve van, a dokumentum módosításai nyomon követésre ker
#. 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 "Ha engedélyezve van, a dokumentum megtekintések nyomon követésre kerülnek, ez többször is megtörténhet"
+msgstr "Ha engedélyezve van, a dokumentum megtekintések száma nyomon követésre kerül"
#. Description of the 'Only allow System Managers to upload public files'
#. (Check) field in DocType 'System Settings'
@@ -12593,12 +12712,20 @@ msgstr "Ha nincs beállítva, a valuta pontosság a számformátumtól függ"
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr "Ha be van állítva, csak az ilyen szerepkörrel rendelkező felhasználók férhetnek hozzá a táblázathoz. Ha nincs beállítva, akkor a DocType vagy a Report jogosultságok lesznek használva."
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+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 "Ha a felhasználó bármely Szerepkörbe tartozik, akkor \"Rendszer Felhasználó\" lesz. A \"Rendszer Felhasználó\" hozzáféréssel rendelkezik az asztalhoz"
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "Ha ezek az utasítások nem voltak hasznosak, kérjük, írja be javaslatait a GitHub Issues oldalra."
@@ -12698,7 +12825,7 @@ msgstr "Mellékletek figyelmen kívül hagyása e méret felett"
msgid "Ignored Apps"
msgstr "Mellőzött Alkalmazások"
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "Érvénytelen dokumentum állapota a következőhöz: {0}"
@@ -12764,11 +12891,11 @@ msgstr "Kép Megtekintése"
msgid "Image Width"
msgstr "Kép Szélesség"
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "A Képmezőnek érvényes mezőnévnek kell lennie"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "A képmezőnek kép csatolása típusúnak kell lennie"
@@ -12802,7 +12929,7 @@ msgstr "{0} megszemélyesítése"
msgid "Impersonated by {0}"
msgstr "Megszemélyesítve {0} által"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "{0} megszemélyesítése"
@@ -12820,11 +12947,12 @@ msgstr "Implicit"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "Importálás"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importálás"
@@ -13047,15 +13175,15 @@ msgid "Include Web View Link in Email"
msgstr "Webes nézet link beillesztése E-mail-be"
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "Tartalmazza szűrést"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr "Rejtett oszlopokat is"
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "Tartalmazza a behúzást"
@@ -13122,11 +13250,11 @@ msgstr "Helytelen Felhasználónév vagy Jelszó"
msgid "Incorrect Verification code"
msgstr "Helytelen Ellenőrző Kód"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "Helytelen érték a {0} sorban:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "Helytelen érték:"
@@ -13178,7 +13306,7 @@ msgstr "Indikátor"
msgid "Indicator Color"
msgstr "Jelzőszín"
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "Jelzőszín"
@@ -13225,15 +13353,15 @@ msgstr "Beszúrás fölé"
#. 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "Beszúrás utána"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "Az Beszúrás után mezőt nem lehet {0}-ként beállítani"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "Beszúrás Után mező '{0}', amit említ ebben az Egyedi mezőben '{1}', ezzel a címkével '{2}', nem létezik"
@@ -13263,8 +13391,8 @@ msgstr "Stílus Beszúrása"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "Telepítsd a {0}-t a Marketplace-ről"
@@ -13290,15 +13418,15 @@ msgstr "Telepített Appok"
msgid "Instructions"
msgstr "Utasítások"
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "Utasítások Kiküldve E-mailben"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "Nem elegendő jogosultsági szint a {0} számára"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "Nincs Jogosultság {0} számára"
@@ -13366,7 +13494,7 @@ msgstr "Érdeklődési körök"
msgid "Intermediate"
msgstr "Közbülső"
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "Belső Szerver Hiba"
@@ -13375,6 +13503,11 @@ msgstr "Belső Szerver Hiba"
msgid "Internal record of document shares"
msgstr "Belső rekord a dokumentum megosztásokhoz"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13414,13 +13547,13 @@ msgid "Invalid"
msgstr "Érvénytelen"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "Érvénytelen \"függ_tőle\" kifejezés"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Érvénytelen \"függ_tőle\" kifejezés a {0} szűrőben"
@@ -13460,7 +13593,7 @@ msgstr "Érvénytelen Dátum"
msgid "Invalid DocType"
msgstr "Érvénytelen DocType"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "Érvénytelen DocType: {0}"
@@ -13468,7 +13601,8 @@ msgstr "Érvénytelen DocType: {0}"
msgid "Invalid Doctype"
msgstr "Érvénytelen DocType"
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "Érvénytelen Mezőnév"
@@ -13476,8 +13610,8 @@ msgstr "Érvénytelen Mezőnév"
msgid "Invalid File URL"
msgstr "Érvénytelen Fájl URL"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr "Érvénytelen Szűrő"
@@ -13501,7 +13635,7 @@ msgstr "Érvénytelen Hivatkozás"
msgid "Invalid Login Token"
msgstr "Érvénytelen Bejelentkezési Token"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "Érvénytelen Bejelentkezés. Próbálja újra."
@@ -13509,7 +13643,7 @@ msgstr "Érvénytelen Bejelentkezés. Próbálja újra."
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Érvénytelen Mail Szerver. Kérjük orvosolja, és próbálja újra."
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "Érvénytelen Elnevezési Sorozat: {}"
@@ -13520,8 +13654,8 @@ msgstr "Érvénytelen Elnevezési Sorozat: {}"
msgid "Invalid Operation"
msgstr "Érvénytelen Művelet"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "Érvénytelen Opció"
@@ -13533,7 +13667,7 @@ msgstr "Érvénytelen Kimenő Levelezőszerver vagy Port: {0}"
msgid "Invalid Output Format"
msgstr "Érvénytelen Kimeneti Formátum"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "Érvénytelen Felülírás"
@@ -13546,11 +13680,11 @@ msgstr "Érvénytelen Paraméterek."
msgid "Invalid Password"
msgstr "Érvénytelen Jelszó"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "Érvénytelen Telefonszám"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Érvénytelen Kérés"
@@ -13559,7 +13693,7 @@ msgstr "Érvénytelen Kérés"
msgid "Invalid Search Field {0}"
msgstr "Érvénytelen Keresési Mező {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "Érvénytelen Tábla Mezőnév"
@@ -13578,7 +13712,7 @@ msgstr "Érvénytelen URL"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Érvénytelen Felhasználónév vagy Támogatási Jelszó. Kérjük orvosolja, és próbálja újra."
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "Érvénytelen Értékek"
@@ -13590,7 +13724,7 @@ msgstr "Érvénytelen Webook Titok Kód"
msgid "Invalid aggregate function"
msgstr "Érvénytelen összesítő függvény"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Érvénytelen alias formátum: {0}. Az aliasnak egyszerű azonosítónak kell lennie."
@@ -13598,19 +13732,19 @@ msgstr "Érvénytelen alias formátum: {0}. Az aliasnak egyszerű azonosítónak
msgid "Invalid app"
msgstr "Érvénytelen alkalmazás"
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Érvénytelen argumentum formátum: {0}. Csak idézőjeles karakterláncok vagy egyszerű mezőnevek engedélyezettek."
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr "Érvénytelen argumentumtípus: {0}. Csak karakterláncok, számok, dicts és None engedélyezettek."
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Érvénytelen karakterek a mezőnévben: {0}. Csak betűk, számok és aláhúzások engedélyezettek."
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr "Érvénytelen karakterek a táblázat nevében: {0}"
@@ -13618,18 +13752,22 @@ msgstr "Érvénytelen karakterek a táblázat nevében: {0}"
msgid "Invalid column"
msgstr "Érvénytelen oszlop"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr "Érvénytelen feltétel típus az egymásba ágyazott szűrőkben: {0}"
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Érvénytelen irány a rendezési sorrendben: {0}. 'ASC' vagy 'DESC' értéknek kell lennie."
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "Érvénytelen dokumentumállapot"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "Érvénytelen kifejezés a szűrőben {0}"
@@ -13638,11 +13776,11 @@ msgstr "Érvénytelen kifejezés a szűrőben {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Érvénytelen kifejezés a szűrőben {0} ({1})"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "Érvénytelen mezőformátum a SELECT esetében: {0}. A mezőneveknek egyszerűnek, backtick (adatbázis formátum), táblázat-minősítettnek, aliasnak vagy '*'-nak kell lenniük."
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "Érvénytelen mezőformátum a {0}: {1}. Használja a 'field', 'link_field.field' vagy 'child_table.field' formátumot."
@@ -13650,11 +13788,11 @@ msgstr "Érvénytelen mezőformátum a {0}: {1}. Használja a 'field', 'link_fie
msgid "Invalid field name {0}"
msgstr "Érvénytelen mezőnév {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr "Érvénytelen mezőtípus: {0}"
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Érvénytelen mezőnév '{0}' az automatikus névadással"
@@ -13662,11 +13800,11 @@ msgstr "Érvénytelen mezőnév '{0}' az automatikus névadással"
msgid "Invalid file path: {0}"
msgstr "Érvénytelen fájl elérési út: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Érvénytelen szűrőfeltétel: {0}. Listát vagy tuple-t várt."
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Érvénytelen szűrőmező formátum: {0}. Használja a 'fieldname' vagy a 'link_fieldname.target_fieldname' szót."
@@ -13674,7 +13812,7 @@ msgstr "Érvénytelen szűrőmező formátum: {0}. Használja a 'fieldname' vagy
msgid "Invalid filter: {0}"
msgstr "Érvénytelen szűrő: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "Érvénytelen függvény argumentum típusa: {0}. Csak karakterláncok, számok, listák és None engedélyezettek."
@@ -13691,19 +13829,19 @@ msgstr "Érvénytelen json lett hozzáadva az egyéni beállításokban: {0}"
msgid "Invalid key"
msgstr "Érvénytelen kulcs"
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "Érvénytelen névtípus (egész szám) a varchar name oszlophoz"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "Érvénytelen elnevezési sorozat {}: hiányzik a pont (.)"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr "Érvénytelen elnevezési sorozat {}: pont (.) hiányzik a numerikus helyőrző előtt. Kérjük, használjon olyan formátumot, mint ABCD.#####."
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr "Érvénytelen beágyazott kifejezés: a szótárnak függvényt vagy operátort kell ábrázolnia"
@@ -13727,11 +13865,11 @@ msgstr "Érvénytelen a kérés törzse"
msgid "Invalid role"
msgstr "Érvénytelen szerepkör"
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr "Érvénytelen egyszerű szűrő formátum: {0}"
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Érvénytelen kezdet vagy szűrőfeltétel: {0}. Listát vagy tuple-t várt."
@@ -13748,24 +13886,24 @@ msgstr "Érvénytelen token állapot! Ellenőrizze, hogy a tokent az OAuth-felha
msgid "Invalid username or password"
msgstr "Érvénytelen felhasználónév vagy jelszó"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "Érvénytelen érték van megadva az UUID-hoz: {}"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "Érvénytelen értékek a mezőkhöz:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "Érvénytelen wkhtmltopdf verzió"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "Érvénytelen {0} feltétel"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr "Érvénytelen {0} szótár formátum"
@@ -13893,7 +14031,7 @@ msgstr "Dinamikus URL?"
msgid "Is Folder"
msgstr "Mappa"
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Globális"
@@ -13964,7 +14102,7 @@ msgstr "Nyilvános"
msgid "Is Published Field"
msgstr "Közzétéve Mező"
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "A Közzétéve mezőnek érvényes mezőnévnek kell lennie"
@@ -14209,8 +14347,8 @@ msgstr "A feladat sikeresen leállt"
msgid "Join video conference with {0}"
msgstr "Csatlakozz videokonferenciához a következővel: {0}"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "Ugrás a mezőre"
@@ -14533,7 +14671,7 @@ msgstr "Felirat Súgó"
msgid "Label and Type"
msgstr "Felirat és Típus"
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "Felirat kötelező"
@@ -14556,7 +14694,7 @@ msgstr "Tájkép"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Nyelv"
@@ -14602,6 +14740,14 @@ msgstr "Elmúlt 90 nap"
msgid "Last Active"
msgstr "Utoljára Aktív"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14703,7 +14849,7 @@ msgstr "Utoljára Módosította"
#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:212
#: frappe/public/js/frappe/model/model.js:126
msgid "Last Updated On"
-msgstr "Utoljára Módosítva ekkor"
+msgstr "Frissítve ekkor"
#. Label of the last_user (Link) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
@@ -14726,6 +14872,11 @@ msgstr "Tavaly"
msgid "Last synced {0}"
msgstr "Utoljára Szinkronizálva: {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "Elrendezés Visszaállítása"
@@ -14753,9 +14904,15 @@ msgstr "Beszélgetés elhagyása"
msgid "Ledger"
msgstr "Főkönyv"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14849,7 +15006,7 @@ msgstr "Levél"
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14878,7 +15035,7 @@ msgstr "Levélfejléc Neve"
msgid "Letter Head Scripts"
msgstr "Levél Fejléc Szrikptek"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "Levél Fejléc nem lehet egyszerre letiltott és alapértelmezett"
@@ -14900,7 +15057,7 @@ msgstr "Levélfejléc HTML-ben"
msgid "Level"
msgstr "Szint"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "A 0. szint a dokumentumszintű jogosultságok, a magasabb szintek a mezőszintű jogosultságok."
@@ -14941,7 +15098,7 @@ msgstr "Világos Téma"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Mint"
@@ -14965,7 +15122,7 @@ msgstr "Kedvelések"
msgid "Limit"
msgstr "Korlát"
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr "A határértéknek nem negatív egész számnak kell lennie"
@@ -15091,7 +15248,7 @@ msgstr "Hivatkozás Címe"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -15109,7 +15266,7 @@ msgstr "Hivatkozás a Sorban"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr "Hivatkozás Típusa"
@@ -15152,6 +15309,7 @@ msgstr "LinkedIn"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15173,8 +15331,8 @@ msgstr "Hivatkozások"
#: 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr "Lista"
@@ -15202,12 +15360,12 @@ msgstr "Listaszűrő"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/website/doctype/web_form/web_form.json
msgid "List Settings"
-msgstr "Lista Beállításai"
+msgstr "Lista Beállítások"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
-msgstr "Lista Beállításai"
+msgstr "Lista Beállítások"
#: frappe/public/js/frappe/list/base_list.js:203
msgid "List View"
@@ -15216,9 +15374,9 @@ msgstr "Lista Nézet"
#. Name of a DocType
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "List View Settings"
-msgstr "Lista Nézet Beállításai"
+msgstr "Listanézet Beállítások"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "Dokumentumtípus listázása"
@@ -15245,7 +15403,7 @@ msgstr "Végrehajtott javítások listája"
msgid "List setting message"
msgstr "Lista beállítási üzenet"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "Listák"
@@ -15254,7 +15412,7 @@ msgstr "Listák"
msgid "Load Balancing"
msgstr "Terheléselosztás"
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15272,10 +15430,10 @@ msgstr "Továbbiak Betöltése"
#: 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "Betöltés"
@@ -15292,8 +15450,8 @@ msgid "Loading versions..."
msgstr "Verziók betöltése..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15303,7 +15461,8 @@ msgid "Loading..."
msgstr "Betöltés..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr "Tartózkodási Hely"
@@ -15376,6 +15535,11 @@ msgstr "Kijelentkezett"
msgid "Login"
msgstr "Bejelentkezés"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15451,7 +15615,7 @@ msgstr "Bejelentkezés új beszélgetés indításához"
msgid "Login to {0}"
msgstr "Bejelentkezés ide: {0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "Bejelentkezési token szükséges"
@@ -15518,8 +15682,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr "Kijelentkezés az összes eszközről a jelszó megváltoztatása után"
#. 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
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Naplók"
@@ -15550,7 +15713,7 @@ msgstr "Úgy tűnik, nem változtattad meg az értéket"
msgid "Looks like you haven’t added any third party apps."
msgstr "Úgy tűnik, nem adtál hozzá harmadik féltől származó alkalmazásokat."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "Úgy tűnik, nem kaptál értesítéseket."
@@ -15700,7 +15863,7 @@ msgstr "Kötelező mezők a táblázatban: {0}, Sor: {1}"
msgid "Mandatory fields required in {0}"
msgstr "Kötelező mezők szükséges ebben {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "Kötelező mezők szükségesek:"
@@ -15762,7 +15925,7 @@ msgstr "Felső Margó"
msgid "MariaDB Variables"
msgstr "MariaDB Változók"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "Összes megjelölése olvasottként"
@@ -15814,9 +15977,12 @@ msgstr "Marketing Menedzser"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "Maszk"
@@ -15878,7 +16044,7 @@ msgstr "Max automatikus e-mail jelentés felhasználónként"
msgid "Max signups allowed per hour"
msgstr "Óránként maximális regisztrációk száma"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "A Currency típus maximális szélessége 100px a {0} sorban"
@@ -15899,20 +16065,27 @@ msgstr "Elérte a maximális csatolási korlátot {0}."
msgid "Maximum {0} rows allowed"
msgstr "Maximum {0} sor engedélyezett"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Nekem"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "Beküld, Visszavon, Helyesbít jelentése"
+msgid "Meaning of Different Permission Types"
+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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15956,12 +16129,12 @@ msgstr "Említés"
msgid "Mentions"
msgstr "Említések"
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "Menü"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Összevonás meglévővel"
@@ -15995,13 +16168,13 @@ msgstr "Összevonást csak Csoport-tól-csoport között vagy Levélcsomópont-t
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Üzenet"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Üzen"
@@ -16032,7 +16205,7 @@ msgstr "Üzenet Elküldve"
msgid "Message Type"
msgstr "Üzenet Típusa"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Üzenet kivágva"
@@ -16129,7 +16302,7 @@ msgstr "Metaadat"
msgid "Method"
msgstr "Módszer"
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "Metódus Nincs Engedélyezve"
@@ -16218,7 +16391,7 @@ msgstr "Asszony"
msgid "Missing DocType"
msgstr "Hiányzó DocType"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "Hiányzó Mező"
@@ -16238,7 +16411,7 @@ msgstr "Hiányzó Engedély"
msgid "Missing Value"
msgstr "Hiányzó Érték"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16303,7 +16476,7 @@ msgstr "Modális Kiváltó"
#: 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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16350,9 +16523,8 @@ msgstr "Modul Bevezetése"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "Modulprofil"
@@ -16369,7 +16541,7 @@ msgstr "Modul betanítási folyamatának visszaállítása"
msgid "Module to Export"
msgstr "Exportálandó Modul"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "Modul {} nem található"
@@ -16471,7 +16643,7 @@ msgstr "További információk"
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
-msgstr "Több Információ"
+msgstr "További információk"
#: frappe/website/doctype/help_article/templates/help_article.html:19
#: frappe/website/doctype/help_article/templates/help_article.html:33
@@ -16484,9 +16656,9 @@ msgstr "További cikkek: {0}"
msgid "More content for the bottom of the page."
msgstr "További tartalom az oldal aljára."
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
-msgstr "Legtöbbet használt"
+msgstr "Leggyakrabban használt"
#: frappe/utils/password.py:75
msgid "Most probably your password is too long."
@@ -16499,7 +16671,7 @@ msgstr "Valószínűleg a jelszava túl hosszú."
msgid "Move"
msgstr "Áthelyezés"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Áthelyezés ide"
@@ -16511,19 +16683,19 @@ msgstr "Lomtárba Helyezés"
msgid "Move current and all subsequent sections to a new tab"
msgstr "Az aktuális és az összes következő szakasz áthelyezése egy új lapra"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "Mozgassa a kurzort a fenti sorba"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "Mozgassa a kurzort az alábbi sorba"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "Mozgassa a kurzort a következő oszlopra"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "Mozgassa a kurzort az előző oszlopra"
@@ -16535,7 +16707,7 @@ msgstr "Szakaszok áthelyezése új lapra"
msgid "Move the current field and the following fields to a new column"
msgstr "Az aktuális mező és a következő mezők áthelyezése egy új oszlopba"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Ugrás a sorszámra"
@@ -16653,7 +16825,7 @@ msgstr "Név (Doumentum Neve)"
msgid "Name already taken, please set a new name"
msgstr "A név már foglalt, kérjük, adjon meg egy új nevet"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "Név nem tartalmazhat speciális karaktereket, mint például {0}"
@@ -16665,7 +16837,7 @@ msgstr "Dokument Típus (DocType) név melyet ehhez a mezőhöz szeretne kötni.
msgid "Name of the new Print Format"
msgstr "Új Nyomtatási Formátum Neve"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "A {0} neve nem lehet {1}"
@@ -16706,7 +16878,7 @@ msgstr "Elnevezési Szabály"
msgid "Naming Series"
msgstr "Névsorozatok"
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Névsorozat kötelező"
@@ -16730,11 +16902,6 @@ msgstr "Navigációs Sáv Elem"
msgid "Navbar Settings"
msgstr "Navigációs Sáv Beállítások"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-msgstr "Navigációs sáv stílus"
-
#. Label of the navbar_template (Link) field in DocType 'Website Settings'
#. Label of the navbar_template_section (Section Break) field in DocType
#. 'Website Settings'
@@ -16748,39 +16915,44 @@ msgstr "Navigációs Sáv Sablon"
msgid "Navbar Template Values"
msgstr "Navigációs Sáv Sablon Értékek"
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Navigálás listában lefelé"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navigálás a listában felfelé"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "Navigálás a fő tartalomhoz"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr "Navigációs Beállítások"
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "Segítségre van szüksége?"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Munkaterület-kezelői szerepkör szükséges más felhasználók privát munkaterületének szerkesztéséhez"
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Negatív Érték"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr "A beágyazott szűrőket listaként vagy tuple-ként kell megadni."
@@ -16802,6 +16974,7 @@ msgstr "Soha"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16818,7 +16991,7 @@ msgstr "Új Tevékenység"
#: 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "Új Cím"
@@ -16834,8 +17007,8 @@ msgstr "Új Kapcsolat"
msgid "New Custom Block"
msgstr "Új Egyéni Blokk"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "Új Egyedi Nyomtatási Formátum"
@@ -16884,7 +17057,7 @@ msgstr "Új Üzenet a Honlap Kapcsolat Oldalról"
#. 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:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Új Név"
@@ -16905,8 +17078,8 @@ msgstr "Új Bevezetés"
msgid "New Password"
msgstr "Új Jelszó"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Új Nyomtatási Formátum Neve"
@@ -16933,8 +17106,8 @@ msgstr "Új Parancsikon"
msgid "New Users (Last 30 days)"
msgstr "Új Felhasználók (elmúlt 30 nap)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "Új Érték"
@@ -16942,7 +17115,7 @@ msgstr "Új Érték"
msgid "New Workflow Name"
msgstr "Új Munkafolyamat Neve"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "Új Munkaterület"
@@ -16987,32 +17160,32 @@ msgstr "Az új felhasználókat a rendszergazdáknak manuálisan kell regisztrá
msgid "New value to be set"
msgstr "Új érték kerül beállításra"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Új {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Új {0} Létrehozva"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Új {0} {1} hozzáadva az Műszerfalhoz {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "Új {0} {1} létrehozva"
@@ -17024,7 +17197,7 @@ msgstr "Új {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Az alábbi alkalmazásokhoz új {} kiadások állnak rendelkezésre"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "Az újonnan létrehozott felhasználónak {0} nincsenek engedélyezett szerepkörei."
@@ -17045,7 +17218,7 @@ msgstr "Hírlevél Kezelő"
msgid "Next"
msgstr "Következő"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "Következő"
@@ -17072,12 +17245,16 @@ msgstr "Következő 7 nap"
msgid "Next Action Email Template"
msgstr "Következő Művelet E-mail Sablon"
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 "Következő Műveletek HTML"
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr "Következő Dokumentum"
@@ -17144,20 +17321,24 @@ msgstr "Következő Kattintáskor"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nem"
@@ -17227,7 +17408,7 @@ msgstr "Nincs Szűrő Beállítva"
msgid "No Google Calendar Event to sync."
msgstr "Nincs szinkronizálható Google Naptár-esemény."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "Nincsenek Képek"
@@ -17246,23 +17427,23 @@ msgstr "Nem található LDAP-felhasználó az e-mailhez: {0}"
msgid "No Label"
msgstr "Nincs Címke"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: 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 "Nincs Levélfejléc"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "Nincs megadva név a(z) {0} számára"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "Nincs Új Értesítés"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "Nincsenek Engedélyek Megadva"
@@ -17282,11 +17463,11 @@ msgstr "Nincsenek Engedélyezett Diagramok ezen a Műszerfalon"
msgid "No Preview"
msgstr "Nincs Előnézet"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "Nincs Elérhető Előnézet"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "Nincs elérhető nyomtató."
@@ -17294,7 +17475,7 @@ msgstr "Nincs elérhető nyomtató."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "Nincsenek RQ Workerek csatlakoztatva. Próbálja meg újraindítani a bench-et"
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "Nincsenek Találatok"
@@ -17302,7 +17483,7 @@ msgstr "Nincsenek Találatok"
msgid "No Results found"
msgstr "Nincs Találat"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "Nincsenek Megadva Szerepkörök"
@@ -17318,7 +17499,7 @@ msgstr "Nincsenek Javaslatok"
msgid "No Tags"
msgstr "Nincsenek Címkék"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "Nincsenek Közelgő Események"
@@ -17338,7 +17519,7 @@ msgstr "Nincsenek elérhető automatikus optimalizálási javaslatok."
msgid "No changes in document"
msgstr "Nincsenek változások a dokumentumban"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "Nem történt változás"
@@ -17402,7 +17583,7 @@ msgstr "Nem találtunk Kanban oszlopként használható mezőket. Használja a T
msgid "No file attached"
msgstr "Nincs csatolt fájl"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "Nincsenek szűrők"
@@ -17450,11 +17631,11 @@ msgstr "Sorok száma (max. 500)"
msgid "No of Sent SMS"
msgstr "Elküldött SMS-ek száma"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "Nincs engedélye erre {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Nincs engedélye a '{0}' {1}"
@@ -17463,7 +17644,7 @@ msgstr "Nincs engedélye a '{0}' {1}"
msgid "No permission to read {0}"
msgstr "Nincs engedélye megtekintésre {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "Nincs engedélye a {0} {1} {2}"
@@ -17479,7 +17660,7 @@ msgstr "Nincs rekord ebben: {0}"
msgid "No records tagged."
msgstr "Nincsenek címkézett rekordok."
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "Nem lesznek exportálva rekordok"
@@ -17487,7 +17668,7 @@ msgstr "Nem lesznek exportálva rekordok"
msgid "No rows"
msgstr "Nincsenek sorok"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr "Nincsenek kijelölt sorok"
@@ -17499,11 +17680,12 @@ msgstr "Nincs tárgy"
msgid "No template found at path: {0}"
msgstr "Nem találtunk sablont a következő elérési útvonalon: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr "Egyetlen felhasználónak sincs szerepköre {0}"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "Nincs megjeleníthető érték"
@@ -17515,7 +17697,7 @@ msgstr "Nem {0}"
msgid "No {0} found"
msgstr "{0} nem található"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Nem található {0} a megfelelő szűrőkkel. Töröld a szűrőket az összes {0} megtekintéséhez."
@@ -17524,7 +17706,7 @@ msgid "No {0} mail"
msgstr "Nincs {0} levél"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Sorsz."
@@ -17567,12 +17749,12 @@ msgstr "Normalizált Példányok"
msgid "Normalized Query"
msgstr "Normalizált Lekérdezés"
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "Nem Engedélyezett"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "Nem engedélyezett: Letiltott felhasználó"
@@ -17614,7 +17796,7 @@ msgstr "Nem kapcsolódik semmilyen rekordhoz"
msgid "Not Nullable"
msgstr "Nem nullázható"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17623,7 +17805,7 @@ msgstr "Nem nullázható"
msgid "Not Permitted"
msgstr "Nem Engedélyezett"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "Nem Engedélyezett a(z) {0} megtekintése"
@@ -17632,8 +17814,8 @@ msgstr "Nem Engedélyezett a(z) {0} megtekintése"
msgid "Not Published"
msgstr "Nincs Közzétéve"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17653,7 +17835,7 @@ msgstr "Nincs Megtekintve"
msgid "Not Sent"
msgstr "Nincs Elküldve"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "Nincs Beállítva"
@@ -17667,15 +17849,15 @@ msgstr "Nincs Beállítva"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Nem érvényes vesszővel elválasztott érték (CSV fájl)"
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "Nem érvényes Felhasználói Kép."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "Nem érvényes Munkafolyamat Művelet"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "Nem érvényes felhasználó"
@@ -17683,7 +17865,7 @@ msgstr "Nem érvényes felhasználó"
msgid "Not active"
msgstr "Nem aktív"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "Nem engedélyezett a(z) {0} számára: {1}"
@@ -17703,11 +17885,11 @@ msgstr "Nem engedélyezett a visszavont dokumentumok nyomtatása"
msgid "Not allowed to print draft documents"
msgstr "Nem engedélyezett a vázlatok nyomtatása"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "Nem engedélyezett a vezérlő engedélyének ellenőrzésével"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Nem található"
@@ -17720,11 +17902,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Nem Fejlesztői Módban! Állítsa be a site_config.json-ban, vagy hozzon létre 'Egyedi' DocType-ot."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nem engedélyezett"
@@ -17752,7 +17934,7 @@ msgstr "Megjegyzést Látta"
msgid "Note:"
msgstr "Jegyzet:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Megjegyzés: Az oldal név megváltoztatása megtöri az oldalhoz tartozó előző URL címet."
@@ -17784,7 +17966,7 @@ msgstr "Megjegyzés: A fiók törlésére irányuló kérelmét {0} órán belü
msgid "Notes:"
msgstr "Megjegyzés:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "Semmi Új"
@@ -17796,8 +17978,8 @@ msgstr "Nincs mit újracsinálni"
msgid "Nothing left to undo"
msgstr "Nincs mit visszavonni"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17808,11 +17990,13 @@ msgid "Nothing to update"
msgstr "Nincs frissítendő"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "Értesítés"
@@ -17828,7 +18012,7 @@ msgstr "Értesítés Címzettje"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "Értesítési Beállítások"
@@ -17837,11 +18021,6 @@ msgstr "Értesítési Beállítások"
msgid "Notification Subscribed Document"
msgstr "Értesítés Feliratkozott Dokumentumról"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr "Értesítés Összefoglaló"
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "Értesítés elküldve a következő címre"
@@ -17859,13 +18038,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "Értesítés: a(z) {0} felhasználónak nincs mobilszám beállítva"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Értesítések"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "Értesítések Kikapcsolva"
@@ -18101,7 +18282,7 @@ msgstr "Az OTP titok visszaállításra került. A következő bejelentkezéskor
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr "Az OTP helykitöltőt a következőképpen kell definiálni: {{ otp }} "
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "Az OTP beállítása az OTP App segítségével nem fejeződött be. Kérjük, lépjen kapcsolatba a rendszergazdával."
@@ -18141,7 +18322,7 @@ msgstr "Eltolás X"
msgid "Offset Y"
msgstr "Eltolás Y"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "Az eltolásnak nem negatív egész számnak kell lennie"
@@ -18149,7 +18330,7 @@ msgstr "Az eltolásnak nem negatív egész számnak kell lennie"
msgid "Old Password"
msgstr "Régi Jelszó"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Régi és új mezőnevek megegyeznek."
@@ -18216,7 +18397,7 @@ msgstr "Most vagy utána"
msgid "On or Before"
msgstr "Most vagy előtte"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "{0} időpontban {1} írta:"
@@ -18260,7 +18441,7 @@ msgstr "Betanítás befejeződött"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "A benyújtott dokumentumok a beküldés után nem módosíthatók. Csak visszavonhatók és helyesbíthetők."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "Ha ezt beállította, a felhasználók csak olyan dokumentumokhoz (pl. Blogbejegyzés) férhetnek hozzá, ahol a link létezik (pl. Blogger)."
@@ -18276,11 +18457,11 @@ msgstr "Egyszer Használatos Jelszó (OTP) Regisztrációs Kód a következőtő
msgid "One of"
msgstr "Az egyik"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Egy kérésben csak 200 beszúrás engedélyezett"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Csak Adminisztrátor törölheti az E-mail Várólistát"
@@ -18301,7 +18482,7 @@ msgstr "Csak a Rendszergazda használhatja a Rögzítőt"
msgid "Only Allow Edit For"
msgstr "Csak ő szerkesztheti"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Az Adatmezőhöz csak a következő Opciók engedélyezettek:"
@@ -18324,11 +18505,11 @@ msgstr "Csak a Munkaterület-kezelő szerkesztheti a nyilvános munkaterületeke
msgid "Only allow System Managers to upload public files"
msgstr "Csak a rendszergazdák tölthetnek fel nyilvános fájlokat"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "Csak fejlesztői módban exportálhatók a testreszabások"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Csak a vázlatok dobhatók el"
@@ -18371,7 +18552,7 @@ msgstr "Csak a megbízott végezheti el ezt a feladatot."
msgid "Only {0} emailed reports are allowed per user."
msgstr "Felhasználónként csak {0} e-mailben küldött jelentés engedélyezett."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Hoppá! Valami hiba történt."
@@ -18394,8 +18575,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Megnyit"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18431,6 +18612,10 @@ msgstr "Referencia Dokumentum Megnyitása"
msgid "Open Settings"
msgstr "Beállítások Megnyitása"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Forrás Alkalmazások megnyitása a Webhez"
@@ -18445,7 +18630,7 @@ msgstr "URL megnyitása új lapon"
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 "Nyisson meg egy párbeszédpanelt kötelező mezőkkel egy új rekord gyors létrehozásához. Legalább egy kötelező mezőnek meg kell jelennie a párbeszédpanelen."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Modul vagy eszköz megnyitása"
@@ -18457,11 +18642,11 @@ msgstr "Konzol megnyitása"
msgid "Open in a new tab"
msgstr "Megnyitás új lapon"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr "Megnyitás új lapon"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Listaelem megnyitása"
@@ -18476,16 +18661,16 @@ msgstr "Nyissa meg a hitelesítési alkalmazást a mobiltelefonján."
#: 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:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "{0} megnyitása"
@@ -18517,7 +18702,7 @@ msgstr "Művelet"
msgid "Operator must be one of {0}"
msgstr "Operátornak ezek közül kell lenniük: {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr "A(z) {0} operátor pontosan 2 argumentumot igényel (bal és jobb operandus)"
@@ -18543,7 +18728,7 @@ msgstr "2. lehetőség"
msgid "Option 3"
msgstr "3. lehetőség"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "A {1} mezőhöz tartozó {0} opció nem gyermektábla"
@@ -18577,7 +18762,7 @@ msgstr "Opcionális: A riasztás akkor kerül elküldésre, ha ez a kifejezés i
msgid "Options"
msgstr "Opciók"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "A 'Dinamikus link' típusú mező opcióinak egy másik, 'DocType' típusú opcióval rendelkező Link mezőre kell mutatniuk"
@@ -18586,7 +18771,7 @@ msgstr "A 'Dinamikus link' típusú mező opcióinak egy másik, 'DocType' típu
msgid "Options Help"
msgstr "Opciók Súgó"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Az Értékelés mezőben 3 és 10 közötti értékeket adhatunk meg"
@@ -18594,7 +18779,7 @@ msgstr "Az Értékelés mezőben 3 és 10 közötti értékeket adhatunk meg"
msgid "Options for select. Each option on a new line."
msgstr "Lehetőségek kiválasztásához. Minden opció egy új sorban."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "A {0} opcióit az alapértelmezett érték beállítása előtt kell beállítani."
@@ -18602,7 +18787,7 @@ msgstr "A {0} opcióit az alapértelmezett érték beállítása előtt kell be
msgid "Options is required for field {0} of type {1}"
msgstr "A(z) {1} típusú {0} mezőhöz szükségesek az opciók"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "A link mezőhöz nem állított opciók {0}"
@@ -18618,7 +18803,7 @@ msgstr "Narancssárga"
msgid "Order"
msgstr "Sorrend"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "A Csoportosítási szempontnak karakterláncnak kell lennie"
@@ -18638,8 +18823,12 @@ msgstr "Vállalkozás Története Címsor"
msgid "Orientation"
msgstr "Irányultság"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Eredeti Érték"
@@ -18714,18 +18903,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF Generálás Folyamatban"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF Generátor"
@@ -18749,7 +18940,7 @@ msgstr "PDF Oldalszélesség (mm-ben)"
msgid "PDF Settings"
msgstr "PDF Beállítások"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "PDF generálása sikertelen"
@@ -18757,11 +18948,11 @@ msgstr "PDF generálása sikertelen"
msgid "PDF generation failed because of broken image links"
msgstr "A PDF generálása sikertelen volt a képhivatkozások miatt"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "Előfordulhat, hogy a PDF-generálás nem a várt módon működik."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "A \"Nyers nyomtatás\" PDF-nyomtatás nem támogatott."
@@ -18920,7 +19111,7 @@ msgstr "Oldal Szélessége (mm-ben)"
msgid "Page has expired!"
msgstr "Az oldal lejárt!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Oldal magassága és szélessége nem lehet nulla"
@@ -18936,7 +19127,7 @@ msgstr "Weboldalon megjelenítendő oldal\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:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "{0} / {1} oldal"
@@ -18947,7 +19138,7 @@ msgid "Parameter"
msgstr "Paraméter"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Szülő"
@@ -18980,11 +19171,11 @@ msgstr "Szülő Mező"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Szülő Mező (Fa)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Szülő mezőnek érvényes mezőnévnek kell lennie"
@@ -18998,7 +19189,7 @@ msgstr "Szülő Ikon"
msgid "Parent Label"
msgstr "Szülő Felirat"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "Szülő Hiányzik"
@@ -19023,11 +19214,11 @@ msgstr "A Szülő annak a dokumentumnak a neve, amelyhez az adatok hozzá leszne
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr "A szülő-gyermek vagy gyermek-másik gyermek csoportosítása nem megengedett."
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "A szülői mező nincs megadva a {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "A Parenttype, Parent és Parentfield megadása kötelező egy gyermekrekord beszúrásához."
@@ -19046,7 +19237,7 @@ msgstr "Részleges Siker"
msgid "Partially Sent"
msgstr "Részben Elküldve"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Résztvevők"
@@ -19083,11 +19274,11 @@ msgstr "Passzív"
msgid "Password"
msgstr "Jelszó"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "Jelszó E-mail Elküldve"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Jelszó Visszaállítása"
@@ -19096,7 +19287,7 @@ msgstr "Jelszó Visszaállítása"
msgid "Password Reset Link Generation Limit"
msgstr "Jelszó-visszaállítási link generálásának korlátja"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "A jelszó nem szűrhető"
@@ -19125,11 +19316,11 @@ msgstr "A jelszó hiányzik az e-mail fiókból"
msgid "Password not found for {0} {1} {2}"
msgstr "Jelszó nem található ehhez: {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr "Jelszókövetelmények nem teljesültek"
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "A jelszó-visszaállítási utasításokat elküldtük {} e-mail címére"
@@ -19141,7 +19332,7 @@ msgstr "Jelszó beállítva"
msgid "Password size exceeded the maximum allowed size"
msgstr "A jelszó mérete meghaladta a megengedett maximális méretet"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "A jelszó mérete meghaladta a megengedett maximális méretet."
@@ -19203,7 +19394,7 @@ msgstr "Szervertanúsítvány elérési útja"
msgid "Path to private Key File"
msgstr "Privát kulcsfájl elérési útja"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "A(z) {0} elérési útvonal nem a(z) {1} modulon belül található"
@@ -19288,15 +19479,15 @@ msgstr "Jog Szint"
msgid "Permanent"
msgstr "Állandó"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "{0} végleges visszavonása?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "Véglegesen elveti a(z) {0}?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "{0} végleges beküldése?"
@@ -19304,7 +19495,11 @@ msgstr "{0} végleges beküldése?"
msgid "Permanently delete {0}?"
msgstr "{0} végleges törlése?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Jogosultság Hiba"
@@ -19314,24 +19509,19 @@ msgid "Permission Inspector"
msgstr "Jogosultság Vizsgáló"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Jogosultsági Szint"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Jogosultsági Szintek"
#. Name of a DocType
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Permission Log"
-msgstr "Engedélynapló"
-
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "Jogosultság Kezelő"
+msgstr "Jogosultság Napló"
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -19363,7 +19553,6 @@ msgstr "A(z) '{0}' típusú engedély foglalt. Kérjük, válasszon másik nevet
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19374,13 +19563,12 @@ msgstr "A(z) '{0}' típusú engedély foglalt. Kérjük, válasszon másik nevet
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: 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 "Jogosultságok"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Jogosultság Hiba"
@@ -19392,11 +19580,11 @@ msgstr "Jogosultságok automatikusan alkalmazásra kerülnek az általános jele
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 "Jogosultságok beállítása a Szerepkörökön és a Dokumentumtípusokon (az úgynevezett DocType-okon) történik az olyan jogok beállításával, mint az Olvasás, Írás, Létrehozás, Törlés, Elküldés, Visszavonás, Helyesbítés, Jelentés, Importálás, Exportálás, Nyomtatás, E-mail küldés és Felhasználói Jogosultságok beállítása."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "A magasabb szintű engedélyek a mezőszintű engedélyek. Minden mezőhöz tartozik egy Engedélyezési szint, és az ezen engedélyeknél meghatározott szabályok vonatkoznak a mezőre. Ez hasznos abban az esetben, ha bizonyos mezőt el akar rejteni vagy csak olvashatóvá akar tenni bizonyos szerepkörök számára."
-#: frappe/core/page/permission_manager/permission_manager_help.html:24
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Engedélyek 0. szinten a dokumentum szintű engedélyek, azaz ők az elsődlegesek a dokumentumhoz való hozzáférés számára."
@@ -19466,13 +19654,13 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefonsz."
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "A {1} mezőben beállított {0} telefonszám nem érvényes."
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Oszlopok Kiválasztása"
@@ -19530,7 +19718,7 @@ msgstr "Kérjük, másolja le ezt a weboldal témát a testreszabáshoz."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Kérjük, telepítse az ldap3 könyvtárat pip segítségével az ldap funkciók használatához."
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Kérjük, állítsa be a diagramot"
@@ -19546,7 +19734,7 @@ msgstr "Kérjük, adjon meg egy tárgyat az e-mailhez"
msgid "Please add a valid comment."
msgstr "Kérjük, adjon hozzá egy érvényes megjegyzést."
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Kérjük, kérje meg a rendszergazdát, hogy ellenőrizze a regisztrációját"
@@ -19554,11 +19742,11 @@ msgstr "Kérjük, kérje meg a rendszergazdát, hogy ellenőrizze a regisztráci
msgid "Please attach a file first."
msgstr "Kérjük, először csatoljon egy fájlt."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Kérjük, csatoljon egy képfájlt a lábléc HTML beállításához."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Kérjük, csatoljon egy képfájlt a levélfejléc HTML beállításához."
@@ -19570,11 +19758,11 @@ msgstr "Kérjük, csatolja a csomagot"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Kérjük, ellenőrizze a Műszerfal Diagramhoz beállított szűrőértékeket: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Kérjük, ellenőrizze a {0} mezőre beállított Lekérés Innen\" értékét"
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Kérjük, ellenőrizze az e-mail címét az ellenőrzéshez"
@@ -19606,7 +19794,7 @@ msgstr "Kérjük, kattintson az alábbi linkre, az új jelszó beállításához
msgid "Please confirm your action to {0} this document."
msgstr "Kérjük, erősítse meg a műveletét a {0} dokumentummal kapcsolatban."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Kérjük, vegye fel a kapcsolatot a rendszergazdával a megfelelő verzió telepítéséhez."
@@ -19636,10 +19824,10 @@ msgstr "Kérjük, engedélyezzen legalább egy közösségi bejelentkezési kulc
#: 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Kérjük, engedélyezze a felugró ablakokat"
@@ -19652,7 +19840,7 @@ msgstr "Kérjük, engedélyezze a felugró ablakokat a böngészőjében"
msgid "Please enable {} before continuing."
msgstr "Kérjük, engedélyezze a(z) {} funkciót a folytatás előtt."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Kérjük, győződjön meg róla, hogy profiljában szerepel egy e-mail cím"
@@ -19726,15 +19914,15 @@ msgstr "Kérjük, jelentkezzen be hozzászólás írásához."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Kérjük, győződjön meg róla, hogy a Referencia Kommunikációs Dokumentumok nem körkörösen vannak összekapcsolva."
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Kérjük, frissítse a legfrissebb dokumentum eléréséhez."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Kérjük, távolítsa el a nyomtató hozzárendelését a Nyomtatóbeállításokban, és próbálja meg újra."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Kérjük, mentse el a csatolás előtt."
@@ -19750,7 +19938,7 @@ msgstr "Kérjük, mentse el a dokumentumot a hozzárendelés eltávolítása el
msgid "Please save the form before previewing the message"
msgstr "Kérjük, mentse el az űrlapot az üzenet megtekintése előtt"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Kérjük, mentse a jelentés először"
@@ -19770,7 +19958,7 @@ msgstr "Kérjük, először válasszon ki a jogalany típusát"
msgid "Please select Minimum Password Score"
msgstr "Kérjük, válasszon Minimum jelszó erősséget"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Kérjük, válassza ki az X és Y mezőket"
@@ -19778,7 +19966,7 @@ msgstr "Kérjük, válassza ki az X és Y mezőket"
msgid "Please select a DocType in options before setting filters"
msgstr "Kérjük, a szűrők beállítása előtt válassza ki a DocType-t a beállítások között"
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Kérjük, válasszon egy országkódot a {1} mezőhöz."
@@ -19828,11 +20016,11 @@ msgstr "Kérjük, válassza ki a {0}"
msgid "Please set Email Address"
msgstr "Kérjük, állítsa be az E-mail Címet"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Kérjük, állítsa be a nyomtató leképezését ehhez a nyomtatási formátumhoz a Nyomtató Beállítások részben"
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Kérjük, állítsa be a szűrőket"
@@ -19840,7 +20028,7 @@ msgstr "Kérjük, állítsa be a szűrőket"
msgid "Please set filters value in Report Filter table."
msgstr "Kérjük, állítsa be a szűrők értékét a Jelentés Szűrő táblázatában."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Kérjük, adja meg a dokumentum nevét"
@@ -19860,7 +20048,7 @@ msgstr "Kérjük, állítsa be az SMS-t, mielőtt beállítja azt hitelesítési
msgid "Please setup a message first"
msgstr "Kérjük, először állítson be egy üzenetet"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Kérjük, állítsa be az alapértelmezett kimenő e-mail fiókot a Beállítások > E-mail fiók menüpontban"
@@ -19872,7 +20060,7 @@ msgstr "Kérjük, állítsa be az alapértelmezett kimenő e-mail fiókot az Esz
msgid "Please specify"
msgstr "Kérjük, adja meg"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Kérjük, adjon meg egy érvényes szülő DocType-ot a(z) {0} címhez"
@@ -19900,7 +20088,7 @@ msgstr "Kérjük, adja meg, hogy melyik dátum/idő mezőt kell bejelölni"
msgid "Please specify which value field must be checked"
msgstr "Kérjük, adja meg, hogy melyik értékmezőt kell bejelölni"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Kérjük, próbálja újra"
@@ -20021,11 +20209,11 @@ msgstr "Közzététel Időbélyeg"
msgid "Precision"
msgstr "Pontosság"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "A pontosság ({0}) a(z) {1} esetében nem lehet nagyobb, mint a hossza ({2})."
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "A pontosságnak 1 és 6 között kell lennie"
@@ -20077,11 +20265,11 @@ msgstr "Előkészített Jelentés Felhasználó"
msgid "Prepared report render failed"
msgstr "Elkészített jelentés renderelése sikertelen"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Jelentés Előkészítése"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Sablon beillesztése az e-mail üzenetbe"
@@ -20089,7 +20277,7 @@ msgstr "Sablon beillesztése az e-mail üzenetbe"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Nyomja meg az Alt billentyűt további billentyűparancsok aktiválásához a menüben és az oldalsávon"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Nyomjon Entert a mentéshez"
@@ -20107,7 +20295,7 @@ msgstr "Nyomjon Entert a mentéshez"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Előnézet"
@@ -20151,16 +20339,16 @@ msgstr "Előnézet:"
msgid "Previous"
msgstr "Előző"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Előző"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Előző Dokumentum"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Előző Beküldés"
@@ -20213,19 +20401,19 @@ msgstr "A(z) {0} doctype elsődleges kulcsa nem módosítható, mivel már léte
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Nyomtatás"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Nyomtatás"
@@ -20243,8 +20431,9 @@ msgstr "Dokumentumok Nyomtatása"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20288,7 +20477,7 @@ msgstr "Nyomtatási Sablon Súgó"
msgid "Print Format Type"
msgstr "Nyomtatási Sablon típusa"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "Nyomtatási formátum nem található"
@@ -20321,11 +20510,11 @@ msgstr "Nyomtatás Elrejtése"
msgid "Print Hide If No Value"
msgstr "Nyomtatás elrejtése, ha nincs érték"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Nyomtatás Nyelve"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Nyomtatás Elküldve a nyomtatónak!"
@@ -20338,8 +20527,8 @@ msgstr "Nyomtatási Kiszolgáló"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Nyomtatási Beállítások"
@@ -20378,7 +20567,7 @@ msgstr "Nyomtatási Szélesség"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "A mező nyomtatási szélessége, ha a mező egy táblázat oszlopa"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Dokumentum nyomtatása"
@@ -20387,11 +20576,11 @@ msgstr "Dokumentum nyomtatása"
msgid "Print with letterhead"
msgstr "Nyomtatás fejléccel"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Nyomtató"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Nyomtató Feltérképezése"
@@ -20401,15 +20590,15 @@ msgstr "Nyomtató Feltérképezése"
msgid "Printer Name"
msgstr "Nyomtató Neve"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Nyomtató Beállítások"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Nyomtató-hozzárendelés nincs beállítva."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Nyomtatás Sikertelen"
@@ -20458,7 +20647,7 @@ msgstr "Protipp: Hivatkozás hozzáadása: {{ reference_doctype }} {{ refe
msgid "Proceed"
msgstr "Folytatás"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Folytatás Mindenképpen"
@@ -20498,9 +20687,9 @@ msgid "Project"
msgstr "Projekt"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "Tulajdonság"
@@ -20570,7 +20759,7 @@ msgstr "Szolgáltató Neve"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Nyilvános"
@@ -20720,7 +20909,7 @@ msgstr "QR Kód"
msgid "QR Code for Login Verification"
msgstr "QR Kód a Bejelentkezés Ellenőrzéséhez"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ Tálca Hiba:"
@@ -20782,7 +20971,7 @@ msgstr "A lekérdezésnek SELECT vagy írásvédett WITH típusúnak kell lennie
msgid "Queue"
msgstr "Várakozási Sor"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "Várólista Túlterhelt"
@@ -20803,7 +20992,7 @@ msgstr "Várakozási Sor Típus(ok)"
msgid "Queue in Background (BETA)"
msgstr "Háttérben várakozás (BÉTA)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "A sornak {0} egyikének kell lennie"
@@ -20844,7 +21033,7 @@ msgstr "Biztonsági mentésre várakozik. Kapni fog egy e-mailt a letöltési li
msgid "Queues"
msgstr "Várakozási Sorok"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "Sorban állás {0} beküldésre"
@@ -20936,6 +21125,15 @@ msgstr "Nyers Parancsok"
msgid "Raw Email"
msgstr "Nyers E-mail"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20944,7 +21142,7 @@ msgstr "Nyers E-mail"
msgid "Raw Printing"
msgstr "Nyers Nyomtatás"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Nyers Nyomtatási Beállítás"
@@ -20962,7 +21160,7 @@ msgstr "Válasz:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Válasz: {0}"
@@ -20973,11 +21171,12 @@ msgstr "Válasz: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21014,7 +21213,7 @@ msgstr "Csak olvasható, a következőtől függ"
msgid "Read Only Depends On (JS)"
msgstr "Csak olvasható, a következőtől függ (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Csak Olvasható Mód"
@@ -21047,14 +21246,14 @@ msgstr "Olvass El"
#. 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Realtime (SocketIO)"
-msgstr "Valós Idejű (SocketIO)"
+msgstr "Valós idejű kommunikáció (SocketIO)"
#. Label of the reason (Long Text) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Reason"
msgstr "Ok"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Újjáépítés"
@@ -21096,7 +21295,7 @@ msgstr "Fogadó fél Paraméterei"
msgid "Recent years are easy to guess."
msgstr "Az elmúlt éveket könnyű kitalálni."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Előzmények"
@@ -21147,7 +21346,7 @@ msgstr "Felvevő Által Javasolt Index"
msgid "Records for following doctypes will be filtered"
msgstr "A következő doctype-ok rekordjai kerülnek szűrésre"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Rekurzív Lekérdezés Innen"
@@ -21213,12 +21412,12 @@ msgstr "Átirányítások"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "A Redis gyorsítótár-kiszolgáló nem fut. Kérjük, lépjen kapcsolatba a rendszergazdával / technikai támogatással"
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Újra"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Legutóbbi művelet visszaállítása"
@@ -21434,12 +21633,12 @@ msgstr "Hivatkozás: {0} {1}"
msgid "Referrer"
msgstr "Referrer"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21456,7 +21655,7 @@ msgstr "Összes Frissítése"
msgid "Refresh Google Sheet"
msgstr "Google Táblázatok Frissítése"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "Nyomtatási Előnézet Frissítése"
@@ -21471,18 +21670,18 @@ msgstr "Nyomtatási Előnézet Frissítése"
msgid "Refresh Token"
msgstr "Token Frissítése"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
-msgstr "Újratöltés"
+msgstr "Frissítés"
#: frappe/core/doctype/system_settings/system_settings.js:57
#: frappe/core/doctype/user/user.js:369
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
-msgstr "Újratöltés..."
+msgstr "Frissítés..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Regisztrált, de letiltott"
@@ -21528,10 +21727,8 @@ msgstr "Átszerkeszt Kommunikációt"
msgid "Relinked"
msgstr "Átszerkesztve"
-#. 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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Újratöltés"
@@ -21543,7 +21740,7 @@ msgstr "Fájl Újratöltése"
msgid "Reload List"
msgstr "Lista Újratöltése"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Jelentés Újratöltése"
@@ -21562,7 +21759,7 @@ msgstr "Utolsó Kiválasztott Érték Megjegyzése"
msgid "Remind At"
msgstr "Emlékeztető Ekkor"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Emlékeztess"
@@ -21642,9 +21839,9 @@ msgid "Removed"
msgstr "Eltávolítva"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21672,7 +21869,7 @@ msgstr "A címkék balra, az értékek jobbra jelenjenek meg ebben a szakaszban"
msgid "Reopen"
msgstr "Újranyitása"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Ismétlés"
@@ -21719,7 +21916,7 @@ msgstr "Az olyan ismétlések, mint az \"aaa\" könnyen kitalálhatóak"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Az olyan ismétléseket, mint az \"abcabcabcabc\" csak valamivel nehezebb kitalálni, mint az \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Ismétlések {0}"
@@ -21782,6 +21979,7 @@ msgstr "Válasz Mindenkinek"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21796,10 +21994,9 @@ msgstr "Válasz Mindenkinek"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Jelentés"
@@ -21868,7 +22065,7 @@ msgstr "Jelentéskezelő"
#: 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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Jelentés Neve"
@@ -21902,14 +22099,10 @@ msgstr "Jelentés Típusa"
msgid "Report View"
msgstr "Jelentés Nézet"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Hiba jelentése"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "A jelentés nem állítható be az Egyedi típusok esetében"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21920,7 +22113,7 @@ msgstr "A jelentés nem tartalmaz adatokat, kérjük, módosítsa a szűrőket v
msgid "Report has no numeric fields, please change the Report Name"
msgstr "A jelentésnek nincsenek numerikus mezői, kérjük, változtassa meg a jelentés nevét"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Jelentés kezdeményezve, kattintson az állapot megtekintéséhez"
@@ -21932,7 +22125,7 @@ msgstr "Jelentési korlát elérve"
msgid "Report timed out."
msgstr "A jelentés időtúllépést okozott."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Jelentés sikeresen frissítve"
@@ -21940,12 +22133,12 @@ msgstr "Jelentés sikeresen frissítve"
msgid "Report was not saved (there were errors)"
msgstr "A jelentés nem került mentésre (hibák voltak)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "A 10-nél több oszlopot tartalmazó jelentés jobban néz ki fekvő módban."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Jelentés {0}"
@@ -21968,7 +22161,7 @@ msgstr "Jelentés:"
#. 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Jelentések"
@@ -21976,7 +22169,7 @@ msgstr "Jelentések"
msgid "Reports & Masters"
msgstr "Jelentések és Törzsadatok"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Jelentések már várólistán vannak"
@@ -22035,13 +22228,13 @@ msgstr "Kérés Metódusa"
msgid "Request Structure"
msgstr "Kérés Struktúrája"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "Kérés Lejárt"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Kérés Időtúllépése"
@@ -22157,7 +22350,7 @@ msgstr "Alapértékek Visszaállítása"
msgid "Reset sorting"
msgstr "Rendezés visszaállítása"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Alapérték visszaállítása"
@@ -22215,7 +22408,7 @@ msgstr "Válasz Fejlécek"
msgid "Response Type"
msgstr "Válasz Típusa"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "A nap hátralévő része"
@@ -22224,7 +22417,7 @@ msgstr "A nap hátralévő része"
msgid "Restore"
msgstr "Helyreállítás"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Eredeti Engedélyek Helyreállítása"
@@ -22246,6 +22439,11 @@ msgstr "Törölt Dokumentum Helyreállítása"
msgid "Restrict IP"
msgstr "IP Korlátozása"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22273,8 +22471,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Korlátozások"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Eredmény"
@@ -22321,9 +22519,15 @@ msgstr "Visszavont"
msgid "Rich Text"
msgstr "Rich Text"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22358,8 +22562,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22374,8 +22576,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22419,7 +22620,7 @@ msgstr "Szerepkör Engedélyei"
msgid "Role Permissions Manager"
msgstr "Szerepkör Jogosultság Kezelő"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Szerepkör Jogosultság Kezelő"
@@ -22427,11 +22628,9 @@ msgstr "Szerepkör Jogosultság Kezelő"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Szerepkör Profil"
@@ -22453,7 +22652,7 @@ msgstr "Szerepkör Másolása"
msgid "Role and Level"
msgstr "Szerepkör és Szint"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "A szerepkör a felhasználói típusnak megfelelően lett beállítva {0}"
@@ -22572,20 +22771,20 @@ msgstr "Útvonalak Átirányítások"
msgid "Route: Example \"/app\""
msgstr "Útvonal: Példa: \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Sor"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "# Sor"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Sor # {0}: Nem rendszergazdai felhasználó nem állíthatja be a {1} szerepkört az egyéni doctype-ra"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "#{0} Sor:"
@@ -22612,7 +22811,7 @@ msgstr "Sor Neve"
msgid "Row Number"
msgstr "Sor Száma"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Sor Értékei Megváltoztak"
@@ -22631,14 +22830,14 @@ msgstr "{0} sor: A standard mezőknél nem engedélyezett az Belküldéskor tör
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Sorok Hozzáadva"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Sorok Eltávolítva"
@@ -22661,7 +22860,7 @@ msgstr "Szabály"
msgid "Rule Conditions"
msgstr "Szabály Feltételek"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Már létezik szabály ehhez a doctype, szerepkör, jogosultsági szint és ha-tulajdonos kombinációhoz."
@@ -22741,7 +22940,7 @@ msgstr "SMS Beállítások"
msgid "SMS sent successfully"
msgstr "SMS sikeresen elküldve"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "Az SMS nem lett elküldve. Vegye fel a kapcsolatot az Rendszergazdával."
@@ -22775,7 +22974,7 @@ msgstr "SQL Kimenet"
msgid "SQL Queries"
msgstr "SQL Lekérdezés"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr "Az SQL függvények nem engedélyezettek karakterláncokként a SELECT-ben: {0}. Használjon helyette kulcs-érték pár szintaxist, például {{'COUNT': '*'}}."
@@ -22847,22 +23046,23 @@ msgstr "Szombat"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22875,7 +23075,7 @@ msgid "Save Anyway"
msgstr "Mentés Mindenképpen"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Mentés másként"
@@ -22883,7 +23083,7 @@ msgstr "Mentés másként"
msgid "Save Customizations"
msgstr " Testreszabás Mentése"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Jelentés Mentése"
@@ -22901,20 +23101,20 @@ msgid "Save the document."
msgstr "Mentse el a dokumentumot."
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Mentve"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
-msgstr "Elmentett szűrők"
+msgstr "Mentett Szűrések"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Mentés"
@@ -22923,11 +23123,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Mentés"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr "Módosítások mentése..."
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Testreszabás mentése..."
@@ -23020,7 +23220,7 @@ msgstr "Ütemező"
#: frappe/core/doctype/scheduler_event/scheduler_event.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Scheduler Event"
-msgstr "Ütemező Esemény"
+msgstr "Ütemezett Esemény"
#: frappe/core/doctype/data_import/data_import.py:124
msgid "Scheduler Inactive"
@@ -23131,7 +23331,7 @@ msgstr "Szkriptek"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23151,7 +23351,7 @@ msgstr "Kereső Sáv"
msgid "Search Fields"
msgstr "Keresési Mezők"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Segítség Keresése"
@@ -23169,7 +23369,7 @@ msgstr "Keresési Eredmények"
msgid "Search by filename or extension"
msgstr "Keresés fájlnév vagy kiterjesztés szerint"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "A(z) {0} keresési mező nem érvényes"
@@ -23186,12 +23386,12 @@ msgstr "Keresési mezőtípusok..."
msgid "Search for anything"
msgstr "Keresés bármire"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "{0} keresése"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Keresés egy dokumentum típusban"
@@ -23263,15 +23463,15 @@ msgstr "A szakasznak legalább egy oszloppal kell rendelkeznie"
msgid "Security Settings"
msgstr "Biztonsági Beállítások"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Összes Tevékenység Megtekintése"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Lásd az összes korábbi jelentést."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Lásd a honlapon"
@@ -23321,24 +23521,26 @@ msgstr "Látott táblázat"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Kijelölés"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Összes Kijelölése"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23354,7 +23556,7 @@ msgid "Select Column"
msgstr "Oszlop Kiválasztása"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Oszlopok Kiválasztása"
@@ -23398,13 +23600,13 @@ msgstr "Dokumentum Típus Kiválasztása"
msgid "Select Document Type or Role to start."
msgstr "Dokumentum Típus vagy Szerepkör kiválasztása az indításhoz."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
msgstr "Válassza ki a Dokumentumtípusok lehetőséget a hozzáférés korlátozására használt felhasználói engedélyek beállításához."
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Választó Mező"
@@ -23413,7 +23615,7 @@ msgstr "Választó Mező"
msgid "Select Field..."
msgstr "Mező Kiválasztása..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Mezők Kiválasztása"
@@ -23422,19 +23624,19 @@ msgstr "Mezők Kiválasztása"
msgid "Select Fields (Up to {0})"
msgstr "Mezők kiválasztása (legfeljebb {0})"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Beillesztendő Mezők Kiválasztása"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Frissítendő Mezők Kiválasztása"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Szűrők Kiválasztása"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Válassza ki a Google Naptárat, amellyel az eseményt szinkronizálni kívánja."
@@ -23459,16 +23661,16 @@ msgstr "Nyelv Kiválasztása"
msgid "Select List View"
msgstr "Listanézet Kiválasztása"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Kötelező Kiválasztása"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Modul Kiválasztása"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Hálózati Nyomtató Kiválasztása"
@@ -23478,7 +23680,7 @@ msgid "Select Page"
msgstr "Oldal Kiválasztása"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Nyomtatási Formátum Kiválasztása"
@@ -23514,12 +23716,6 @@ msgstr "Munkafolyamat Kiválasztása"
msgid "Select Workspace"
msgstr "Munkaterület Kiválasztása"
-#. 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 "Munkaterületek kiválasztása"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Márkakép kiválasztása először."
@@ -23536,11 +23732,11 @@ msgstr "Válasszon ki egy mezőt a tulajdonságainak szerkesztéséhez."
msgid "Select a group {0} first."
msgstr "Először válassz ki egy {0} csoportot."
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Válasszon egy érvényes Feladó mezőt a dokumentumok e-mailből történő létrehozásához"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Válasszon egy érvényes Tárgy mezőt a dokumentumok e-mailből történő létrehozásához"
@@ -23566,13 +23762,13 @@ msgstr "Legalább 1 rekord kiválasztása nyomtatáshoz"
msgid "Select atleast 2 actions"
msgstr "Legalább 2 művelet kiválasztása"
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Listaelem kiválasztása"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Több listaelem kiválasztása"
@@ -23606,7 +23802,7 @@ msgstr "Válasszon ki két verziót a különbség megtekintéséhez."
msgid "Select {0}"
msgstr "{0} kiválasztása"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Önhitelesítés nem megengedett"
@@ -23636,6 +23832,11 @@ msgstr "Küldés után"
msgid "Send Alert On"
msgstr "Riasztás küldése"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23688,7 +23889,7 @@ msgstr "Küldés most"
msgid "Send Print as PDF"
msgstr "Nyomtatvány küldése PDF-ben"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Olvasási visszaigazolás küldése"
@@ -23751,7 +23952,7 @@ msgstr "Kérdéseit erre az e-mail címre küldje"
msgid "Send login link"
msgstr "Bejelentkezési link küldése"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Küldj nekem másolatot"
@@ -23790,7 +23991,7 @@ msgstr "Küldő E-mail"
msgid "Sender Email Field"
msgstr "Feladó E-mail Címe Mező"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "A Feladó mezőben az opciókban az E-mailnek kell szerepelnie"
@@ -23809,7 +24010,7 @@ msgstr "Feladó Neve Mező"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Sendgrid"
-msgstr "Küldési háló"
+msgstr "Sendgrid"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23884,7 +24085,7 @@ msgstr "Sorozat Frissítve {}"
msgid "Series counter for {} updated to {} successfully"
msgstr "A {} Sorozat számlálója sikeresen frissült {}-ra"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "{0} sorozat már használva van itt: {1}"
@@ -23894,7 +24095,7 @@ msgstr "{0} sorozat már használva van itt: {1}"
msgid "Server Action"
msgstr "Szerver Művelet"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Szerver Hiba"
@@ -23921,11 +24122,15 @@ msgstr "A Szerver Szkriptek le vannak tiltva. Kérjük, engedélyezze a bench ko
msgid "Server Scripts feature is not available on this site."
msgstr "A Szerver Szkriptek funkció nem érhető el ezen az oldalon."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "A kiszolgáló nem tudta feldolgozni ezt a kérést egy egyidejűleg futó, ütköző kérés miatt. Kérjük, próbálja meg újra."
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "A szerver túl elfoglalt volt a kérés feldolgozásához. Kérjük, próbálja újra."
@@ -23953,16 +24158,14 @@ msgstr "Munkamenet Alapértelmezései"
msgid "Session Default Settings"
msgstr "Munkamenet Alapértelmezett Beállításai"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Munkamenet Alapértelmezései"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Munkamenet Alapértelmezések Mentése"
@@ -24003,7 +24206,7 @@ msgstr "Beállít"
msgid "Set Banner from Image"
msgstr "Banner beállítása képből"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Grafikon Beállítása"
@@ -24029,7 +24232,7 @@ msgstr "Szűrők Beállítása"
msgid "Set Filters for {0}"
msgstr "{0} szűrők beállítása"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Beállított szint"
@@ -24072,8 +24275,8 @@ msgstr "Tulajdonságok Beállítása"
msgid "Set Property After Alert"
msgstr "Tulajdonság Beállítása Riasztás Után"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Mennyiség Megadása"
@@ -24093,12 +24296,12 @@ msgstr "Felhasználói Engedélyek Beállítása"
msgid "Set Value"
msgstr "Érték Megadása"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Összes privtáként beállítása"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Összes nyilvánosként beállítása"
@@ -24226,8 +24429,8 @@ msgstr "A rendszer beállítása"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24250,11 +24453,11 @@ msgstr "Beállítások a Rólunk Oldalhoz"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Telepítés"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Telepítés > Űrlap Testreszabása"
@@ -24262,12 +24465,12 @@ msgstr "Telepítés > Űrlap Testreszabása"
msgid "Setup > User"
msgstr "Telepítés > Felhasználó"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Telepítés > Felhasználói Engedélyek"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Automatikus E-mail Beállítása"
@@ -24296,13 +24499,14 @@ msgstr "Beállítás Sikertelen"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Megosztás"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Megosztás vele"
@@ -24310,7 +24514,7 @@ msgstr "Megosztás vele"
msgid "Share this document with"
msgstr "Dokumentum megosztása a következővel"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "{0} megosztása vele"
@@ -24370,16 +24574,10 @@ msgstr "Abszolút dátum/idő megjelenítése az idővonalon"
msgid "Show Absolute Values"
msgstr "Abszolút Értékek Megjelenítése"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Mutasd az Összeset"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr "Alkalmazás ikonok megjelenítése mappaként"
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24425,7 +24623,7 @@ msgstr "Hiba Megjelenítése"
msgid "Show External Link Warning"
msgstr "Külső Link Figyelmeztetés Megjelenítése"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Mezőnév Megjelenítése (kattintson a vágólapra másoláshoz)"
@@ -24477,9 +24675,9 @@ msgstr "Nyelvválasztó Megjelenítése"
msgid "Show Line Breaks after Sections"
msgstr "Sortörések Megjelenítése Szakaszok után"
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
-msgstr "Hivatkozások Megjelenítése"
+msgstr "Hivatkozások Megtekintése"
#. Label of the show_failed_logs (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -24529,7 +24727,7 @@ msgstr "Kapcsolódó Hibák Megjelenítése"
#: frappe/core/doctype/prepared_report/prepared_report.js:43
#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
-msgstr "Jelentés Megjelenítése"
+msgstr "Jelentés Megtekintése"
#. Label of the show_section_headings (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -24597,7 +24795,7 @@ msgstr "Hétvégék Megjelenítése"
msgid "Show account deletion link in My Account page"
msgstr "Fiók törlése link megjelenítése a Fiókom oldalon"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Összes Verzió Megjelenítése"
@@ -24739,7 +24937,7 @@ msgstr "Kijelentkezés"
msgid "Sign Up and Confirmation"
msgstr "Feliratkozás és Megerősítés"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Regisztráció letiltott"
@@ -24862,7 +25060,7 @@ msgstr "Cím nélküli oszlop kihagyása"
msgid "Skipping column {0}"
msgstr "A(z) {0} oszlop kihagyása"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "Fixture szinkronizálás kihagyása {0} doctype esetén {1} fájlból"
@@ -25037,15 +25235,15 @@ msgstr "Hiba történt"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Hiba történt a token generálása során. Kattintson a(z) {0} gombra egy új token generálásához."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Valami hiba történt."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Elnézést! Nem találtam meg azt, amit keres."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Elnézést! Nincs jogosultsága megtekinteni ezt az oldalt."
@@ -25076,13 +25274,13 @@ msgstr "Rendezési Beállítások"
msgid "Sort Order"
msgstr "Rendezési Irány"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "A {0} rendezési mezőnek érvényes mezőnévnek kell lennie"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25131,7 +25329,7 @@ msgstr "Műveleteket indít egy háttérmunkában"
msgid "Special Characters are not allowed"
msgstr "Speciális karakterek használata nem engedélyezett"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Különleges karakterek, kivéve a '-', '#', '.', '/', '{{' and '}}' nem engedélyezettek a(z) {0} \n"
"elnevezési sorozatokban"
@@ -25171,6 +25369,7 @@ msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25178,6 +25377,7 @@ msgstr "Stack Trace"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25245,8 +25445,8 @@ msgstr "A szabványos felhasználói típus {0} nem törölhető."
#: 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:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Kezdés"
@@ -25418,7 +25618,7 @@ msgstr "Statisztikák Időintervallum"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25456,7 +25656,7 @@ msgstr "A bejelentkezés ellenőrzéséhez szükséges lépések"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "Rögzített"
@@ -25570,7 +25770,7 @@ msgstr "Aldomén"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Tárgy"
@@ -25584,7 +25784,7 @@ msgstr "Tárgy"
msgid "Subject Field"
msgstr "Tárgy Mező"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "A Tárgy Mező típusának a következőnek kell lennie: Adat, Szöveg, Hosszú szöveg, Kis szöveg, Szövegszerkesztő"
@@ -25605,14 +25805,14 @@ msgstr "Beküldési Sor"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Küldés"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Küldés"
@@ -25642,7 +25842,7 @@ msgstr "Küldés"
msgid "Submit After Import"
msgstr "Küldés Importálás Után"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Probláma Küldése"
@@ -25666,11 +25866,11 @@ msgstr "Beküldés Létrehozáskor"
msgid "Submit this document to complete this step."
msgstr "A lépés befejezéséhez küldje be ezt a dokumentumot."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Küldje be ezt a dokumentumot megerősítésre"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "{0} dokumentum beküldése?"
@@ -25696,7 +25896,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Beküldés"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "{0} beküldése"
@@ -25731,12 +25931,12 @@ msgstr "Körvonalas"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25778,7 +25978,7 @@ msgstr "Siker címe"
msgid "Successful Job Count"
msgstr "Sikeres Feladatok Száma"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Sikeres Tranzakciók"
@@ -25803,7 +26003,7 @@ msgstr "{0} rekord importálása sikeresen megtörtént a(z) {1} rekordból."
msgid "Successfully reset onboarding status for all users."
msgstr "Sikeresen visszaállította az összes felhasználó betanítási státuszát."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr "Sikeresen kijelentkezett"
@@ -25828,7 +26028,7 @@ msgstr "Optimalizálási Javaslatok"
msgid "Suggested Indexes"
msgstr "Indexelási Javaslatok"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Javasolt Felhasználónév: {0}"
@@ -25869,20 +26069,20 @@ msgstr "Vasárnap"
msgid "Suspend Sending"
msgstr "Küldés Felfüggesztése"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Kamera Váltása"
#: frappe/public/js/frappe/desk.js:96
#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
-msgstr "Téma Váltása"
+msgstr "Témaváltás"
#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
msgstr "Váltás Asztalra"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Kameraváltás"
@@ -25951,9 +26151,7 @@ msgid "Syntax Error"
msgstr "Szintaxis Hiba"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "Rendszer"
@@ -25963,7 +26161,7 @@ msgstr "Rendszer"
msgid "System Console"
msgstr "Rendszer Konzol"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "A rendszer által generált mezők nem nevezhetők át"
@@ -26090,6 +26288,7 @@ msgstr "Rendszer Naplók"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26104,7 +26303,6 @@ msgstr "Rendszer Naplók"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26180,6 +26378,11 @@ msgstr "Rendszer Oldal"
msgid "System Settings"
msgstr "Rendszer Beállítások"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26196,6 +26399,12 @@ msgstr "T"
msgid "TOS URI"
msgstr "TOS URI"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26231,7 +26440,7 @@ msgstr "Táblázat"
msgid "Table Break"
msgstr "Táblázat Törés"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Táblázat Mező"
@@ -26240,7 +26449,7 @@ msgstr "Táblázat Mező"
msgid "Table Fieldname"
msgstr "Tábla Mezőneve"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Tábla Mezőneve Hiányzik"
@@ -26258,7 +26467,7 @@ msgstr "Táblázat HTML"
msgid "Table MultiSelect"
msgstr "MultiSelect Táblázat"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr "A Table MultiSelect legalább egy Link mezővel rendelkező táblát igényel, de egyet sem találtunk: {0}"
@@ -26266,11 +26475,11 @@ msgstr "A Table MultiSelect legalább egy Link mezővel rendelkező táblát ig
msgid "Table Trimmed"
msgstr "Tábla Karbantartva"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Táblázat frissítve"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Táblázat {0} nem lehet üres"
@@ -26290,17 +26499,17 @@ msgid "Tag Link"
msgstr "Címke Hivatkozás"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Címkék"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Fotó Készítése"
@@ -26384,7 +26593,7 @@ msgstr "Sablon Figyelmeztetések"
msgid "Templates"
msgstr "Sablonok"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Átmenetileg Letiltva"
@@ -26482,7 +26691,7 @@ msgstr "Köszönjük"
msgid "The Auto Repeat for this document has been disabled."
msgstr "A dokumentum automatikus ismétlése le van tiltva."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "CSV formátum a kis- és nagybetűkre érzékeny"
@@ -26536,7 +26745,7 @@ msgid "The browser API key obtained from the Google Cloud Console under \"API-k & Szolgáltatások\" > \"Hitelesítő adatok\"\n"
"alatt beszerzett böngésző API-kulcs"
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr "A változtatásokat visszavonták."
@@ -26552,7 +26761,7 @@ msgstr "A megjegyzés nem lehet üres"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "Az e-mail tartalma szigorúan bizalmas. Kérjük, ne továbbítsa ezt az e-mailt senkinek."
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "A megjelenített szám becsült. Kattintson ide a pontos szám megtekintéséhez."
@@ -26578,11 +26787,15 @@ msgstr "A dokumentum hozzárendelve a következőhöz: {0}"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "A kiválasztott dokumentumtípus egy gyermektábla, ezért a szülő dokumentumtípus megadása kötelező."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr ""
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr "A {0} mező a {1} oldalon nem teszi lehetővé a felhasználói engedélyek figyelmen kívül hagyását"
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr "A {0} mező a {1} mezőben a {2} mezőre mutat, nem pedig a {3} mezőre"
@@ -26649,6 +26862,10 @@ msgstr "A kérés lejártáig hátralévő másodpercek száma"
msgid "The password of your account has expired."
msgstr "Fiókod jelszava lejárt."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+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 "A {1} címhez kapcsolódó {0} adatok törlésének folyamata megkezdődött."
@@ -26666,15 +26883,15 @@ msgstr "A Google Cloud Console-ból a
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "A kért jelentés elkészült.
Kattintson ide a letöltéshez:
{0}
Ez a link {1} óra múlva lejár."
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "A jelszó-visszaállítási link lejárt"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr "A jelszó-visszaállítási linket már korábban használták, vagy érvénytelen."
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "A keresett erőforrás nem érhető el"
@@ -26686,7 +26903,7 @@ msgstr "A {0} szerepkörnek egyéni szerepkörnek kell lennie."
msgid "The selected document {0} is not a {1}."
msgstr "A kiválasztott dokumentum {0} nem egy {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "A rendszer frissítés alatt áll. Kérjük, frissítse újra néhány perc múlva."
@@ -26698,6 +26915,42 @@ msgstr "A rendszer számos előre definiált szerepkört kínál. Új szerepkör
msgid "The total number of user document types limit has been crossed."
msgstr "Átlépte a felhasználói dokumentumtípusok maximális számát."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 "Az Ön által beillesztett érték {0} karakter hosszú volt. A maximálisan megengedett karakterek száma {1}."
@@ -26739,7 +26992,7 @@ msgstr "Téma URL"
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 "Vannak olyan dokumentumok, amelyek olyan munkafolyamat-állapotokkal rendelkeznek, amelyek nem léteznek ebben a munkafolyamatban. Javasoljuk, hogy ezeket az állapotokat adja hozzá a munkafolyamathoz, és módosítsa állapotukat, mielőtt eltávolítaná ezeket az állapotokat."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Nincsenek közelgő események az Ön számára."
@@ -26747,7 +27000,7 @@ msgstr "Nincsenek közelgő események az Ön számára."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Nincs {0} erre a {1}, miért nem indítasz egyet!"
-#: frappe/public/js/frappe/views/reports/query_report.js:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "{0} ugyanazokkal a szűrőkkel már szerepel a sorban:"
@@ -26756,7 +27009,7 @@ msgstr "{0} ugyanazokkal a szűrőkkel már szerepel a sorban:"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "Egy webes űrlapon csak 9 oldaltörés mező lehet."
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "Nem lehet csak egy összecsukás ebben az űrlapban"
@@ -26768,11 +27021,11 @@ msgstr "Hiba van a Cím Sablonban {0}"
msgid "There is no data to be exported"
msgstr "Nincsenek exportálható adatok"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "Nincs \"{}\" nevű feladat"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Most nincs semmi újdonság, amit megmutathatnék."
@@ -26780,7 +27033,7 @@ msgstr "Most nincs semmi újdonság, amit megmutathatnék."
msgid "There is some problem with the file url: {0}"
msgstr "Valami probléma van a fájl url-jével: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "{0} ugyanazokkal a szűrőkkel már szerepel a sorban:"
@@ -26796,7 +27049,7 @@ msgstr "Hiba történt az oldal létrehozásakor"
msgid "There was an error saving filters"
msgstr "Hiba történt a szűrők mentésekor"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Hibák voltak"
@@ -26804,11 +27057,11 @@ msgstr "Hibák voltak"
msgid "There were errors while creating the document. Please try again."
msgstr "Hiba történt a dokumentum létrehozásakor. Kérjük, próbálja újra."
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "Hiba történt az e-mail küldése során. Kérjük, próbálja újra."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Hibák voltak a név beállításakor, kérjük forduljon a rendszergazdához"
@@ -26877,11 +27130,11 @@ msgstr "Ebben az évben"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ez a művelet visszafordíthatatlan. Folytatja?"
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Ez a művelet csak {} számára engedélyezett"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ezt nem lehet visszavonni"
@@ -26905,7 +27158,7 @@ msgstr "Ez a diagram minden Felhasználó számára elérhető lesz, ha ez be va
msgid "This doctype has no orphan fields to trim"
msgstr "Ez a docType nem tartalmaz árva mezőkkel, amelyeket le kell vágni"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Ez a docType függőben lévő migrációkat tartalmaz, futtassa a 'bench migrate' parancsot a doctype módosítása előtt, hogy elkerülje a változások elvesztését."
@@ -26921,15 +27174,15 @@ msgstr "Ez a dokumentum már beküldésre vár. A folyamatot itt követheti nyom
msgid "This document has been modified after the email was sent."
msgstr "Ezt a dokumentumot az e-mail elküldése után módosították."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "Ez a dokumentum nem mentett módosításokat tartalmaz, amelyek esetleg nem jelennek meg a végleges PDF-ben.
Nyomtatás előtt érdemes menteni a dokumentumot."
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr "Ezt a dokumentum már helyesbítették, nem helyesbítheti újra"
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Ez a dokumentum jelenleg zárolva van és végrehajtásra vár. Kérjük, próbálja újra később."
@@ -26943,7 +27196,7 @@ msgid "This feature can not be used as dependencies are missing.\n"
msgstr "Ez a funkció nem használható, mivel hiányoznak a függőségek.\n"
"\t\t\t\tKérjük, lépjen kapcsolatba a rendszergazdával, hogy engedélyezze ezt a pycups telepítésével!"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "Ez a funkció új és még kísérleti jellegű"
@@ -26972,11 +27225,11 @@ msgstr "Ez a fájl nyilvános, és bárki hozzáférhet, akár bejelentkezés n
msgid "This file is public. It can be accessed without authentication."
msgstr "Ez a fájl nyilvános. Hitelesítés nélkül is elérhető."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Ez az űrlap módosult, miután betöltötte"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "Ez az űrlap egy Munkafolyamat miatt nem szerkeszthető."
@@ -26995,7 +27248,7 @@ msgstr "Ez a geolokációs szolgáltató még nem támogatott."
msgid "This goes above the slideshow."
msgstr "Ez a diavetítés fölé kerül."
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ez egy háttér jelentés. Adja meg a megfelelő szűrőket, majd hozzon létre újat."
@@ -27037,15 +27290,15 @@ msgstr "Ezt a linket már aktiválták az ellenőrzéshez."
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Ez a link érvénytelen, vagy lejárt. Kérjük, győződjön meg róla, hogy a helyesen illesztette be."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Előfordulhat, hogy több oldalra nyomtatják"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Ebben a hónapban"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ez a jelentés {0} sort tartalmaz, és túl nagy a böngészőben való megjelenítéshez, ehelyett ezt a jelentést {1} jelenítheti meg."
@@ -27053,7 +27306,7 @@ msgstr "Ez a jelentés {0} sort tartalmaz, és túl nagy a böngészőben való
msgid "This report was generated on {0}"
msgstr "Ez a jelentés ekkor készült: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Ez a jelentést készült {0}."
@@ -27077,7 +27330,7 @@ msgstr "Ez a szoftver számos nyílt forráskódú csomagra épül."
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "Ez a cím lesz a weboldal címeként és a meta címkékben is használva"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "Ez az érték a {0} {1} mezőjéből származik"
@@ -27121,7 +27374,7 @@ msgstr "Ez visszaállítja a túrát, és minden felhasználó számára megjele
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr "Ez azonnal megszakítja a feladatot, és veszélyes lehet, biztos benne?"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Lassított"
@@ -27152,6 +27405,7 @@ msgstr "Csütörtök"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27159,6 +27413,7 @@ msgstr "Csütörtök"
#: 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/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Idő"
@@ -27241,11 +27496,6 @@ msgstr "A(z) {0} időnek formátumban kell lennie: {1}"
msgid "Timed Out"
msgstr "Időtúllépés"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr "Timeless Indítópult"
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Időtlen Éjszaka"
@@ -27277,11 +27527,11 @@ msgstr "Idővonal Hivatkozások"
msgid "Timeline Name"
msgstr "Idővonal Neve"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "Idővonal mezőnek egy Hivatkozásnak vagy Dinamikus Hivatkozásnak kell lennie"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "Idővonal mezőnek egy érvényes mezőnévnek kell lennie"
@@ -27352,7 +27602,7 @@ msgstr "Tipp: Próbálja ki az új legördülő konzolt a következővel:"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27375,7 +27625,7 @@ msgstr "Cím Mező"
msgid "Title Prefix"
msgstr "Cím Előtag"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Cím mezőnek érvényes mezőnévvel kell rendelkeznie"
@@ -27466,7 +27716,7 @@ msgstr "Ha ezt a lépést JSON-ként szeretné exportálni, kapcsolja be egy Onb
msgid "To generate password click {0}"
msgstr "Jelszó létrehozásához kattintson a(z) {0} gombra"
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "A frissített jelentéshez kattintson erre: {0}."
@@ -27519,31 +27769,14 @@ msgstr "Tennivalók"
msgid "Today"
msgstr "Ma"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Diagram be-/kikapcsolása"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Teljes Szélesség be-/kikapcsolása"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Rácsnézet be-/kikapcsolása"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Oldalsáv be-/kikapcsolása"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Téma Váltása"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27579,7 +27812,7 @@ msgid "Tomorrow"
msgstr "Holnap"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "Túl Sok Dokumentum"
@@ -27587,15 +27820,19 @@ msgstr "Túl Sok Dokumentum"
msgid "Too Many Requests"
msgstr "Túl sok kérés"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "Túl sok módosítás történt az adatbázisban egyetlen műveletben."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Túl sok a sorban álló háttérfeladat ({0}). Kérjük, próbáld újra egy idő múlva."
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Túl sok felhasználó regisztrált mostanában, így a regisztrációt letiltottuk. Kérjük, próbálja meg újra egy óra múlva"
@@ -27651,10 +27888,10 @@ msgstr "Jobb felül"
msgid "Topic"
msgstr "Téma"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Összesen"
@@ -27662,14 +27899,14 @@ msgstr "Összesen"
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Background Workers"
-msgstr "Összes Háttér Munkás"
+msgstr "Összes Háttérmunkás"
#. 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 "Összes Hiba (utolsó 1 nap)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Összes Kép"
@@ -27754,7 +27991,7 @@ msgstr "Lépések Követése"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr "Megtekintések Követése"
+msgstr "Megtekintések Számának Követése"
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
@@ -27771,7 +28008,7 @@ msgstr "Nyomon követheti, hogy a címzett megnyitotta-e az e-mailt.\n"
msgid "Track milestones for any document"
msgstr "Bármely dokumentum mérföldköveinek nyomon követése"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "Nyomonkövetési URL generálva és a vágólapra másolva"
@@ -27807,7 +28044,7 @@ msgstr "Átmenetek"
msgid "Translatable"
msgstr "Lefordítható"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "Adatok Fordítása"
@@ -27818,7 +28055,7 @@ msgstr "Adatok Fordítása"
msgid "Translate Link Fields"
msgstr "Hivatkozás Mezők Fordítása"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Értékek fordítása"
@@ -27854,7 +28091,7 @@ msgstr "Szemét"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "Fa"
@@ -27903,8 +28140,8 @@ msgstr "Próbálja újra"
msgid "Try a Naming Series"
msgstr "Próbáljon ki egy névsorozatot"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Próbálja ki az új Nyomtatás Tervezőt"
@@ -27950,6 +28187,7 @@ msgstr "Kétfaktoros Hitelesítési Módszer"
#. 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 'Event Notifications'
#. 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'
@@ -27963,6 +28201,7 @@ msgstr "Kétfaktoros Hitelesítési Módszer"
#: 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/event_notifications/event_notifications.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
@@ -27971,7 +28210,7 @@ msgstr "Kétfaktoros Hitelesítési Módszer"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28139,7 +28378,7 @@ msgstr "UTM Forrás"
msgid "UUID"
msgstr "UUID"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "Dokumentum követésének megszüntetése {0}"
@@ -28147,7 +28386,7 @@ msgstr "Dokumentum követésének megszüntetése {0}"
msgid "Unable to find DocType {0}"
msgstr "DocType nem található {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Nem sikerült betölteni a kamerát."
@@ -28163,7 +28402,7 @@ msgstr "Nem sikerült megnyitni a csatolt fájlt. CSV formátumba mentette ki?"
msgid "Unable to read file format for {0}"
msgstr "Nem olvasható fájl formátum erre: {0}"
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "Nem tud levelet küldeni, mert hiányzik az e-mail fiók. Kérjük, állítsa be az alapértelmezett e-mail fiókot a Beállítások > E-mail Fiók menüpontban"
@@ -28184,20 +28423,20 @@ msgstr "Hozzárendelés Feloldása Feltétel"
msgid "Uncaught Exception"
msgstr "Nem várt kivétel (Uncaught Exception)"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Változatlan"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Visszavonás"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Visszavonás"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Kikövet"
@@ -28273,9 +28512,10 @@ msgstr "Olvasatlan Értesítés Elküldve"
msgid "Unsafe SQL query"
msgstr "Nem biztonságos SQL lekérdezés"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "Összes Kijelölés Megszüntetése"
@@ -28308,11 +28548,11 @@ msgstr "Leiratkozás Paraméterek"
msgid "Unsubscribed"
msgstr "Leiratkozott"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr "Nem támogatott függvény vagy operátor: {0}"
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr "Nem támogatott {0}: {1}"
@@ -28332,7 +28572,7 @@ msgstr "Kicsomagolt {0} fájlok"
msgid "Unzipping files..."
msgstr "Fájlok kibontása..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Mai események"
@@ -28340,13 +28580,13 @@ msgstr "Mai események"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Frissítés"
@@ -28417,7 +28657,7 @@ msgstr "Érték Frissítése"
msgid "Update from Frappe Cloud"
msgstr "Frissítés Frappe Cloud-ról"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "{0} rekord frissítése"
@@ -28425,8 +28665,7 @@ msgstr "{0} rekord frissítése"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Frissítve"
@@ -28438,11 +28677,11 @@ msgstr "Sikeresen Frissítve"
msgid "Updated To A New Version 🎉"
msgstr "Új verzióra frissítve 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Sikeresen Frissítve"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Frissítés"
@@ -28467,11 +28706,11 @@ msgstr "Globális beállítások frissítése"
msgid "Updating naming series options"
msgstr "Elnevezési sorozatok frissítése"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "Kapcsolódó mezők frissítése..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Frissítés: {0}"
@@ -28479,12 +28718,12 @@ msgstr "Frissítés: {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "{0} frissítése a következőből: {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "Díjcsomag Bővítése"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28532,6 +28771,7 @@ msgstr "Használja az Időszak Első Napját"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "HTML használata"
@@ -28603,7 +28843,7 @@ msgstr "Használja ezt, ha az alapértelmezett beállítások nem érzékelik me
msgid "Use of sub-query or function is restricted"
msgstr "Az al-lekérdezés vagy függvény használata korlátozott"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Használja az új Nyomtatási Formátum Szerkesztőt"
@@ -28637,9 +28877,8 @@ msgstr "OAuth-ot Használt"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28666,11 +28905,11 @@ msgstr "OAuth-ot Használt"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28806,7 +29045,7 @@ msgstr "Profilkép"
msgid "User Invitation"
msgstr "Meghívó"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Felhasználói Menü"
@@ -28822,19 +29061,19 @@ msgid "User Permission"
msgstr "Felhasználói Engedély"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Felhasználói Engedélyek"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Felhasználói Engedélyek"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "A felhasználói engedélyek segítségével korlátozhatjuk a felhasználók hozzáférését adott rekordokhoz."
@@ -28907,7 +29146,7 @@ msgstr "Felhasználó bejelentkezhet E-mail azonosító vagy mobil szám segíts
msgid "User can login using Email id or User Name"
msgstr "Felhasználó bejelentkezhet E-mail azonosító vagy a felhasználónév segítségével"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "A felhasználó nem létezik."
@@ -28941,27 +29180,27 @@ msgstr "A {0} e-mail címmel rendelkező felhasználó nem létezik"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "A {0} e-mail címmel rendelkező felhasználó nem létezik a rendszerben. Kérje meg a rendszergazdát, hogy hozza létre Önnek a felhasználót."
-#: frappe/core/doctype/user/user.py:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "A(z) {0} felhasználó nem törölhető"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "A(z) {0} felhasználó nem tiltható le"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "A(z) {0} felhasználót nem lehet átnevezni"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "A(z) {0} felhasználónak nincs hozzáférése ehhez a dokumentumhoz"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "A {0} felhasználónak nincs doctype hozzáférése szerepkörön keresztül a következő dokumentumhoz: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "A {0} felhasználónak nincs jogosultsága munkaterület létrehozására."
@@ -28970,11 +29209,11 @@ msgstr "A {0} felhasználónak nincs jogosultsága munkaterület létrehozásár
msgid "User {0} has requested for data deletion"
msgstr "A(z) {0} felhasználó adatok törlését kérte"
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "A {0} felhasználó {1} néven adta ki magát"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "A(z) {0} felhasználó le van tiltva"
@@ -28999,18 +29238,17 @@ msgstr "Felhasználói információ URI"
msgid "Username"
msgstr "Felhasználónév"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Felhasználónév {0} már létezik"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29081,7 +29319,7 @@ msgstr "Frappe Mail Beállítások Ellenőrzése"
msgid "Validate SSL Certificate"
msgstr "SSL Tanúsítvány Ellenőrzése"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Érvényesítési Hiba"
@@ -29110,7 +29348,7 @@ msgstr "Érvényesség"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29137,15 +29375,19 @@ msgstr "Érték Megváltozott"
msgid "Value To Be Set"
msgstr "Beállítandó Érték"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Az érték nem változtatható ezen: {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Az érték nem lehet negatív a következőre:"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Az érték nem lehet negatív a következőnél {0}: {1}"
@@ -29157,7 +29399,7 @@ msgstr "Az ellenőrző mező értéke 1 vagy 0 lehet"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "A(z) {0} mező értéke túl hosszú itt: {1}. A hossznak kevesebbnek kell lennie, mint {2} karakter"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "A(z) {0} értéke nem lehet lista"
@@ -29182,7 +29424,13 @@ msgstr "A \"Nincs\" érték nyilvános ügyfelet jelent. Ilyen esetben az ügyf
msgid "Value to Validate"
msgstr "Érvényesítendő érték"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Túl nagy érték"
@@ -29199,7 +29447,7 @@ msgstr "A(z) {0} értéknek érvényes időtartam formátumban kell lennie: d h
msgid "Value {0} must in {1} format"
msgstr "A(z) {0} értéknek {1} formátumban kell lennie"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Értékek Megváltoztak"
@@ -29208,11 +29456,11 @@ msgstr "Értékek Megváltoztak"
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Hitelesítés"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Hitelesítő Kód"
@@ -29220,7 +29468,7 @@ msgstr "Hitelesítő Kód"
msgid "Verification Link"
msgstr "Hitelesítő Hivatkozás"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "A hitelesítő kódot tartalmazó e-mail nem lett elküldve. Kérjük, vegye fel a kapcsolatot az adminisztrátorral."
@@ -29234,7 +29482,7 @@ msgid "Verified"
msgstr "Ellenőrzött"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Ellenőrzés"
@@ -29270,7 +29518,7 @@ msgstr "Nézet"
msgid "View All"
msgstr "Összes megtekintése"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "Auditnapló Megtekintése"
@@ -29282,7 +29530,7 @@ msgstr "Doctype Engedélyek Megtekintése"
msgid "View File"
msgstr "Fájl Megtekintése"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Teljes napló megtekintése"
@@ -29319,7 +29567,7 @@ msgstr "Jelentés megtekintése"
msgid "View Settings"
msgstr "Nézet beállítások"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr "Oldalsáv megtekintése"
@@ -29328,14 +29576,11 @@ msgstr "Oldalsáv megtekintése"
msgid "View Switcher"
msgstr "Nézetváltó"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "Weboldal megtekintése"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr "Összes {0} felhasználó megtekintése"
@@ -29351,7 +29596,7 @@ msgstr "Jelentés megtekintése böngészőben"
msgid "View this in your browser"
msgstr "Megtekintés a böngészőben"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Válasz Megtekintése"
@@ -29387,7 +29632,7 @@ msgstr "A Virtuális DocType {} függvényhez egy {} nevű statikus metódus sz
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "A Virtuális DocType {} megköveteli egy {} nevű példánymetódus felülbírálását, amelyet találtunk {}-ként"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr "A virtuális tábláknak virtuális mezőknek kell lenniük"
@@ -29435,7 +29680,7 @@ msgstr "Raktár"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Figyelmeztetés"
@@ -29444,7 +29689,7 @@ msgstr "Figyelmeztetés"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "Figyelmeztetés: ADATVESZTÉS FENYEGET! A folytatás véglegesen törli a következő adatbázis oszlopokat a doctype {0}:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Figyelmeztetés: Az elnevezés nincs beállítva"
@@ -29528,7 +29773,7 @@ msgstr "Weboldal"
msgid "Web Page Block"
msgstr "Weboldal Blokkolása"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "Web Oldal URL"
@@ -29625,7 +29870,7 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29680,7 +29925,7 @@ msgstr "Weboldal Szkript"
msgid "Website Search Field"
msgstr "Webhely Keresési Mező"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Webhely Keresési Mezőnek érvényes mezőnévnek kell lennie"
@@ -29745,6 +29990,11 @@ msgstr "Webhely Téma Kép Hivatkozás"
msgid "Website Themes Available"
msgstr "Elérhető Weboldal Témák"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29832,15 +30082,15 @@ msgstr "Üdvözlő URL"
msgid "Welcome Workspace"
msgstr "Kezdő Munkaterület"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "Köszöntő e-mail kiküldve"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Üdvözöljük itt {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Mik az újdonságok?"
@@ -29862,10 +30112,6 @@ msgstr "Dokumentum e-mailben történő küldésekor a PDF-et a Kommunikáció s
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 "Fájlok feltöltésekor kényszerítse ki a webalapú képrögzítés használatát. Ha ez nincs bejelölve, akkor az alapértelmezett viselkedés a mobil natív kamerájának használata, amikor mobilhasználatot észlel."
-#: 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 "Amikor a Visszavonás után Helyesbít egy dokumentumot, majd menti azt, az új számot kap, amely a régi szám egy verziója."
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29883,7 +30129,7 @@ msgstr "A társított DocType melyik nézetéhez kell a parancsikon segítségé
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Szélesség"
@@ -30004,6 +30250,10 @@ msgstr "Munkafolyamat Részletei"
msgid "Workflow Document State"
msgstr "Munkafolyamat Dokumentum Állapot"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -30021,11 +30271,11 @@ msgstr "Munkafolyamat Állapot"
msgid "Workflow State Field"
msgstr "Munkafolyamat Állapot Mező"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Munkafolyamat Állapota nincs beállítva"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Munkafolyamat Állapotának átalakítása nem engedélyezett a(z) {0} -ról {1} -re"
@@ -30033,7 +30283,7 @@ msgstr "Munkafolyamat Állapotának átalakítása nem engedélyezett a(z) {0} -
msgid "Workflow States Don't Exist"
msgstr "Munkafolyamat Állapotok nem léteznek"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Munkafolyamat Állapota"
@@ -30068,18 +30318,15 @@ msgstr "Munkafolyamat sikeresen frissítve"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Munkaterület"
@@ -30106,7 +30353,6 @@ msgstr "Munkaterület Link"
#. 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 "Munkaterület Kezelő"
@@ -30120,27 +30366,15 @@ msgstr "Munkaterület Szám Kártya"
msgid "Workspace Quick List"
msgstr "Munkaterület Gyors Lista"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "Munkaterület Beállításai"
-
-#. 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 "Munkaterület Beállítása Befejeződött"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Munkaterület Gyorshivatkozás"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr "Munkaterület Oldalsáv"
@@ -30150,13 +30384,7 @@ msgstr "Munkaterület Oldalsáv"
msgid "Workspace Sidebar Item"
msgstr "Munkaterület Oldalsáv Elem"
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr "Munkaterület Láthatóság"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "Munkaterület {0} létrehozva"
@@ -30185,11 +30413,12 @@ msgstr "Befejezés"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "Ír"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Helytelen Lekérés Innen érték"
@@ -30207,7 +30436,7 @@ msgstr "X Mező"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr "XMLHttpRequest hiba"
@@ -30222,7 +30451,7 @@ msgstr "Y Tengely Mezők"
#. 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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y Mező"
@@ -30270,10 +30499,14 @@ msgstr "Sárga"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30282,10 +30515,10 @@ msgstr "Sárga"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Igen"
@@ -30321,7 +30554,7 @@ msgstr "Hozzáadtál 1 sort ehhez: {0}"
msgid "You added {0} rows to {1}"
msgstr "{0} sort adtál hozzá ehhez: {1}"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "Külső linket készül megnyitni. A megerősítéshez kattintson újra a linkre."
@@ -30329,7 +30562,7 @@ msgstr "Külső linket készül megnyitni. A megerősítéshez kattintson újra
msgid "You are connected to internet."
msgstr "Csatlakozott az internethez."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "Egy másik felhasználónak adod ki magad."
@@ -30337,11 +30570,11 @@ msgstr "Egy másik felhasználónak adod ki magad."
msgid "You are not allowed to access this resource"
msgstr "Nincs hozzáférésed ehhez az erőforráshoz"
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Nincs hozzáférése ehhez a {0} rekordhoz, mert az a {1} '{2}' bejegyzéshez kapcsolódik a {3} mezőben"
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Nincs hozzáférése ehhez a {0} rekordhoz, mert az a {1} '{2}' bejegyzéshez kapcsolódik a {3} sorban, a {4} mezőben"
@@ -30364,7 +30597,7 @@ msgstr "Ezen jelentés szerkesztésére nem jogosult."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "A(z) {} doctype nem exportálható"
@@ -30372,10 +30605,14 @@ msgstr "A(z) {} doctype nem exportálható"
msgid "You are not allowed to print this report"
msgstr "Nem nyomtathatja ki ezt a jelentést"
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr "Nem küldhet e-mailt ezzel a dokumentummal kapcsolatban"
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Nem frissítheti ezt a Web Űrlap Dokumentumot"
@@ -30392,7 +30629,7 @@ msgstr "Nincs hozzáférésed ehhez az oldalhoz bejelentkezés nélkül."
msgid "You are not permitted to access this page."
msgstr "Nincs hozzáférésed ehhez az oldalhoz."
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nincs hozzáférése ehhez az erőforráshoz. Jelentkezzen be a hozzáféréshez"
@@ -30400,7 +30637,7 @@ msgstr "Nincs hozzáférése ehhez az erőforráshoz. Jelentkezzen be a hozzáf
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Mostantól követi ezt a dokumentumot. Naponta kap frissítéseket e-mailben. Ezt a felhasználói beállításokban módosíthatja."
-#: frappe/core/doctype/installed_applications/installed_applications.py:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Csak a sorrendet frissítheti, nem távolíthat el vagy adhat hozzá alkalmazásokat."
@@ -30413,7 +30650,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "Csatoltad {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Dinamikus tulajdonságokat adhatsz hozzá a dokumentumból a Jinja sablonok használatával."
@@ -30437,10 +30674,6 @@ msgstr "Ezt {0} beillesztheti a böngészőjébe is"
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "Megkérheti a csapatát, hogy küldje el újra a meghívót, ha még mindig szeretne csatlakozni."
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "A beküldött dokumentumokat visszavonhatja, majd helyesbítheti."
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "A megőrzési szabályzatot a {0} oldalon módosíthatja."
@@ -30495,7 +30728,7 @@ msgstr "Itt magas értéket állíthat be, ha több felhasználó fog bejelentke
msgid "You can try changing the filters of your report."
msgstr "Megpróbálhatod módosítani a jelentés szűrőit."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Az Űrlap testreszabása funkcióval szinteket állíthat be a mezőkön."
@@ -30525,6 +30758,10 @@ msgstr "Ön visszavonta ezt a dokumentumot {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Nem hozhat létre műszerfal-diagramot Egyes DocType-okból"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Nem lehet hatástalanítani 'Csak olvasható' mező: {0}"
@@ -30551,7 +30788,6 @@ msgid "You changed {0} to {1}"
msgstr "A {0} értéket {1}-re változtattad"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "Létrehoztad"
@@ -30560,11 +30796,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "Ezt a dokumentumot Ön hozta létre {0}"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "Nincs olvasási vagy kiválasztási jogod a következőhöz: {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nincs elég jogosultsága ehhez az erőforráshoz. Kérjük, forduljon a rendszergazdájához, hogy hozzáférhessen."
@@ -30576,15 +30808,19 @@ msgstr "Nincs elegendő jogosultsága a művelet végrehajtásához"
msgid "You do not have import permission for {0}"
msgstr "Nincs importálási engedélye a következőhöz: {0}"
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "Nincs jogod hozzáférni a következőhöz: {0}"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "Nincs jogod hozzáférni a következőhöz: {0} {1}"
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Nincs jogosultsága az összes csatolt dokumentum visszavonására."
@@ -30620,7 +30856,7 @@ msgstr "Sikeresen bejelentkeztél"
msgid "You have hit the row size limit on database table: {0}"
msgstr "Elérte a sorméret korlátot az adatbázis táblában: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Ön nem adott meg értéket. A mező üres lesz."
@@ -30640,7 +30876,7 @@ msgstr "Nem látott {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Még nem adott hozzá műszerfal-diagramokat vagy számkártyákat."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "Még nem hoztál létre {0}"
@@ -30649,7 +30885,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Túl sok kérés miatt elérted a korlátot. Kérjük, próbáld meg később."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Utoljára szerkesztetted"
@@ -30665,12 +30900,12 @@ msgstr "Az űrlap használatához be kell jelentkeznie."
msgid "You must login to submit this form"
msgstr "Be kell jelentkeznie az űrlap beküldéséhez"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "A művelet végrehajtásához szükséged van a '{0}' engedélyre a {1} {2} fiókon."
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Nyilvános munkaterület törléséhez munkaterület-kezelőnek kell lenned."
@@ -30678,7 +30913,7 @@ msgstr "Nyilvános munkaterület törléséhez munkaterület-kezelőnek kell len
msgid "You need to be Workspace Manager to edit this document"
msgstr "Munkaterület Kezelőnek kell lenned a dokumentum szerkesztéséhez"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Az oldal eléréséhez rendszerfelhasználónak kell lennie."
@@ -30710,7 +30945,7 @@ msgstr "Engedélyeznie kell a JavaScriptet az alkalmazás működéséhez."
msgid "You need to have \"Share\" permission"
msgstr "'Megosztás' joggal kell rendelkeznie"
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "A funkció használatához telepítened kell a pycups csomagot!"
@@ -30730,7 +30965,7 @@ msgstr "Írási jogosultság szükséges a {0} {1} oldalon az egyesítéshez"
msgid "You need write permission on {0} {1} to rename"
msgstr "Írási jogosultság szükséges a {0} {1} oldalon az átnevezéshez"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "{0} engedélyre van szükséged az értékek lekéréséhez a {1} {2} oldalról"
@@ -30777,7 +31012,7 @@ msgstr "Ön kikövette ezt a dokumentumot"
msgid "You viewed this"
msgstr "Ezt megtekintetted"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "Átirányítjuk Önt ide:"
@@ -30854,7 +31089,7 @@ msgstr "Az Ön e-mail címe"
msgid "Your exported report: {0}"
msgstr "Az Ön exportált jelentése: {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Az űrlapodat sikeresen frissítettük"
@@ -30896,7 +31131,7 @@ msgstr "A jelentés a háttérben készül. Amint elkészül, a(z) {0} e-mail c
msgid "Your session has expired, please login again to continue."
msgstr "Az Ön munkamenete lejárt, kérjük, jelentkezzen be újra a folytatáshoz."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "Az Ön webhelye karbantartás vagy frissítés alatt áll."
@@ -30918,7 +31153,7 @@ msgstr "Nulla jelenti a beküldött bejegyzések bármikor frissülhettek"
msgid "[Action taken by {0}]"
msgstr "[ {0} által végrehajtott művelet]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "Az `as_iterator` csak `as_list=True` vagy `as_dict=True` esetén működik."
@@ -30937,7 +31172,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "helyesbít"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "és"
@@ -30960,7 +31195,7 @@ msgstr "szerepkör szerint"
msgid "cProfile Output"
msgstr "cProfil Kimenet"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "naptár"
@@ -30976,7 +31211,9 @@ msgid "canceled"
msgstr "törölve"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "chrome"
@@ -31000,7 +31237,7 @@ msgid "cyan"
msgstr "cián"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "n"
@@ -31058,7 +31295,7 @@ msgstr "töröl"
msgid "descending"
msgstr "csökkenő"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "dokumentum típus..., pl. vevő"
@@ -31068,7 +31305,7 @@ msgstr "dokumentum típus..., pl. vevő"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "pl. \"Támogatás\", \"Értékesítés\", \"Gipsz Jakab\""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "pl. (55 + 434) / 4 vagy = Math.sin(Math.PI/2)..."
@@ -31083,7 +31320,7 @@ msgstr "pl. 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 "pl. valaszok@cegem.hu. Minden válasz ebbe a postafiókba fog jönni."
+msgstr "pl. info@cegem.hu. Minden válasz ebbe a postafiókba fog jönni."
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
@@ -31110,12 +31347,16 @@ msgstr "emacs"
msgid "email"
msgstr "e-mail"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "e-mail postafiók"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "üres"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "üres"
@@ -31171,12 +31412,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nem található a PATH-ban! Ez szükséges a biztonsági mentéshez."
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "ó"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "hub"
@@ -31191,6 +31432,20 @@ msgstr "ikon"
msgid "import"
msgstr "import"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "nev@pelda.hu"
@@ -31230,16 +31485,11 @@ msgid "long"
msgstr "hosszú"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "p"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr "macOS Indítópult"
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "{0} beolvasztva {1}-be"
@@ -31258,15 +31508,15 @@ msgstr "mm-dd-yyyy (hónap-nap-év)"
msgid "mm/dd/yyyy"
msgstr "mm/dd/yyyy (hónap/nap/év)"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "modul neve..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "új"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "új típusú dokumentum"
@@ -31328,7 +31578,7 @@ msgstr "on_update"
msgid "on_update_after_submit"
msgstr "on_update_after_submit"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "vagy"
@@ -31401,7 +31651,7 @@ msgid "restored {0} as {1}"
msgstr "visszaállítva {0} mint {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "mp"
@@ -31485,11 +31735,11 @@ msgstr "karakterlánc érték, pl: {0} vagy uid={0},ou=felhasználók,dc=példa,
msgid "submit"
msgstr "elküld"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "címke neve..., pl. #tag"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "szöveg dokumentum típusban"
@@ -31587,11 +31837,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "az elemre kattintva a felugró ablakra fókuszál, ha jelen van."
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (javított qt-vel)."
@@ -31627,11 +31879,11 @@ msgstr "éééé-hh-nn"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : típus}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31648,8 +31900,8 @@ msgstr "{0} ({1}) (1 sor kötelező)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31662,13 +31914,13 @@ msgid "{0} Chart"
msgstr "{0} Diagram"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} műszerfal"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31692,7 +31944,7 @@ msgstr "{0} Lista"
#: frappe/public/js/frappe/list/list_settings.js:33
msgid "{0} List View Settings"
-msgstr "{0} Listanézet Beállításai"
+msgstr "{0} Listanézet Beállítások"
#: frappe/public/js/frappe/utils/pretty_date.js:37
msgid "{0} M"
@@ -31702,11 +31954,11 @@ msgstr "{0} H"
msgid "{0} Map"
msgstr "{0} Térkép"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} Név"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Nem megengedett a {1} megváltoztatása a benyújtás után {2}-ről {3}-re"
@@ -31714,7 +31966,7 @@ msgstr "{0} Nem megengedett a {1} megváltoztatása a benyújtás után {2}-ről
msgid "{0} Report"
msgstr "{0} Jelentés"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} Jelentések"
@@ -31727,11 +31979,11 @@ msgid "{0} Tree"
msgstr "{0} Fa"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} Weboldal megtekintések"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} hozzáadva"
@@ -31793,7 +32045,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} érvénytelenítette ezt a dokumentumot {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} nem helyesbíthető, mert nincs visszavonva. Kérjük, vonja vissza a dokumentumot a helyesbített létrehozása előtt."
@@ -31822,16 +32074,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} {1} megváltoztatva {2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "A {0} érvénytelen Fetch From kifejezést tartalmaz, a Fetch From nem lehet önhivatkozó."
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} sikeresen létrehozva"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "{0} létrehozta ezt"
@@ -31848,11 +32103,19 @@ msgstr "{0} n"
msgid "{0} days ago"
msgstr "{0} napja"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{0} nem létezik a(z) {1} sorban"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "A {0} mező nem állítható be egyediként a {1} mezőben, mivel vannak nem egyedi meglévő értékek"
@@ -31877,7 +32140,7 @@ msgstr "{0} ó"
msgid "{0} has already assigned default value for {1}."
msgstr "A {0} már alapértelmezett értéket rendelt a {1} elemhez."
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr "{0} érvénytelen backtick jelölés: {1}"
@@ -31898,7 +32161,11 @@ msgstr "{0} ha a {1} másodpercen belül nem kerül átirányításra"
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} a {1} sorban nem lehet URL és gyermek elem egyaránt"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "A(z) {0} egy kötelező mező"
@@ -31906,7 +32173,15 @@ msgstr "A(z) {0} egy kötelező mező"
msgid "{0} is a not a valid zip file"
msgstr "{0} nem érvényes zip fájl"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "A(z) {0} érvénytelen adatmező."
@@ -31914,6 +32189,15 @@ msgstr "A(z) {0} érvénytelen adatmező."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} egy érvénytelen e-mail cím a 'Címzettek' közt"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} {1} és {2}között van"
@@ -31923,22 +32207,36 @@ msgstr "{0} {1} és {2}között van"
msgid "{0} is currently {1}"
msgstr "{0} jelenleg {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} egyenlő {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} nagyobb vagy egyenlő, mint {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} nagyobb, mint {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} kisebb vagy egyenlő, mint {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} kisebb, mint {1}"
@@ -31951,10 +32249,14 @@ msgstr "{0} olyan, mint a {1}"
msgid "{0} is mandatory"
msgstr "{0} kötelező"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "A(z) {0} nem a(z) {1} táblájának gyermektáblája"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant 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} nem a {1} doctype mezője"
@@ -31971,12 +32273,12 @@ msgstr "{0} nem érvényes Naptár. Átirányítás az alapértelmezett Naptárr
msgid "{0} is not a valid Cron expression."
msgstr "{0} nem érvényes Cron kifejezés."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "A(z) {0} nem érvényes DocType a Dynamic Link számára"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} nem érvényes e-mail cím"
@@ -31984,23 +32286,23 @@ msgstr "{0} nem érvényes e-mail cím"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} nem érvényes ISO 3166 ALPHA-2 kód."
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} nem érvényes név"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} nem érvényes telefonszám"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} nem érvényes munkafolyamat-állapot. Kérjük, frissítse a munkafolyamatot, és próbálja újra."
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nem érvényes szülő DocType a(z) {1} számára"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nem érvényes szülőmező a {1} számára"
@@ -32016,6 +32318,11 @@ msgstr "{0} nem zip fájl"
msgid "{0} is not an allowed role for {1}"
msgstr "{0} nem engedélyezett szerepkör a {1} számára"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} nem egyenlő {1}"
@@ -32024,10 +32331,12 @@ msgstr "{0} nem egyenlő {1}"
msgid "{0} is not like {1}"
msgstr "{0} nem olyan, mint {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} nem tartozik {1} közé"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} nincs beállítva"
@@ -32036,36 +32345,50 @@ msgstr "{0} nincs beállítva"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} most alapértelmezett nyomtatási formátum az {1} doctype-hoz"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} egyike az {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} szükséges"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} be van állítva"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} a {1}-en belül van"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} elem kijelölve"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} most adta ki magát neked. Ezt az okot adta meg: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} utoljára szerkesztette ezt"
@@ -32093,35 +32416,35 @@ msgstr "{0} perce"
msgid "{0} months ago"
msgstr "{0} hónappal ezelőtt"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} a(z) {1} után kell lennie"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} a '{1}' kezdetűnek kell lennie."
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} egyenlőnek kell lennie '{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} nem lehet a(z) {1} egyike sem"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} a(z) {1} egyikének kell lennie"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} először meg kell adni"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} egyedinek kell lennie"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} kell lennie {1} {2}"
@@ -32138,11 +32461,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} nem szabad átnevezni"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} / {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} a {1} -ből ({2} sor gyermekekkel)"
@@ -32171,7 +32494,7 @@ msgstr "{0} rekordokat {1} napig őrizünk meg."
msgid "{0} records deleted"
msgstr "{0} rekord törölve"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "A(z) {0} rekordok exportálásra kerülnek"
@@ -32196,7 +32519,7 @@ msgstr "{0} eltávolított {1} sort innen: {2}"
msgid "{0} role does not have permission on any doctype"
msgstr "{0} a szerepkörnek nincs jogosultsága egyetlen doctype-ra sem"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0}, sor #{1}:"
@@ -32210,7 +32533,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0} sor ide: {1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} sikeresen mentve"
@@ -32218,7 +32541,7 @@ msgstr "{0} sikeresen mentve"
msgid "{0} self assigned this task: {1}"
msgstr "{0} ezt a feladatot saját magának osztotta ki: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} megosztott veled egy {1} {2} dokumentumot"
@@ -32286,7 +32609,7 @@ msgstr "{0} w"
msgid "{0} weeks ago"
msgstr "{0} héttel ezelőtt"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr "{0} a szerepkörrel: {1}"
@@ -32298,7 +32621,7 @@ msgstr "{0} é"
msgid "{0} years ago"
msgstr "{0} évvel ezelőtt"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} hozzáadva"
@@ -32306,11 +32629,11 @@ msgstr "{0} {1} hozzáadva"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} hozzáadva az műszerfalthoz {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} már létezik"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} nem lehet \"{2}\". A \"{3}\" egyikének kell lennie"
@@ -32322,11 +32645,11 @@ msgstr "{0} {1} nem lehet levélcsomópont, mivel vannak gyermekei"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} nem létezik, válasszon egy új célt egyesítéshez"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} a következő beküldött dokumentumokhoz kapcsolódik: {2}"
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} nem található"
@@ -32334,87 +32657,59 @@ msgstr "{0} {1} nem található"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: A Beküldött rekordot nem lehet törölni. Először {2} vissza kell vonni {3}."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, Sor {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} kész | Kérjük, hagyja ezt a fület nyitva a befejezésig."
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) csonkolva lesz, mivel a maximálisan megengedett karakterek száma {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Nem állítható Helyesbítésre, Visszavonás nélkül"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Nem állítható Hozzárendelés Helyesbítésre, ha nem Benyújtható"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Nem állítható be a Beküldés és Hozzárendelés, ha nem Beküldhető"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: nem lehet Visszavonni Beküldés nélkül"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Létrehozás nélkül nem állítható be az Import"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Írás nélkül nem beállítható a Küldés, Visszavonás és Helyesbítés"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Nem lehet beállítani az importálást, mivel a {1} nem importálható"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Nem sikerült új ismétlődő dokumentumot csatolni. Ha engedélyezni szeretné a dokumentum csatolását az automatikus ismétlődő értesítő e-mailben, engedélyezze a {1} a Nyomtatási Beállítások menüpontban"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: A(z) '{1}' mező nem állítható be egyediként, mivel nem egyedi értékeket tartalmaz"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: A(z) {2} sorban lévő {1} mező nem rejthető el és kötelező alapértelmezett érték nélkül"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: A(z) {2} típusú {1} mező nem lehet kötelező"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: A(z) {1} mezőnév többször megjelenik a(z) {2} sorokban"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: A(z) {2} {1} mezőtípusa nem lehet egyedi"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Nincsenek beállítva alapvető jogosultságok"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Csak egy szabály engedélyezett ugyanazzal a Szerepkörrel, Szinttel és {1}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Az opcióknak érvényes DocType-nak kell lenniük a {1} mezőben a {2} sorban"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: A Hivatkozás vagy Táblázat típusú mezőhöz szükséges beállítások {1} a {2} sorban"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: A(z) {1} opcióknak meg kell egyezniük a {3} mező doctype nevével {2}"
@@ -32422,15 +32717,59 @@ msgstr "{0}: A(z) {1} opcióknak meg kell egyezniük a {3} mező doctype nevéve
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Egyéb engedélyezési szabályok is érvényesek lehetnek"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: A 0. szintű jogosultságot be kell állítani, mielőtt a magasabb szintűt beállítaná"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: A mező korlátját szükség esetén a {1} segítségével növelheti"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: a mezőnév nem állítható be fenntartott kulcsszóra {1}"
@@ -32443,15 +32782,15 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} beállítva erre az állapotra: {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0} {1} a {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}: A {2} mezőtípusa {1} nem indexelhető"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} mentve"
@@ -32471,11 +32810,11 @@ msgstr "{count} sor kiválasztva"
msgid "{count} rows selected"
msgstr "{count} sorok kiválasztva"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} nem érvényes mezőnév minta. Ilyennek kellene lennie {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Teljes"
diff --git a/frappe/locale/id.po b/frappe/locale/id.po
index 2c9c596b70..a9226d5787 100644
--- a/frappe/locale/id.po
+++ b/frappe/locale/id.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-12-21 09:35+0000\n"
-"PO-Revision-Date: 2026-01-11 00:40\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:51\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@@ -22,13 +22,13 @@ 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'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Company History\""
-msgstr "\"Riwayat Perusahaan\""
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:202
msgid "\"Parent\" signifies the parent table in which this row must be added"
@@ -38,9 +38,9 @@ msgstr "\"Induk\" menandakan tabel induk di mana baris ini harus ditambahkan"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Team Members\" or \"Management\""
-msgstr "\"Anggota Tim\" atau \"Manajemen\""
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "Bidang "amended_from" harus ada untuk melakukan amandemen."
@@ -64,9 +64,9 @@ msgstr "© Frappe Technologies Pvt. Ltd. dan kontributor"
#. 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 ""
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "'Dalam Pencarian Global' tidak diizinkan untuk bidang {0} dengan tipe {1}"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "'Di Pencarian Global' tidak dibolehkan jenis {0} pada baris {1}"
@@ -90,19 +90,19 @@ msgstr "'Tampilan Daftar' tidak diperbolehkan jenis {0} di baris {1}"
msgid "'Recipients' not specified"
msgstr "'Penerima' belum ditentukan"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' bukan URL yang valid"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' tidak diperbolehkan untuk jenis {1} di baris {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Wajib)"
@@ -119,7 +119,7 @@ msgstr "+ Tambah / Hapus Bidang"
#. State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "0 - Draft; 1 - Submitted; 2 - Cancelled"
-msgstr "0 - Draf; 1 - Diajukan; 2 - Dibatalkan"
+msgstr ""
#. Description of the 'Minimum Password Score' (Select) field in DocType
#. 'System Settings'
@@ -138,9 +138,9 @@ msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "0 is highest"
-msgstr "0 adalah tertinggi"
+msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Benar & 0 = Salah"
@@ -148,8 +148,7 @@ msgstr "1 = Benar & 0 = Salah"
#: frappe/geo/doctype/currency/currency.json
msgid "1 Currency = [?] Fraction\n"
"For e.g. 1 USD = 100 Cent"
-msgstr "1 Mata Uang = [?] Pecahan\n"
-"Contoh: 1 USD = 100 Sen"
+msgstr ""
#: frappe/public/js/frappe/form/reminders.js:19
msgid "1 Day"
@@ -159,7 +158,7 @@ msgstr "1 Hari"
msgid "1 Google Calendar Event synced."
msgstr "1 Acara Kalender Google disinkronkan."
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Laporan"
@@ -190,7 +189,7 @@ msgstr "1 bulan lalu"
msgid "1 of 2"
msgstr "1 dari 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 catatan akan diekspor"
@@ -262,13 +261,13 @@ msgstr "; tidak diijinkan dalam kondisi"
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<"
-msgstr "<"
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<="
-msgstr "<="
+msgstr ""
#. Description of the 'Generate Keys' (Button) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -588,7 +587,7 @@ msgstr ""
msgid ">="
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
@@ -602,7 +601,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr ""
@@ -626,7 +625,7 @@ msgstr "{0} {1} berulang telah dibuat untuk Anda melalui Ulangi Otomatis {2}."
#. Description of the 'Symbol' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "A symbol for this currency. For e.g. $"
-msgstr "Simbol untuk mata uang ini. Contoh. $"
+msgstr ""
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
msgid "A template already exists for field {0} of {1}"
@@ -646,67 +645,67 @@ msgstr "Sebuah kata dengan sendirinya mudah ditebak."
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A0"
-msgstr "A0"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A1"
-msgstr "A1"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A2"
-msgstr "A2"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A3"
-msgstr "A3"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A4"
-msgstr "A4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A5"
-msgstr "A5"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A6"
-msgstr "A6"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A7"
-msgstr "A7"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A8"
-msgstr "A8"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A9"
-msgstr "A9"
+msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "ALL"
-msgstr "SEMUA"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr "API"
+msgstr ""
#. 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 the api_endpoint (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -921,14 +920,14 @@ msgstr ""
msgid "Action Complete"
msgstr "Tindakan Selesai"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "aksi Gagal"
#. Label of the action_label (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Action Label"
-msgstr "Label Tindakan"
+msgstr ""
#. Label of the action_timeout (Int) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
@@ -970,20 +969,20 @@ msgstr "Tindakan {0} gagal pada {1} {2}. Lihat {3}"
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Tindakan"
#. Label of the activate (Check) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
msgid "Activate"
-msgstr "Aktifkan"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
@@ -1000,14 +999,14 @@ msgstr "Aktif"
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Active Directory"
-msgstr "Direktori Aktif"
+msgstr ""
#. Label of the active_domains_sb (Section Break) field in DocType 'Domain
#. Settings'
#. Label of the active_domains (Table) field in DocType 'Domain Settings'
#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Active Domains"
-msgstr "Domain Aktif"
+msgstr ""
#. Label of the active_sessions (Table) field in DocType 'User'
#. Label of the active_sessions (Int) field in DocType 'System Health Report'
@@ -1033,20 +1032,20 @@ msgstr "Aktivitas"
msgid "Activity Log"
msgstr "Log Aktivitas"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Tambahkan"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Tambah / Hapus Kolom"
@@ -1054,11 +1053,11 @@ msgstr "Tambah / Hapus Kolom"
msgid "Add / Update"
msgstr "Tambah / Perbarui"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Tambah Aturan Baru"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Tambahkan lampiran"
@@ -1066,23 +1065,27 @@ msgstr "Tambahkan lampiran"
#. 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 "Tambah Gambar Latar Belakang"
+msgstr ""
#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Bottom"
-msgstr "Tambah Garis Tepi di Bawah"
+msgstr ""
#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Top"
-msgstr "Tambah Garis Tepi di Atas"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Tambah Kartu ke Dasbor"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Tambahkan Bagan ke Dasbor"
@@ -1091,8 +1094,8 @@ msgid "Add Child"
msgstr "Tambah Anak"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1115,7 +1118,7 @@ msgstr ""
#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Add Custom Tags"
-msgstr "Tambah Tag Kustom"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
#: frappe/public/js/frappe/widgets/widget_dialog.js:716
@@ -1125,7 +1128,7 @@ msgstr "Tambahkan Filter"
#. 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 "Tambah Latar Belakang Abu-abu"
+msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
#: frappe/public/js/frappe/ui/group_by/group_by.js:430
@@ -1136,11 +1139,7 @@ msgstr "Tambahkan Grup"
msgid "Add Indexes"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Tambah Beberapa"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Tambahkan Rule Izin Baru"
@@ -1151,47 +1150,43 @@ msgstr "Tambahkan Peserta"
#. 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 "Tambah Parameter Kueri"
+msgstr ""
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Tambah Peran"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr "Tambah Baris"
-
#. 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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Tambahkan Signature"
#. 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 "Tambah Spasi di Bawah"
+msgstr ""
#. Label of the add_top_padding (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Top"
-msgstr "Tambah Spasi di Atas"
+msgstr ""
#: frappe/email/doctype/email_group/email_group.js:38
#: frappe/email/doctype/email_group/email_group.js:59
msgid "Add Subscribers"
msgstr "Tambahkan Pelanggan"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Tambah Tag"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Tambah Tag"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr ""
@@ -1241,19 +1236,19 @@ msgstr "Tambah komentar"
msgid "Add a new section"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr ""
@@ -1271,6 +1266,10 @@ msgstr ""
msgid "Add field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1284,6 +1283,10 @@ msgstr ""
msgid "Add page break"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Tambahkan skrip untuk Tabel Anak"
@@ -1302,7 +1305,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Tambahkan ke Dashboard"
@@ -1342,8 +1345,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Ditambahkan {0} ({1})"
@@ -1433,7 +1436,7 @@ msgstr ""
msgid "Adds a custom field to a DocType"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Administrasi"
@@ -1460,15 +1463,15 @@ msgstr "Administrasi"
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator mengakses {0} pada {1} melalui IP Address {2}."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr ""
@@ -1477,23 +1480,23 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Advanced"
-msgstr "Lanjutan"
+msgstr ""
#. Label of the advanced_control_section (Section Break) field in DocType 'User
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Advanced Control"
-msgstr "Kontrol Lanjutan"
+msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Pencarian Lanjutan"
#. 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
@@ -1503,12 +1506,12 @@ msgstr "Setelah"
#. Option for the 'DocType Event' (Select) field in DocType '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'
#: 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'
#: frappe/core/doctype/server_script/server_script.json
@@ -1518,17 +1521,17 @@ msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Insert"
-msgstr "Setelah Sisip"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Rename"
-msgstr "Setelah Ubah Nama"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Save"
-msgstr "Setelah Simpan"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -1567,7 +1570,7 @@ msgstr "Bidang Fungsi Agregat diperlukan untuk membuat bagan dasbor"
msgid "Alert"
msgstr ""
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1591,6 +1594,15 @@ msgstr ""
msgid "Align Value"
msgstr "menyelaraskan Nilai"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1623,7 +1635,7 @@ msgstr "Semua"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Semua Hari"
@@ -1635,11 +1647,11 @@ msgstr "Semua Gambar yang dilampirkan pada Slideshow Situs Web harus umum"
msgid "All Records"
msgstr "Semua Rekaman"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "Semua kustomisasi akan terhapus. Silakan konfirmasi."
@@ -1950,7 +1962,7 @@ msgstr ""
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Membiarkan DocType, DocType. Hati-hati!"
@@ -1984,13 +1996,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Sudah Terdaftar"
@@ -2085,7 +2145,7 @@ msgstr "Amandemen"
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr ""
@@ -2098,7 +2158,7 @@ msgstr ""
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Terjadi kesalahan saat mengatur Sesi Default"
@@ -2149,7 +2209,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr ""
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
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."
@@ -2162,7 +2222,7 @@ msgstr "Lain {0} dengan nama {1} ada, pilih nama lain"
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2212,11 +2272,11 @@ msgstr "Nama App"
msgid "App Name (Client Name)"
msgstr ""
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "App {0} tidak diinstal"
@@ -2290,7 +2350,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Terapkan Aturan Penugasan"
@@ -2299,6 +2359,10 @@ msgstr "Terapkan Aturan Penugasan"
msgid "Apply Filters"
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2338,7 +2402,7 @@ msgstr ""
msgid "Apply to all Documents Types"
msgstr "Berlaku untuk semua Jenis Dokumen"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Menerapkan: {0}"
@@ -2346,18 +2410,11 @@ msgstr "Menerapkan: {0}"
msgid "Approval Required"
msgstr "Diperlukan Persetujuan"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2380,16 +2437,16 @@ msgstr "Kolom diarsipkan"
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Anda yakin ingin menghapus semua baris?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: 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?"
@@ -2408,19 +2465,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Anda yakin ingin menggabungkan {0} dengan {1}?"
@@ -2440,7 +2497,7 @@ msgstr "Apakah Anda yakin Anda ingin menautkan komunikasi ini untuk {0}?"
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
@@ -2489,7 +2546,7 @@ msgstr ""
msgid "Ask"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr ""
@@ -2502,7 +2559,7 @@ msgstr ""
msgid "Assign To"
msgstr "Tugaskan Kepada"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Tugaskan Kepada"
@@ -2552,7 +2609,7 @@ msgstr "Ditugaskan Oleh"
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2641,7 +2698,7 @@ msgstr "Tugas"
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2666,7 +2723,7 @@ msgstr ""
msgid "Attach"
msgstr "Melampirkan"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Lampirkan Dokumen Cetak"
@@ -2764,19 +2821,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Lampiran"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "Mencoba Koneksi ke Baki QZ ..."
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "Mencoba meluncurkan QZ Tray ..."
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr ""
@@ -3101,11 +3165,6 @@ msgstr ""
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3211,17 +3270,12 @@ msgstr ""
msgid "Background Image"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Pekerjaan/Proses Latar"
@@ -3334,8 +3388,8 @@ msgstr ""
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "Berdasarkan"
@@ -3359,6 +3413,8 @@ msgstr ""
msgid "Basic Info"
msgstr ""
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3428,7 +3484,7 @@ msgstr "Dimulai dengan"
msgid "Beta"
msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 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"
@@ -3556,18 +3612,11 @@ msgstr ""
msgid "Brand Image"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr ""
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
@@ -3638,7 +3687,7 @@ msgstr "Hapus Massal"
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Sunting Massal {0}"
@@ -3659,7 +3708,7 @@ msgstr ""
msgid "Bulk Update"
msgstr "Perbarui Massal"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3671,7 +3720,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -3820,7 +3869,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr "Cache Dihapus"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Menghitung"
@@ -3870,12 +3919,12 @@ msgid "Callback Title"
msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3887,11 +3936,11 @@ msgstr ""
msgid "Campaign Description (Optional)"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -3901,7 +3950,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -3923,7 +3972,7 @@ msgstr ""
msgid "Cancel"
msgstr "Batalkan"
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Batalkan"
@@ -3933,11 +3982,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Batalkan"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "Batalkan Semua Dokumen"
@@ -3949,7 +3998,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Batalkan {0} dokumen?"
@@ -3982,7 +4031,7 @@ msgstr "Membatalkan"
msgid "Cancelling documents"
msgstr "Membatalkan dokumen"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "Membatalkan {0}"
@@ -3990,7 +4039,7 @@ msgstr "Membatalkan {0}"
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -3998,7 +4047,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr "Tidak bisa Hapus"
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4018,11 +4067,11 @@ msgstr "Tidak dapat membatalkan sebelum mengirimkan. Lihat Transition {0}"
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4034,7 +4083,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "Tidak dapat mengubah keadaan Dibatalkan Dokumen. Transisi baris {0}"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4042,10 +4091,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr "tidak dapat membuat {0} terhadap dokumen anak: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "Tidak dapat menghapus Rumah dan Lampiran folder"
@@ -4054,15 +4107,15 @@ msgstr "Tidak dapat menghapus Rumah dan Lampiran folder"
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}"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "Tidak dapat menghapus tindakan standar. Anda bisa menyembunyikannya jika mau"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4073,11 +4126,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "Tidak dapat menghapus link standar. Anda bisa menyembunyikannya jika mau"
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4105,7 +4158,7 @@ msgstr ""
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"
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "Tidak dapat mengedit dokumen dibatalkan"
@@ -4118,7 +4171,7 @@ msgstr "Tidak dapat mengedit filter untuk bagan standar"
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "Tidak dapat mengedit bidang standar"
@@ -4134,15 +4187,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Tidak dapat memetakan banyak printer ke format cetak tunggal."
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "Tidak dapat menghubungkan dokumen dibatalkan: {0}"
@@ -4154,7 +4207,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr "Tidak dapat mencocokkan kolom {0} dengan bidang apa pun"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "Tidak dapat memindahkan baris"
@@ -4179,7 +4232,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "Tidak dapat memperbarui {0}"
@@ -4199,7 +4252,7 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr "Kapitalisasi tidak membantu sangat banyak."
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
@@ -4213,7 +4266,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "Label Kartu"
@@ -4242,17 +4295,19 @@ msgstr ""
msgid "Category Name"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4340,7 +4395,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4405,6 +4460,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr "Periksa Log Kesalahan untuk informasi lebih lanjut: {0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr "Centang ini jika Anda tidak ingin pengguna mendaftar akun di situs Anda. Pengguna tidak akan mendapatkan akses meja kecuali Anda menyediakannya secara eksplisit."
@@ -4456,7 +4517,7 @@ msgstr ""
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4466,7 +4527,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain"
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4474,7 +4535,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr "Pilih Kartu yang Ada atau buat Kartu Baru"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4494,10 +4555,6 @@ msgstr ""
msgid "Choose authentication method to be used by all users"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr ""
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4514,11 +4571,11 @@ msgstr ""
msgid "Clear"
msgstr "Bersih"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr ""
@@ -4526,7 +4583,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4552,7 +4609,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr "Hapus Izin Pengguna"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4620,7 +4677,7 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
@@ -4728,7 +4785,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Tutup"
@@ -4738,7 +4795,7 @@ msgstr "Tutup"
msgid "Close Condition"
msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4794,12 +4851,12 @@ msgstr ""
msgid "Collapse"
msgstr "Jatuh"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Jatuh"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Perkecil Semua"
@@ -4856,7 +4913,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4867,7 +4924,7 @@ 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4912,11 +4969,11 @@ msgstr "Kolom Nama"
msgid "Column Name cannot be empty"
msgstr "Nama kolom tidak boleh kosong"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -4959,7 +5016,7 @@ msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5106,12 +5163,12 @@ msgstr "Lengkap"
msgid "Complete By"
msgstr "Lengkap Dengan"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Pendaftaran Lengkap"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5126,7 +5183,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Selesai"
@@ -5217,7 +5274,7 @@ msgstr ""
msgid "Configure Chart"
msgstr "Konfigurasikan Bagan"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5306,8 +5363,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "Terhubung ke Baki QZ!"
@@ -5425,7 +5482,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5494,11 +5551,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "Disalin ke papan klip."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5510,12 +5567,12 @@ msgstr ""
msgid "Copy embed code"
msgstr ""
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr ""
@@ -5536,7 +5593,7 @@ msgstr "Core DocTypes tidak dapat dikustomisasi."
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "Modul Inti {0} tidak dapat dicari dalam Pencarian Global."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr ""
@@ -5544,7 +5601,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr "Tidak dapat terhubung ke server email keluar"
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "Tidak dapat menemukan {0}"
@@ -5552,11 +5609,11 @@ msgstr "Tidak dapat menemukan {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Tidak dapat memetakan kolom {0} ke bidang {1}"
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5564,7 +5621,7 @@ msgstr ""
msgid "Could not start up:"
msgstr "Tidak dapat memulai:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "Tidak dapat menyimpan, harap periksa data yang telah Anda masukkan"
@@ -5616,7 +5673,7 @@ msgstr ""
msgid "Country"
msgstr "Negara"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
@@ -5643,15 +5700,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Buat"
@@ -5664,13 +5722,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "Buat Kartu"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "Buat Bagan"
@@ -5704,7 +5762,7 @@ msgstr ""
msgid "Create New"
msgstr "Buat New"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Buat New"
@@ -5717,7 +5775,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5733,18 +5791,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "Buat catatan baru"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Buat baru {0}"
@@ -5761,7 +5819,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "Buat {0} pertama Anda"
@@ -5780,13 +5838,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Dibuat Oleh"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "Dibuat Bidang Kustom {0} pada {1}"
@@ -5980,7 +6046,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "Dokumen Kustom"
@@ -5991,15 +6057,15 @@ msgstr "Dokumen Kustom"
msgid "Custom Field"
msgstr "Bidang Kustom"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
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."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Bidang Kustom hanya dapat ditambahkan ke DocType standar."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Bidang Kustom tidak dapat ditambahkan ke DocTypes inti."
@@ -6025,7 +6091,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr ""
@@ -6071,7 +6137,7 @@ msgstr ""
msgid "Custom Report"
msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "Laporan Kustom"
@@ -6096,11 +6162,11 @@ msgstr ""
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6123,26 +6189,26 @@ msgstr "Kustom?"
msgid "Customization"
msgstr "Kustomisasi"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "Penyesuaian ulang Reset"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "Penyesuaian untuk {0} diekspor ke:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Sesuaikan"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Sesuaikan"
@@ -6239,7 +6305,7 @@ msgstr "Sehari-hari"
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."
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "Acara Harian harus selesai pada Hari yang Sama."
@@ -6296,8 +6362,8 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "Dasbor"
@@ -6547,7 +6613,7 @@ msgstr ""
msgid "Days Before or After"
msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr ""
@@ -6744,11 +6810,11 @@ msgstr ""
msgid "Default display currency"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
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'"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "Nilai bawaan untuk {0} harus ada di daftar opsi."
@@ -6805,11 +6871,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6817,7 +6884,7 @@ msgstr ""
msgid "Delete"
msgstr "Hapus"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Hapus"
@@ -6831,10 +6898,6 @@ msgstr "Hapus"
msgid "Delete Account"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr ""
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6864,7 +6927,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr "Hapus semua"
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr ""
@@ -6892,6 +6963,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6906,16 +6981,20 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr "Hapus data ini untuk bisa mengirim ke alamat surel ini"
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Hapus {0} item secara permanen?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6946,7 +7025,7 @@ msgstr ""
msgid "Deleted all documents successfully"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Dihapus!"
@@ -7053,6 +7132,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7135,16 +7215,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7174,11 +7259,11 @@ msgstr "Penjelasan"
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "Tidak menambahkan"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "Tidak menghapus"
@@ -7326,10 +7411,11 @@ msgstr "Dinonaktifkan"
msgid "Disabled Auto Reply"
msgstr "Balas Otomatis Dinonaktifkan"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Membuang"
@@ -7343,11 +7429,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Membuang"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7421,11 +7507,11 @@ msgstr "Jangan Buat Pengguna Baru"
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "Jangan edit header yang sudah ada di template"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7433,7 +7519,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "Apakah Anda ingin membatalkan semua dokumen yang ditautkan?"
@@ -7488,7 +7574,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7511,7 +7596,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7524,7 +7608,7 @@ msgstr ""
msgid "DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
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"
@@ -7592,10 +7676,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "DocType harus Submittable untuk Doc Event yang dipilih"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7613,15 +7693,15 @@ msgstr ""
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "Nama DocType tidak boleh dimulai atau diakhiri dengan spasi"
@@ -7635,7 +7715,7 @@ msgstr ""
msgid "Doctype"
msgstr "DOCTYPE"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7674,7 +7754,7 @@ msgstr ""
msgid "Document Follow"
msgstr "Ikuti Dokumen"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "Dokumen Ikuti Pemberitahuan"
@@ -7697,19 +7777,19 @@ msgstr ""
msgid "Document Links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7728,8 +7808,8 @@ msgstr ""
msgid "Document Name"
msgstr "Dokumen Nama"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7747,7 +7827,7 @@ msgstr "Kondisi Aturan Penamaan Dokumen"
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "dokumen Antri"
@@ -7851,7 +7931,7 @@ msgstr ""
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7871,11 +7951,11 @@ msgstr "Jenis Dokumen"
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "Jenis Dokumen tidak dapat diimpor"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "Jenis Dokumen tidak dapat dikirim"
@@ -7904,27 +7984,27 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr ""
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr ""
@@ -7936,11 +8016,11 @@ msgstr ""
msgid "Document not Relinked"
msgstr ""
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "Dokumen diubah namanya dari {0} ke {1}"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
@@ -7956,10 +8036,6 @@ msgstr "Dokumen {0} Sudah Dipulihkan"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "Dokumen {0} telah diatur untuk menyatakan {1} oleh {2}"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr ""
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8097,7 +8173,7 @@ msgstr "Unduh Tautan"
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "Unduh Laporan"
@@ -8181,7 +8257,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "Duplikat"
@@ -8189,19 +8265,15 @@ msgstr "Duplikat"
msgid "Duplicate Entry"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "Nama filter duplikat"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Nama Duplikat"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr ""
@@ -8209,6 +8281,18 @@ msgstr ""
msgid "Duplicate field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8296,9 +8380,10 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8309,7 +8394,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8319,7 +8404,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8340,15 +8425,15 @@ msgstr ""
msgid "Edit Custom Block"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "Mengedit Custom HTML"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "mengedit DocType"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "mengedit DocType"
@@ -8362,7 +8447,7 @@ msgstr ""
msgid "Edit Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr ""
@@ -8375,7 +8460,7 @@ msgstr ""
msgid "Edit Format"
msgstr "Mengedit Format"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8433,7 +8518,7 @@ msgstr ""
msgid "Edit Shortcut"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8456,11 +8541,11 @@ msgstr ""
msgid "Edit the {0} Doctype"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "Edit untuk menambahkan konten"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr ""
@@ -8516,6 +8601,7 @@ msgstr ""
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8531,12 +8617,14 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: 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 +8659,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "Akun surel ditambahkan beberapa kali"
@@ -8769,7 +8857,7 @@ msgstr "Email telah dipindahkan ke sampah"
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Surel tidak dikirim ke {0} (tidak berlangganan / dinonaktifkan)"
@@ -8808,7 +8896,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -8816,7 +8904,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9135,11 +9223,11 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Masukkan Id Klien dan Rahasia Klien di Pengaturan Google."
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9166,6 +9254,10 @@ msgstr ""
msgid "Enter folder name"
msgstr "Masukkan nama folder"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9196,7 +9288,7 @@ msgstr "Nama kesatuan"
msgid "Entity Type"
msgstr "Jenis Entitas"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr ""
@@ -9230,7 +9322,7 @@ msgstr ""
msgid "Error"
msgstr "Kesalahan"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Kesalahan"
@@ -9245,12 +9337,12 @@ msgstr "Catatan eror"
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ."
@@ -9288,15 +9380,15 @@ msgstr "Kesalahan dalam Notifikasi"
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9312,15 +9404,15 @@ msgstr "Kesalahan saat mengevaluasi Pemberitahuan {0}. Silakan perbaiki template
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "Kesalahan: Nilai yang hilang untuk {0}: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9330,6 +9422,12 @@ msgstr ""
msgid "Errors"
msgstr ""
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9348,6 +9446,11 @@ msgstr ""
msgid "Event Frequency"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9373,11 +9476,11 @@ msgstr "Acara Disinkronkan dengan Kalender Google."
msgid "Event Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr ""
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "Acara Dalam Kalender Hari ini"
@@ -9399,6 +9502,7 @@ msgid "Exact Copies"
msgstr ""
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr ""
@@ -9469,7 +9573,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "Waktu Eksekusi: {0} dtk"
@@ -9490,21 +9594,21 @@ msgstr ""
msgid "Expand"
msgstr "Memperluas"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Memperluas"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Melebarkan semua"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr ""
@@ -9556,20 +9660,21 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Ekspor"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Ekspor"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "Ekspor 1 catatan"
@@ -9608,11 +9713,11 @@ msgstr "Laporan Ekspor: {0}"
msgid "Export Type"
msgstr "Jenis ekspor"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr ""
@@ -9628,6 +9733,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr "Ekspor tidak diperbolehkan. Anda perlu {0} peran untuk ekspor."
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9640,7 +9749,7 @@ msgstr ""
msgid "Export without main header"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "Ekspor {0} catatan"
@@ -9680,7 +9789,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr ""
@@ -9729,12 +9838,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "Transaksi Gagal"
@@ -9797,7 +9911,7 @@ msgstr ""
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9809,7 +9923,7 @@ msgstr ""
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr ""
@@ -9825,7 +9939,7 @@ msgstr ""
msgid "Failed to request login to Frappe Cloud"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr ""
@@ -9867,7 +9981,7 @@ msgstr ""
msgid "Fax"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr ""
@@ -9927,8 +10041,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9938,7 +10052,7 @@ msgstr "Bidang"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "Bidang "rute" adalah wajib untuk Tampilan Web"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -9946,7 +10060,7 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "Kolom \"nilai\" adalah wajib. Silakan tentukan nilai untuk diperbarui"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -9955,7 +10069,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10003,7 +10117,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr "Jenis lapangan tidak dapat diubah untuk {0}"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10011,11 +10125,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Bidang {0} tidak ditemukan"
@@ -10037,7 +10151,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10046,7 +10160,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10054,7 +10168,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Fieldname dibatasi 64 karakter ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Fieldname tidak ditetapkan untuk Bidang Kustom"
@@ -10070,7 +10184,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Fieldname {0} bertentangan dengan objek meta"
@@ -10118,7 +10232,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10142,7 +10256,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10218,12 +10332,12 @@ msgstr "Nama file tidak boleh memuat {0}"
msgid "File not attached"
msgstr "Berkas tidak terpasang"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: 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"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "File terlalu besar"
@@ -10250,12 +10364,17 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10274,7 +10393,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Nama filter"
@@ -10283,11 +10402,11 @@ msgstr "Nama filter"
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10306,10 +10425,14 @@ msgid "Filtered Records"
msgstr "Catatan yang Difilter"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Disaring oleh "{0}""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10333,7 +10456,7 @@ msgstr "Disaring oleh "{0}""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10364,10 +10487,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Filter diterapkan untuk {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "filter tersimpan"
@@ -10385,14 +10504,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Cari {0} pada {1}"
@@ -10480,11 +10599,11 @@ msgstr ""
msgid "Fold"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Lipat tidak bisa di akhir formulir"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Lipat harus datang sebelum Bagian istirahat"
@@ -10513,12 +10632,12 @@ msgstr "Folder {0} tidak kosong"
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Mengikuti"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10526,7 +10645,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10534,7 +10653,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr "bidang berikut yang hilang:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10542,7 +10661,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "bidang berikut memiliki nilai yang hilang:"
@@ -10611,7 +10730,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10648,7 +10767,7 @@ msgstr ""
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10681,15 +10800,6 @@ msgstr "Untuk Jenis Dokumen"
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'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10713,20 +10823,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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)."
-#: 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
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Sebagai contoh: Jika Anda ingin memasukkan ID dokumen, gunakan {0}"
@@ -10754,7 +10860,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr "Untuk memperbarui, Anda hanya dapat memperbarui kolom tertentu."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Untuk {0} pada tingkat {1} dalam {2} berturut-turut {3}"
@@ -10804,7 +10910,8 @@ msgstr "Lupa kata sandi?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -10983,7 +11090,7 @@ msgstr ""
msgid "From"
msgstr "Dari"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "Dari"
@@ -11004,7 +11111,7 @@ msgstr "Dari Tanggal"
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Dari Jenis Dokumen"
@@ -11045,7 +11152,7 @@ msgstr ""
msgid "Full Name"
msgstr "Nama Lengkap"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11058,7 +11165,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Fungsi"
@@ -11067,11 +11174,11 @@ msgstr "Fungsi"
msgid "Function Based On"
msgstr "Fungsi Berdasarkan"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11136,11 +11243,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Hasilkan Laporan Baru"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11150,8 +11257,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11262,7 +11369,7 @@ msgstr "Pintasan Global"
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Pergi"
@@ -11322,7 +11429,7 @@ msgstr "Buka Daftar {0}"
msgid "Go to {0} Page"
msgstr "Buka Halaman {0}"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Sasaran"
@@ -11548,7 +11655,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr "Kolom Group By diperlukan untuk membuat bagan dasbor"
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11628,6 +11735,10 @@ msgstr ""
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11716,7 +11827,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "Set HTML header dari lampiran {0}"
@@ -11752,7 +11863,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11789,7 +11900,7 @@ msgstr ""
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11844,7 +11955,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11880,8 +11991,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12047,7 +12158,7 @@ msgstr "Petunjuk: Sertakan simbol, angka dan huruf kapital di dalam kata sandi"
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12130,18 +12241,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12192,7 +12303,6 @@ msgid "IP Address"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12213,11 +12323,16 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Ikon"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12228,6 +12343,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12259,13 +12378,13 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Jika Owner"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr ""
@@ -12392,12 +12511,20 @@ msgstr ""
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
@@ -12497,7 +12624,7 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "Status Dokumen Ilegal untuk {0}"
@@ -12563,11 +12690,11 @@ msgstr ""
msgid "Image Width"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "bidang gambar harus fieldname valid"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "bidang gambar harus dari jenis Lampirkan gambar"
@@ -12601,7 +12728,7 @@ msgstr ""
msgid "Impersonated by {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12619,11 +12746,12 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "Impor"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Impor"
@@ -12846,15 +12974,15 @@ msgid "Include Web View Link in Email"
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "Termasuk lekukan"
@@ -12921,11 +13049,11 @@ msgstr "Pengguna atau Kata Sandi salah"
msgid "Incorrect Verification code"
msgstr "Kode Verifikasi salah"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr ""
@@ -12977,7 +13105,7 @@ msgstr ""
msgid "Indicator Color"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr ""
@@ -13024,15 +13152,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "Masukkan Setelah"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "Masukkan Setelah tidak dapat ditetapkan sebagai {0}"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
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"
@@ -13062,8 +13190,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr ""
@@ -13089,15 +13217,15 @@ msgstr ""
msgid "Instructions"
msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "Izin tidak cukup untuk {0}"
@@ -13165,7 +13293,7 @@ msgstr ""
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "Kesalahan server dari dalam"
@@ -13174,6 +13302,11 @@ msgstr "Kesalahan server dari dalam"
msgid "Internal record of document shares"
msgstr ""
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13213,13 +13346,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "Ekspresi "depend_on" tidak valid"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ekspresi "depend_on" tidak valid yang disetel dalam filter {0}"
@@ -13259,7 +13392,7 @@ msgstr "Tanggal tidak berlaku"
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13267,7 +13400,8 @@ msgstr ""
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr ""
@@ -13275,8 +13409,8 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13300,7 +13434,7 @@ msgstr "Tautan tidak valid"
msgid "Invalid Login Token"
msgstr "Valid Login Token"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr ""
@@ -13308,7 +13442,7 @@ msgstr ""
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Mail Server tidak valid. Harap memperbaiki dan coba lagi."
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr ""
@@ -13319,8 +13453,8 @@ msgstr ""
msgid "Invalid Operation"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "Opsi Tidak Valid"
@@ -13332,7 +13466,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr "Output Format valid"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr ""
@@ -13345,11 +13479,11 @@ msgstr ""
msgid "Invalid Password"
msgstr "kata sandi salah"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Permintaan tidak valid"
@@ -13358,7 +13492,7 @@ msgstr "Permintaan tidak valid"
msgid "Invalid Search Field {0}"
msgstr "Bidang Penelusuran Tidak Valid {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr ""
@@ -13377,7 +13511,7 @@ msgstr "URL tidak valid"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Valid Nama Pengguna atau Dukungan Password. Harap memperbaiki dan coba lagi."
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr ""
@@ -13389,7 +13523,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13397,19 +13531,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13417,18 +13551,22 @@ msgstr ""
msgid "Invalid column"
msgstr "Kolom tidak valid"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr ""
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "Persamaan tidak valid disetel dalam filter {0}"
@@ -13437,11 +13575,11 @@ msgstr "Persamaan tidak valid disetel dalam filter {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Persamaan tidak valid ditetapkan dalam filter {0} ({1})"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13449,11 +13587,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr "Nama bidang tidak valid {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "fieldname tidak valid '{0}' di autoname"
@@ -13461,11 +13599,11 @@ msgstr "fieldname tidak valid '{0}' di autoname"
msgid "Invalid file path: {0}"
msgstr "Path file tidak valid: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13473,7 +13611,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "Filter tidak valid: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13490,19 +13628,19 @@ msgstr "Json yang tidak valid ditambahkan dalam opsi ubahsuaian: {0}"
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13526,11 +13664,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13547,24 +13685,24 @@ msgstr ""
msgid "Invalid username or password"
msgstr "username dan password salah"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "Kondisi {0} tidak valid"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13692,7 +13830,7 @@ msgstr ""
msgid "Is Folder"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Apakah global"
@@ -13763,7 +13901,7 @@ msgstr ""
msgid "Is Published Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "Apakah Diterbitkan lapangan harus fieldname valid"
@@ -14008,8 +14146,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "Lompat ke bidang"
@@ -14332,7 +14470,7 @@ msgstr ""
msgid "Label and Type"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "Label adalah wajib"
@@ -14355,7 +14493,7 @@ msgstr "Pemandangan"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Bahasa"
@@ -14401,6 +14539,14 @@ msgstr ""
msgid "Last Active"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14525,6 +14671,11 @@ msgstr ""
msgid "Last synced {0}"
msgstr "Terakhir disinkronkan {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "Layout"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
@@ -14552,9 +14703,15 @@ msgstr "Tinggalkan percakapan ini"
msgid "Ledger"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14648,7 +14805,7 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14677,7 +14834,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14699,7 +14856,7 @@ msgstr ""
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
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."
@@ -14740,7 +14897,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Suka"
@@ -14764,7 +14921,7 @@ msgstr ""
msgid "Limit"
msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr ""
@@ -14890,7 +15047,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -14908,7 +15065,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
@@ -14951,6 +15108,7 @@ msgstr ""
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14972,8 +15130,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr ""
@@ -15003,7 +15161,7 @@ msgstr "Daftar filter"
msgid "List Settings"
msgstr "Pengaturan Daftar"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Pengaturan Daftar"
@@ -15017,7 +15175,7 @@ msgstr ""
msgid "List View Settings"
msgstr "Pengaturan Tampilan Daftar"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "Daftar jenis dokumen"
@@ -15044,7 +15202,7 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
@@ -15053,7 +15211,7 @@ msgstr ""
msgid "Load Balancing"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15071,10 +15229,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "Memuat"
@@ -15091,8 +15249,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15102,7 +15260,8 @@ msgid "Loading..."
msgstr "Memuat..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
@@ -15175,6 +15334,11 @@ msgstr "Keluar"
msgid "Login"
msgstr "Masuk"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15250,7 +15414,7 @@ msgstr ""
msgid "Login to {0}"
msgstr ""
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr ""
@@ -15317,8 +15481,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Log"
@@ -15349,7 +15512,7 @@ msgstr "Sepertinya Anda tidak mengubah nilainya"
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr ""
@@ -15499,7 +15662,7 @@ msgstr "bidang wajib yang dibutuhkan dalam tabel {0}, Row {1}"
msgid "Mandatory fields required in {0}"
msgstr "Bidang wajib yang dibutuhkan dalam {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
@@ -15561,7 +15724,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15613,9 +15776,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15677,7 +15843,7 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "Max lebar untuk jenis mata uang adalah 100px berturut-turut {0}"
@@ -15698,20 +15864,27 @@ msgstr ""
msgid "Maximum {0} rows allowed"
msgstr "Maksimum {0} baris diperbolehkan"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Saya"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15755,12 +15928,12 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Merger dengan yang ada"
@@ -15794,13 +15967,13 @@ msgstr "Penggabungan ini hanya mungkin antara kelompok-to-Grup atau Leaf Node-to
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Pesan"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Pesan"
@@ -15831,7 +16004,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Pesan terpotong"
@@ -15928,7 +16101,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -16017,7 +16190,7 @@ msgstr ""
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16037,7 +16210,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16102,7 +16275,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16149,9 +16322,8 @@ msgstr "Modul Onboarding"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16168,7 +16340,7 @@ msgstr ""
msgid "Module to Export"
msgstr "Modul untuk Ekspor"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16283,7 +16455,7 @@ msgstr "artikel lebih lanjut tentang {0}"
msgid "More content for the bottom of the page."
msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "sebagian Digunakan"
@@ -16298,7 +16470,7 @@ msgstr ""
msgid "Move"
msgstr "Bergerak"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Pindah ke"
@@ -16310,19 +16482,19 @@ msgstr "Pindah Untuk Sampah"
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16334,7 +16506,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Pindah ke Nomor Baris"
@@ -16452,7 +16624,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "Nama tidak boleh berisi karakter khusus seperti {0}"
@@ -16464,7 +16636,7 @@ msgstr "Nama Tipe Dokumen (DocType) Anda ingin bidang ini dapat dihubungkan deng
msgid "Name of the new Print Format"
msgstr "Nama Print Format baru"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "Nama {0} tidak dapat {1}"
@@ -16503,7 +16675,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Penamaan Seri wajib"
@@ -16527,11 +16699,6 @@ msgstr "Item Navbar"
msgid "Navbar Settings"
msgstr "Pengaturan Navbar"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16545,39 +16712,44 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Navigasikan daftar ke bawah"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navigasikan daftar ke atas"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Nilai Negatif"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16599,6 +16771,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16615,7 +16788,7 @@ msgstr "Aktivitas Baru"
#: 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16631,8 +16804,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr ""
@@ -16681,7 +16854,7 @@ msgstr "Pesan dari Kontak Situs Web Halaman"
#. 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:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Nama baru"
@@ -16702,8 +16875,8 @@ msgstr ""
msgid "New Password"
msgstr "Kata sandi Baru"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Nama Format Cetak Baru"
@@ -16730,8 +16903,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16739,7 +16912,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16782,32 +16955,32 @@ msgstr ""
msgid "New value to be set"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Baru {0} Dibuat"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Baru {0} {1} ditambahkan ke Dasbor {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "{0} {1} baru dibuat"
@@ -16819,7 +16992,7 @@ msgstr "Baru {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Rilis {} baru untuk aplikasi berikut tersedia"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16840,7 +17013,7 @@ msgstr "Surat edaran Manajer"
msgid "Next"
msgstr "Lanjut"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "Lanjut"
@@ -16867,12 +17040,16 @@ msgstr ""
msgid "Next Action Email Template"
msgstr ""
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -16939,20 +17116,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -17022,7 +17203,7 @@ msgstr "Tidak Ada Filter Ditetapkan"
msgid "No Google Calendar Event to sync."
msgstr "Tidak ada Acara Kalender Google untuk disinkronkan."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17041,23 +17222,23 @@ msgstr "Tidak ada Pengguna LDAP yang ditemukan untuk email: {0}"
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "Tidak Ada Nama Yang Ditentukan untuk {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "Tidak ada izin yang ditentukan"
@@ -17077,11 +17258,11 @@ msgstr "Tidak Ada Diagram yang Diizinkan di Dasbor ini"
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "Tidak Ada Printer."
@@ -17089,7 +17270,7 @@ msgstr "Tidak Ada Printer."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17097,7 +17278,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17113,7 +17294,7 @@ msgstr ""
msgid "No Tags"
msgstr "Tidak ada Tags"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17133,7 +17314,7 @@ msgstr ""
msgid "No changes in document"
msgstr "Tidak ada perubahan dalam dokumen"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17197,7 +17378,7 @@ msgstr ""
msgid "No file attached"
msgstr "Tidak ada file terlampir"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr ""
@@ -17245,11 +17426,11 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "Tidak ada izin untuk {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Tidak ada izin untuk '{0}' {1}"
@@ -17258,7 +17439,7 @@ msgstr "Tidak ada izin untuk '{0}' {1}"
msgid "No permission to read {0}"
msgstr "Tidak ada izin untuk membaca {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "Tidak ada izin untuk {0} {1} {2}"
@@ -17274,7 +17455,7 @@ msgstr "Tidak ada catatan di {0}"
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "Tidak ada catatan yang akan diekspor"
@@ -17282,7 +17463,7 @@ msgstr "Tidak ada catatan yang akan diekspor"
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17294,11 +17475,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr "Tidak ada template yang ditemukan di jalan: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17310,7 +17492,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17319,7 +17501,7 @@ msgid "No {0} mail"
msgstr "Tidak ada {0} email"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17362,12 +17544,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "Tidak Diizinkan"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17409,7 +17591,7 @@ msgstr "Tidak terkait dengan catatan apapun"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17418,7 +17600,7 @@ msgstr ""
msgid "Not Permitted"
msgstr "Tidak Diijinkan"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17427,8 +17609,8 @@ msgstr ""
msgid "Not Published"
msgstr "Tidak Diterbitkan"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17448,7 +17630,7 @@ msgstr "Tidak Terlihat"
msgid "Not Sent"
msgstr "Tidak terkirim"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "Tidak Diatur"
@@ -17462,15 +17644,15 @@ msgstr "Tidak Diatur"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Bukan Nilai Comma Separated valid (CSV file)"
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "Bukan Gambar Pengguna yang valid."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "Bukan Aksi Alur Kerja yang valid"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17478,7 +17660,7 @@ msgstr ""
msgid "Not active"
msgstr "Tidak aktif"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "Tidak diizinkan untuk {0}: {1}"
@@ -17498,11 +17680,11 @@ msgstr "Tidak diizinkan untuk mencetak dokumen dibatalkan"
msgid "Not allowed to print draft documents"
msgstr "Tidak diizinkan untuk mencetak dokumen draft"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Tidak ditemukan"
@@ -17515,11 +17697,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Tidak dalam Mode Pengembang! Diatur dalam site_config.json atau membuat DOCTYPE 'Custom'."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Tidak diperbolehkan"
@@ -17547,7 +17729,7 @@ msgstr "Catatan Dilihat Oleh"
msgid "Note:"
msgstr "catatan:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
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."
@@ -17579,7 +17761,7 @@ msgstr ""
msgid "Notes:"
msgstr "Catatan:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr ""
@@ -17591,8 +17773,8 @@ msgstr ""
msgid "Nothing left to undo"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17603,11 +17785,13 @@ msgid "Nothing to update"
msgstr "Tidak ada yang diperbarui"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "Pemberitahuan"
@@ -17623,7 +17807,7 @@ msgstr "Penerima Pemberitahuan"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "Pengaturan pemberitahuan"
@@ -17632,11 +17816,6 @@ msgstr "Pengaturan pemberitahuan"
msgid "Notification Subscribed Document"
msgstr "Pemberitahuan Dokumen Berlangganan"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17654,13 +17833,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Pemberitahuan"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -17896,7 +18077,7 @@ msgstr "OTP Secret telah di-reset. Registrasi ulang akan diminta pada login beri
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17936,7 +18117,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17944,7 +18125,7 @@ msgstr ""
msgid "Old Password"
msgstr "Password Lama"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18011,7 +18192,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18055,7 +18236,7 @@ msgstr ""
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."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18071,11 +18252,11 @@ msgstr "Kode Pendaftaran One Time Password (OTP) dari {}"
msgid "One of"
msgstr "Satu dari"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Hanya 200 sisipan diperbolehkan dalam satu permintaan"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Hanya Administrator dapat menghapus Antrian Surel"
@@ -18096,7 +18277,7 @@ msgstr "Hanya Administrator yang diizinkan menggunakan Perekam"
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Hanya Opsi yang diperbolehkan untuk bidang Data adalah:"
@@ -18119,11 +18300,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18166,7 +18347,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18189,8 +18370,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Buka"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18226,6 +18407,10 @@ msgstr ""
msgid "Open Settings"
msgstr "Buka Pengaturan"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18240,7 +18425,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Buka modul atau alat"
@@ -18252,11 +18437,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Buka item daftar"
@@ -18271,16 +18456,16 @@ msgstr "Buka aplikasi autentikasi Anda di ponsel Anda."
#: 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:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Terbuka {0}"
@@ -18312,7 +18497,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr "Operator harus menjadi salah satu dari {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18338,7 +18523,7 @@ msgstr "Opsi 2"
msgid "Option 3"
msgstr "Opsi 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "Opsi {0} untuk bidang {1} bukan tabel anak"
@@ -18372,7 +18557,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
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'"
@@ -18381,7 +18566,7 @@ msgstr "Jenis Options 'Dynamic Link' lapangan harus mengarah ke Link Field lain
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18389,7 +18574,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr "Pilihan untuk pilih. Setiap opsi pada baris baru."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Opsi untuk {0} harus disetel sebelum menyetel nilai bawaan."
@@ -18397,7 +18582,7 @@ msgstr "Opsi untuk {0} harus disetel sebelum menyetel nilai bawaan."
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Pilihan tidak diatur untuk bidang tautan {0}"
@@ -18413,7 +18598,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18433,8 +18618,12 @@ msgstr ""
msgid "Orientation"
msgstr "Orientasi"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18509,18 +18698,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18544,7 +18735,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "Generasi PDF gagal"
@@ -18552,11 +18743,11 @@ msgstr "Generasi PDF gagal"
msgid "PDF generation failed because of broken image links"
msgstr "Generasi PDF gagal karena link gambar rusak"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18715,7 +18906,7 @@ msgstr ""
msgid "Page has expired!"
msgstr "Halaman telah kedaluwarsa!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18731,7 +18922,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Halaman {0} dari {1}"
@@ -18742,7 +18933,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Induk"
@@ -18775,11 +18966,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Bidang Induk (Pohon)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Bidang Induk harus nama bidang yang valid"
@@ -18793,7 +18984,7 @@ msgstr ""
msgid "Parent Label"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18818,11 +19009,11 @@ msgstr "Induk adalah nama dokumen yang akan ditambahkan datanya."
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18841,7 +19032,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Para peserta"
@@ -18878,11 +19069,11 @@ msgstr ""
msgid "Password"
msgstr "Kata sandi"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -18891,7 +19082,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18920,11 +19111,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18936,7 +19127,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18998,7 +19189,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19083,15 +19274,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "Permanen Batal {0}?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "Kirim permanen {0}?"
@@ -19099,7 +19290,11 @@ msgstr "Kirim permanen {0}?"
msgid "Permanently delete {0}?"
msgstr "Secara permanen menghapus {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Kesalahan izin"
@@ -19109,12 +19304,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Izin Tingkat"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19123,11 +19318,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19158,7 +19348,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19169,13 +19358,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Otorisasi"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19187,11 +19375,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19261,13 +19449,13 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Pilih Kolom"
@@ -19325,7 +19513,7 @@ msgstr "Silakan Gandakan situs ini Tema untuk menyesuaikan."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Silakan Instal perpustakaan ldap3 melalui pip untuk menggunakan fungsionalitas ldap."
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Silakan Tetapkan Bagan"
@@ -19341,7 +19529,7 @@ msgstr "Silakan tambahkan subjek ke email Anda"
msgid "Please add a valid comment."
msgstr "Harap tambahkan komentar yang valid."
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Minta administrator untuk memverifikasi Anda sign-up"
@@ -19349,11 +19537,11 @@ msgstr "Minta administrator untuk memverifikasi Anda sign-up"
msgid "Please attach a file first."
msgstr "Harap melampirkan file pertama."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19365,11 +19553,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Silakan periksa nilai filter yang disetel untuk Dasbor: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Harap periksa nilai set "Ambil Dari" untuk bidang {0}"
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Silahkan cek email Anda untuk verifikasi"
@@ -19401,7 +19589,7 @@ msgstr "Silahkan klik pada link berikut untuk mengatur password baru anda"
msgid "Please confirm your action to {0} this document."
msgstr "Harap konfirmasikan tindakan Anda ke {0} dokumen ini."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19431,10 +19619,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Aktifkan pop-up"
@@ -19447,7 +19635,7 @@ msgstr "Harap aktifkan munculan di peramban Anda"
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Pastikan bahwa profil Anda memiliki alamat email"
@@ -19521,15 +19709,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Harap pastikan Dokumen Komunikasi Referensi tidak terhubung secara sirkuler."
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Silahkan refresh untuk mendapatkan dokumen terbaru."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Silakan simpan sebelum memasang."
@@ -19545,7 +19733,7 @@ msgstr "Silakan menyimpan dokumen sebelum mengeluarkan penugasan"
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Harap menyimpan laporan pertama"
@@ -19565,7 +19753,7 @@ msgstr "Silakan pilih Tipe Entitas terlebih dahulu"
msgid "Please select Minimum Password Score"
msgstr "Harap pilih Skor Minimum Kata Sandi"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19573,7 +19761,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19623,11 +19811,11 @@ msgstr "Silahkan pilih {0}"
msgid "Please set Email Address"
msgstr "Silahkan tetapkan Alamat Email"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Silakan atur pemetaan printer untuk format cetak ini di Pengaturan Printer"
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Silakan set filter"
@@ -19635,7 +19823,7 @@ msgstr "Silakan set filter"
msgid "Please set filters value in Report Filter table."
msgstr "Silakan menetapkan nilai filter dalam Laporan Filter meja."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19655,7 +19843,7 @@ msgstr "Tolong atur SMS sebelum menyetelnya sebagai metode otentikasi, melalui P
msgid "Please setup a message first"
msgstr "Harap siapkan pesan terlebih dahulu"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19667,7 +19855,7 @@ msgstr ""
msgid "Please specify"
msgstr "Silakan tentukan"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19695,7 +19883,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr "Silakan tentukan mana bidang nilai harus diperiksa"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Silakan coba lagi"
@@ -19816,11 +20004,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Presisi harus antara 1 dan 6"
@@ -19872,11 +20060,11 @@ msgstr "Pengguna Laporan yang Disiapkan"
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Mempersiapkan Laporan"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19884,7 +20072,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Tekan Enter untuk menyimpan"
@@ -19902,7 +20090,7 @@ msgstr "Tekan Enter untuk menyimpan"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Pratayang"
@@ -19946,16 +20134,16 @@ msgstr ""
msgid "Previous"
msgstr "Kembali"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Kembali"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20008,19 +20196,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Mencetak"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Mencetak"
@@ -20038,8 +20226,9 @@ msgstr "Cetak Dokumen"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20083,7 +20272,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20116,11 +20305,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Cetak Terkirim ke printer!"
@@ -20133,8 +20322,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Pengaturan Cetak"
@@ -20173,7 +20362,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20182,11 +20371,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Pemetaan Printer"
@@ -20196,15 +20385,15 @@ msgstr "Pemetaan Printer"
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Pengaturan Printer"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Pencetakan gagal"
@@ -20253,7 +20442,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Tetap melanjutkan"
@@ -20293,9 +20482,9 @@ msgid "Project"
msgstr "Proyek"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20365,7 +20554,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Publik"
@@ -20515,7 +20704,7 @@ msgstr "Kode QR"
msgid "QR Code for Login Verification"
msgstr "Kode QR untuk Verifikasi Login"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20577,7 +20766,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20598,7 +20787,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Antrian adalah salah satu dari {0}"
@@ -20639,7 +20828,7 @@ msgstr "Diantrikan untuk pencadangan. Anda akan menerima email dengan tautan und
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20731,6 +20920,15 @@ msgstr "Perintah Mentah"
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20739,7 +20937,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20757,7 +20955,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20768,11 +20966,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20809,7 +21008,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20849,7 +21048,7 @@ msgstr ""
msgid "Reason"
msgstr "Alasan"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Membangun kembali"
@@ -20891,7 +21090,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr "tahun terakhir mudah ditebak."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20942,7 +21141,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21008,12 +21207,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Cache server Redis tidak berjalan. Silahkan hubungi Administrator / dukungan Tech"
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21229,12 +21428,12 @@ msgstr "Referensi: {0} {1}"
msgid "Referrer"
msgstr "Perujuk"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21251,7 +21450,7 @@ msgstr "Segarkan Semua"
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21266,7 +21465,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21277,7 +21476,7 @@ msgstr ""
msgid "Refreshing..."
msgstr "Refreshing ..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Terdaftar tapi dinonaktifkan"
@@ -21323,10 +21522,8 @@ msgstr "Komunikasi relink"
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Mengisi kembali"
@@ -21338,7 +21535,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21357,7 +21554,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21437,9 +21634,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21467,7 +21664,7 @@ msgstr ""
msgid "Reopen"
msgstr "Membuka lagi"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "ulangi"
@@ -21514,7 +21711,7 @@ msgstr "Mengulangi seperti "aaa" mudah ditebak"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Mengulangi seperti "abcabcabc" hanya sedikit lebih sulit untuk menebak dari "abc""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Ulangi {0}"
@@ -21577,6 +21774,7 @@ msgstr "Membalas semua"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21591,10 +21789,9 @@ msgstr "Membalas semua"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Laporan"
@@ -21663,7 +21860,7 @@ msgstr "Manajer Laporan"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Nama Laporan"
@@ -21697,14 +21894,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Laporan tidak dapat ditetapkan untuk jenis Tunggal"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21715,7 +21908,7 @@ msgstr "Laporan tidak memiliki data, harap modifikasi filter atau ubah Nama Lapo
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Laporan tidak memiliki bidang numerik, harap ubah Nama Laporan"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21727,7 +21920,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Laporan berhasil diperbarui"
@@ -21735,12 +21928,12 @@ msgstr "Laporan berhasil diperbarui"
msgid "Report was not saved (there were errors)"
msgstr "Laporan tidak disimpan (ada kesalahan)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
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."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Laporan {0}"
@@ -21763,7 +21956,7 @@ msgstr "Melaporkan:"
#. 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Laporan"
@@ -21771,7 +21964,7 @@ msgstr "Laporan"
msgid "Reports & Masters"
msgstr "Laporan & Master"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Laporan sudah dalam Antrian"
@@ -21830,13 +22023,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "Batas waktu permintaan habis"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -21952,7 +22145,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22010,7 +22203,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22019,7 +22212,7 @@ msgstr ""
msgid "Restore"
msgstr "Mengembalikan"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Kembalikan Izin Asli"
@@ -22041,6 +22234,11 @@ msgstr "Mengembalikan Dokumen yang Dihapus"
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22068,8 +22266,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Batasan"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22116,9 +22314,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22153,8 +22357,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22169,8 +22371,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22214,7 +22415,7 @@ msgstr "Izin peran"
msgid "Role Permissions Manager"
msgstr "Pengelola Perizinan Peran"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Pengelola Perizinan Peran"
@@ -22222,11 +22423,9 @@ msgstr "Pengelola Perizinan Peran"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Profil Peran"
@@ -22248,7 +22447,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22367,20 +22566,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Baris"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Row # {0}:"
@@ -22407,7 +22606,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22426,14 +22625,14 @@ msgstr "Baris {0}: Tidak diizinkan untuk mengaktifkan Memungkinkan Submit untuk
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22456,7 +22655,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22536,7 +22735,7 @@ msgstr "Pengaturan SMS"
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22570,7 +22769,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22642,22 +22841,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22670,7 +22870,7 @@ msgid "Save Anyway"
msgstr "Simpan Saja"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Disimpan Sebagai"
@@ -22678,7 +22878,7 @@ msgstr "Disimpan Sebagai"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Menyimpan laporan"
@@ -22696,20 +22896,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Disimpan"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Menyimpan"
@@ -22718,11 +22918,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Menyimpan"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22926,7 +23126,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22946,7 +23146,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "mencari bantuan"
@@ -22964,7 +23164,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "kolom pencarian {0} tidak valid"
@@ -22981,12 +23181,12 @@ msgstr ""
msgid "Search for anything"
msgstr "Cari untuk apapun"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Cari dalam jenis dokumen"
@@ -23058,15 +23258,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Lihat semua laporan sebelumnya."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Lihat di Website"
@@ -23116,24 +23316,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Pilih"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23149,7 +23351,7 @@ msgid "Select Column"
msgstr "Pilih Kolom"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Pilih Kolom"
@@ -23193,13 +23395,13 @@ msgstr "Pilih Jenis Dokumen"
msgid "Select Document Type or Role to start."
msgstr "Pilih Document Type atau Peran untuk memulai."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Pilih Bidang"
@@ -23208,7 +23410,7 @@ msgstr "Pilih Bidang"
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Pilih Fields"
@@ -23217,19 +23419,19 @@ msgstr "Pilih Fields"
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Pilih Bidang Untuk Disisipkan"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Pilih Fields To Update"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Pilih Filter"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Pilih Google Kalender tempat acara harus disinkronkan."
@@ -23254,16 +23456,16 @@ msgstr "Pilih bahasa"
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "pilih wajib"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Pilih Modul"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23273,7 +23475,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Pilih Print Format"
@@ -23309,12 +23511,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Pilih Brand Image pertama."
@@ -23331,11 +23527,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Pilih Bidang Pengirim yang valid untuk membuat dokumen dari Email"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Pilih bidang Subjek yang valid untuk membuat dokumen dari Email"
@@ -23361,13 +23557,13 @@ msgstr "Pilih minimal 1 record untuk pencetakan"
msgid "Select atleast 2 actions"
msgstr "Pilih minimal 2 tindakan"
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Pilih item daftar"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Pilih beberapa item daftar"
@@ -23401,7 +23597,7 @@ msgstr ""
msgid "Select {0}"
msgstr "Pilih {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Persetujuan diri tidak diizinkan"
@@ -23431,6 +23627,11 @@ msgstr ""
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23483,7 +23684,7 @@ msgstr "Kirim sekarang"
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Kirim Baca Receipt"
@@ -23546,7 +23747,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Kirim Me Salin A"
@@ -23585,7 +23786,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Sender Field harus memiliki opsi Email in"
@@ -23679,7 +23880,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: 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}"
@@ -23689,7 +23890,7 @@ msgstr "Seri {0} sudah digunakan dalam {1}"
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "server error"
@@ -23716,11 +23917,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23748,16 +23953,14 @@ msgstr "Default Sesi"
msgid "Session Default Settings"
msgstr "Pengaturan Default Sesi"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Default Sesi"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Default Sesi Disimpan"
@@ -23798,7 +24001,7 @@ msgstr "Tetapkan"
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Setel Bagan"
@@ -23824,7 +24027,7 @@ msgstr "Tetapkan Filter"
msgid "Set Filters for {0}"
msgstr "Setel Filter untuk {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23867,8 +24070,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Set Kuantitas"
@@ -23888,12 +24091,12 @@ msgstr ""
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -23997,8 +24200,8 @@ msgstr "Menyiapkan sistem anda"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24021,11 +24224,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Pengaturan"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24033,12 +24236,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Atur Email Otomatis"
@@ -24067,13 +24270,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Dengan berbagi"
@@ -24081,7 +24285,7 @@ msgstr "Dengan berbagi"
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Berbagi {0} dengan"
@@ -24141,16 +24345,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24196,7 +24394,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24248,7 +24446,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24368,7 +24566,7 @@ msgstr "Tunjukkan Akhir Pekan"
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Tampilkan semua Versi"
@@ -24510,7 +24708,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Sign Up dinonaktifkan"
@@ -24633,7 +24831,7 @@ msgstr "Melewati Kolom Tanpa Judul"
msgid "Skipping column {0}"
msgstr "Melewati kolom {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24808,15 +25006,15 @@ msgstr "Ada yang salah"
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."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Mohon Maaf! Saya tidak bisa menemukan apa yang Anda cari."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Mohon Maaf! Anda tidak diizinkan untuk melihat halaman ini."
@@ -24847,13 +25045,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "bidang semacam {0} harus fieldname valid"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24902,7 +25100,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr "Karakter spesial tidak diperbolehkan"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Karakter Khusus kecuali "-", "#", ".", "/", "{{" Dan "}}" tidak diizinkan dalam rangkaian penamaan {0}"
@@ -24941,6 +25139,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24948,6 +25147,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25015,8 +25215,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Mulai"
@@ -25188,7 +25388,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25226,7 +25426,7 @@ msgstr "Langkah untuk memverifikasi login anda"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25340,7 +25540,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Perihal"
@@ -25354,7 +25554,7 @@ msgstr "Perihal"
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
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"
@@ -25375,14 +25575,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Kirim"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Kirim"
@@ -25412,7 +25612,7 @@ msgstr "Kirim"
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25436,11 +25636,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr "Kirimkan dokumen ini untuk menyelesaikan langkah ini."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Menyerahkan dokumen ini untuk mengkonfirmasi"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Kirim {0} dokumen?"
@@ -25466,7 +25666,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Mengirimkan"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Mengajukan {0}"
@@ -25501,12 +25701,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25548,7 +25748,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Transaksi yang berhasil"
@@ -25573,7 +25773,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25598,7 +25798,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Disarankan Username: {0}"
@@ -25639,7 +25839,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr "menangguhkan Mengirim"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25652,7 +25852,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr "Switch Untuk Meja"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25721,9 +25921,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25733,7 +25931,7 @@ msgstr ""
msgid "System Console"
msgstr "Konsol Sistem"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25860,6 +26058,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25874,7 +26073,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25950,6 +26148,11 @@ msgstr ""
msgid "System Settings"
msgstr "Pengaturan Sistem"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25966,6 +26169,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26001,7 +26210,7 @@ msgstr "Tabel"
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26010,7 +26219,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26028,7 +26237,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26036,11 +26245,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Tabel diperbarui"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Tabel {0} tidak boleh kosong"
@@ -26060,17 +26269,17 @@ msgid "Tag Link"
msgstr "Tautan Tag"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Tag"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Memotret"
@@ -26154,7 +26363,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Dinonaktifkan Sementara"
@@ -26250,7 +26459,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr "Ulangi Otomatis untuk dokumen ini telah dinonaktifkan."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "Format CSV bersifat case sensitive"
@@ -26302,7 +26511,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Sumber daya yang Anda cari tidak tersedia"
@@ -26450,7 +26667,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26462,6 +26679,42 @@ msgstr ""
msgid "The total number of user document types limit has been crossed."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 ""
@@ -26503,7 +26756,7 @@ msgstr ""
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr ""
@@ -26511,7 +26764,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26520,7 +26773,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "Hanya ada satu Fold dalam bentuk"
@@ -26532,11 +26785,11 @@ msgstr "Ada kesalahan dalam Template Alamat Anda {0}"
msgid "There is no data to be exported"
msgstr "Tidak ada data yang diekspor"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr ""
@@ -26544,7 +26797,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr "Ada beberapa masalah dengan url berkas: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26560,7 +26813,7 @@ msgstr "Terjadi kesalahan saat membangun halaman ini"
msgid "There was an error saving filters"
msgstr "Terjadi kesalahan saat menyimpan filter"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Ada kesalahan"
@@ -26568,11 +26821,11 @@ msgstr "Ada kesalahan"
msgid "There were errors while creating the document. Please try again."
msgstr "Ada kesalahan saat membuat dokumen. Silakan coba lagi."
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "Ada kesalahan saat mengirim email. Silakan coba lagi."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Ada beberapa kesalahan pengaturan nama, silahkan hubungi administrator"
@@ -26641,11 +26894,11 @@ msgstr "Tahun Ini"
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Tindakan ini hanya diperbolehkan untuk {}"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ini tidak dapat dibatalkan"
@@ -26669,7 +26922,7 @@ msgstr ""
msgid "This doctype has no orphan fields to trim"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26685,15 +26938,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr "Dokumen ini telah dimodifikasi setelah email dikirim."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr "Dokumen ini sudah diubah, Anda tidak dapat mengubahnya lagi"
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26706,7 +26959,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26731,11 +26984,11 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Formulir ini telah dimodifikasi setelah Anda dimuat"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
@@ -26754,7 +27007,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
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."
@@ -26796,15 +27049,15 @@ msgstr "Tautan ini telah diaktifkan untuk verifikasi."
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."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Ini dapat dicetak pada beberapa halaman"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Bulan ini"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26812,7 +27065,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "Laporan ini dibuat pada {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Laporan ini dihasilkan {0}."
@@ -26836,7 +27089,7 @@ msgstr ""
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"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -26880,7 +27133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr "Ini akan menghentikan pekerjaan segera dan mungkin berbahaya, apakah Anda yakin?"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Terhempas"
@@ -26911,6 +27164,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26918,6 +27172,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Waktu"
@@ -27000,11 +27255,6 @@ msgstr "Waktu {0} harus dalam format: {1}"
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
@@ -27036,11 +27286,11 @@ msgstr ""
msgid "Timeline Name"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "bidang Timeline harus Link atau Dynamic Link"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "bidang Timeline harus fieldname valid"
@@ -27111,7 +27361,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27134,7 +27384,7 @@ msgstr ""
msgid "Title Prefix"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Judul lapangan harus fieldname valid"
@@ -27220,7 +27470,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "Untuk mendapatkan laporan yang diperbarui, klik pada {0}."
@@ -27273,31 +27523,14 @@ msgstr "To Do"
msgid "Today"
msgstr "Hari ini"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr ""
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr ""
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27333,7 +27566,7 @@ msgid "Tomorrow"
msgstr "Besok"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr ""
@@ -27341,15 +27574,19 @@ msgstr ""
msgid "Too Many Requests"
msgstr "Terlalu Banyak Permintaan"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
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"
@@ -27405,10 +27642,10 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr ""
@@ -27423,7 +27660,7 @@ msgstr ""
msgid "Total Errors (last 1 day)"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr ""
@@ -27523,7 +27760,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27559,7 +27796,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27570,7 +27807,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr ""
@@ -27606,7 +27843,7 @@ msgstr ""
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr ""
@@ -27655,8 +27892,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27702,6 +27939,7 @@ msgstr ""
#. 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 'Event Notifications'
#. 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'
@@ -27715,6 +27953,7 @@ msgstr ""
#: 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/event_notifications/event_notifications.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
@@ -27723,7 +27962,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27890,7 +28129,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -27898,7 +28137,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr "Tidak dapat menemukan DocType {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Tidak dapat memuat kamera."
@@ -27914,7 +28153,7 @@ msgstr "Tidak dapat membuka file terlampir. Apakah Anda ekspor sebagai CSV?"
msgid "Unable to read file format for {0}"
msgstr "Tidak dapat membaca format file untuk {0}"
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27935,20 +28174,20 @@ msgstr ""
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Tidak berubah"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Berhenti mengikuti"
@@ -28022,9 +28261,10 @@ msgstr ""
msgid "Unsafe SQL query"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr ""
@@ -28057,11 +28297,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "Berhenti berlangganan"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28081,7 +28321,7 @@ msgstr "Buka file {0}"
msgid "Unzipping files..."
msgstr "Membuka ritsleting file ..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Acara Mendatang untuk Hari Ini"
@@ -28089,13 +28329,13 @@ msgstr "Acara Mendatang untuk Hari Ini"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Perbaruan"
@@ -28166,7 +28406,7 @@ msgstr ""
msgid "Update from Frappe Cloud"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr ""
@@ -28174,8 +28414,7 @@ msgstr ""
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Diperbarui"
@@ -28187,11 +28426,11 @@ msgstr "Berhasil Diperbarui"
msgid "Updated To A New Version 🎉"
msgstr "Diperbarui Ke Versi Baru 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Berhasil diperbarui"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Memperbarui"
@@ -28216,11 +28455,11 @@ msgstr ""
msgid "Updating naming series options"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Memperbarui {0}"
@@ -28228,12 +28467,12 @@ msgstr "Memperbarui {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "Memperbarui {0} dari {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28281,6 +28520,7 @@ msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr ""
@@ -28352,7 +28592,7 @@ msgstr ""
msgid "Use of sub-query or function is restricted"
msgstr "Penggunaan sub-query atau fungsi dibatasi"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr ""
@@ -28386,9 +28626,8 @@ msgstr ""
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28415,11 +28654,11 @@ msgstr ""
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28555,7 +28794,7 @@ msgstr ""
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr ""
@@ -28571,19 +28810,19 @@ msgid "User Permission"
msgstr "Pengguna Izin"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Permissions Pengguna"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Permissions Pengguna"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr ""
@@ -28656,7 +28895,7 @@ msgstr ""
msgid "User can login using Email id or User Name"
msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr ""
@@ -28690,27 +28929,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Pengguna {0} tidak dapat dihapus"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Pengguna {0} tidak dapat dinonaktifkan"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Pengguna {0} tidak dapat diganti"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "Pengguna {0} tidak memiliki akses ke dokumen ini"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
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}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr ""
@@ -28719,11 +28958,11 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr "Pengguna {0} telah meminta penghapusan data"
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Pengguna {0} dinonaktifkan"
@@ -28748,18 +28987,17 @@ msgstr ""
msgid "Username"
msgstr "Nama pengguna"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
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
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28830,7 +29068,7 @@ msgstr ""
msgid "Validate SSL Certificate"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Kesalahan Validasi"
@@ -28859,7 +29097,7 @@ msgstr ""
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28886,15 +29124,19 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Nilai tidak dapat diubah untuk {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Nilai tidak boleh negatif untuk"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Nilai tidak boleh negatif untuk {0}: {1}"
@@ -28906,7 +29148,7 @@ msgstr "Nilai untuk bidang pemeriksaan dapat berupa 0 atau 1"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Nilai untuk bidang {0} terlalu panjang di {1}. Panjang harus kurang dari {2} karakter"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "Nilai untuk {0} tidak bisa daftar"
@@ -28931,7 +29173,13 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Nilai terlalu besar"
@@ -28948,7 +29196,7 @@ msgstr "Nilai {0} harus dalam format durasi yang valid: dhms"
msgid "Value {0} must in {1} format"
msgstr "Nilai {0} harus dalam format {1}"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr ""
@@ -28957,11 +29205,11 @@ msgstr ""
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr ""
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr ""
@@ -28969,7 +29217,7 @@ msgstr ""
msgid "Verification Link"
msgstr "Tautan verifikasi"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr ""
@@ -28983,7 +29231,7 @@ msgid "Verified"
msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Memeriksa"
@@ -29019,7 +29267,7 @@ msgstr ""
msgid "View All"
msgstr "Lihat semua"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr ""
@@ -29031,7 +29279,7 @@ msgstr ""
msgid "View File"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr ""
@@ -29068,7 +29316,7 @@ msgstr ""
msgid "View Settings"
msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29077,14 +29325,11 @@ msgstr ""
msgid "View Switcher"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "Lihat Situs Web"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29100,7 +29345,7 @@ msgstr "Lihat laporan di browser Anda"
msgid "View this in your browser"
msgstr "Lihat ini dalam browser Anda"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr ""
@@ -29136,7 +29381,7 @@ msgstr ""
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29184,7 +29429,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29193,7 +29438,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr ""
@@ -29277,7 +29522,7 @@ msgstr "Halaman web"
msgid "Web Page Block"
msgstr "Blok Halaman Web"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr ""
@@ -29374,7 +29619,7 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29429,7 +29674,7 @@ msgstr "Script Website"
msgid "Website Search Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr ""
@@ -29494,6 +29739,11 @@ msgstr ""
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29581,15 +29831,15 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "Email Selamat Datang telah dikirim"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Selamat Datang di {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr ""
@@ -29611,10 +29861,6 @@ msgstr ""
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29632,7 +29878,7 @@ msgstr "Tampilan DocType terkait mana yang harus dibawa oleh pintasan ini?"
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr ""
@@ -29753,6 +29999,10 @@ msgstr ""
msgid "Workflow Document State"
msgstr "Status Dokumen Alur Kerja"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -29770,11 +30020,11 @@ msgstr "Status Alur Kerja"
msgid "Workflow State Field"
msgstr ""
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Negara Alur Kerja tidak diatur"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Transisi status Workflow tidak diizinkan dari {0} ke {1}"
@@ -29782,7 +30032,7 @@ msgstr "Transisi status Workflow tidak diizinkan dari {0} ke {1}"
msgid "Workflow States Don't Exist"
msgstr ""
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Status Alur Kerja"
@@ -29817,18 +30067,15 @@ msgstr ""
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29855,7 +30102,6 @@ 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 ""
@@ -29869,27 +30115,15 @@ msgstr ""
msgid "Workspace Quick List"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr ""
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr ""
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -29899,13 +30133,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr ""
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr ""
@@ -29934,11 +30162,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Nilai Ambil Dari Salah"
@@ -29956,7 +30185,7 @@ msgstr ""
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -29971,7 +30200,7 @@ msgstr "Bidang Sumbu Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr ""
@@ -30019,10 +30248,14 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30031,10 +30264,10 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ya"
@@ -30070,7 +30303,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30078,7 +30311,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr "Anda terhubung ke internet."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30086,11 +30319,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
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}"
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30113,7 +30346,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "Anda tidak diizinkan mengekspor {} doctype"
@@ -30121,10 +30354,14 @@ msgstr "Anda tidak diizinkan mengekspor {} doctype"
msgid "You are not allowed to print this report"
msgstr "Anda tidak diizinkan untuk mencetak laporan ini"
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr "Anda tidak diizinkan mengirim email yang terkait dokumen ini"
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Anda tidak diizinkan memperbarui Dokumen Web Form ini"
@@ -30141,7 +30378,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr "Anda tidak diizinkan mengakses halaman ini."
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30149,7 +30386,7 @@ msgstr ""
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."
-#: frappe/core/doctype/installed_applications/installed_applications.py:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -30162,7 +30399,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
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."
@@ -30186,10 +30423,6 @@ msgstr "Anda juga dapat menyalin-menempel ini {0} ke peramban Anda"
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
@@ -30244,7 +30477,7 @@ msgstr ""
msgid "You can try changing the filters of your report."
msgstr "Anda dapat mencoba mengubah filter laporan Anda."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr ""
@@ -30274,6 +30507,10 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Anda tidak dapat membuat bagan dasbor dari satu DocTypes"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Anda tidak bisa unset 'Read Only' untuk bidang {0}"
@@ -30300,7 +30537,6 @@ msgid "You changed {0} to {1}"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr ""
@@ -30309,11 +30545,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
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."
@@ -30325,15 +30557,19 @@ msgstr "Anda tidak memiliki izin yang cukup untuk menyelesaikan tindakan"
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Anda tidak memiliki izin untuk membatalkan semua dokumen yang ditautkan."
@@ -30369,7 +30605,7 @@ msgstr "Anda telah berhasil keluar"
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
@@ -30389,7 +30625,7 @@ msgstr "Anda memiliki {0} yang tak terlihat"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30398,7 +30634,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr ""
@@ -30414,12 +30649,12 @@ msgstr ""
msgid "You must login to submit this form"
msgstr "Anda harus login untuk mengirimkan formulir ini"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr ""
@@ -30427,7 +30662,7 @@ msgstr ""
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr ""
@@ -30459,7 +30694,7 @@ msgstr "Anda harus mengaktifkan JavaScript agar aplikasi Anda berfungsi."
msgid "You need to have \"Share\" permission"
msgstr "Anda harus memiliki izin \"Berbagi\""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Anda harus menginstal pycup untuk menggunakan fitur ini!"
@@ -30479,7 +30714,7 @@ msgstr ""
msgid "You need write permission on {0} {1} to rename"
msgstr ""
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
@@ -30526,7 +30761,7 @@ msgstr "Anda berhenti mengikuti dokumen ini"
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30603,7 +30838,7 @@ msgstr "Alamat email anda"
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr ""
@@ -30645,7 +30880,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr "Sesi Anda telah kedaluwarsa, silahkan login kembali untuk melanjutkan"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30667,7 +30902,7 @@ msgstr ""
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30686,7 +30921,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "dan"
@@ -30709,7 +30944,7 @@ msgstr ""
msgid "cProfile Output"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "kalender"
@@ -30725,7 +30960,9 @@ msgid "canceled"
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30749,7 +30986,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30807,7 +31044,7 @@ msgstr ""
msgid "descending"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "tipe dokumen ..., misalnya pelanggan"
@@ -30817,7 +31054,7 @@ msgstr "tipe dokumen ..., misalnya pelanggan"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "misalnya (55 + 434) / 4 atau = Math.sin (Math.PI / 2) ..."
@@ -30859,12 +31096,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "Kotak Masuk Surel"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "kosong"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "kosong"
@@ -30920,12 +31161,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "pusat"
@@ -30940,6 +31181,20 @@ msgstr ""
msgid "import"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -30979,16 +31234,11 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "digabung {0} ke {1}"
@@ -31007,15 +31257,15 @@ msgstr ""
msgid "mm/dd/yyyy"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "nama modul ..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "baru"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "jenis baru dokumen"
@@ -31077,7 +31327,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "atau"
@@ -31150,7 +31400,7 @@ msgid "restored {0} as {1}"
msgstr "dipulihkan {0} sebagai {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -31234,11 +31484,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "nama tag ..., misalnya #tag"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "teks dalam tipe dokumen"
@@ -31336,11 +31586,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31376,11 +31628,11 @@ msgstr ""
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31397,8 +31649,8 @@ msgstr "{0} ({1}) (1 baris wajib)"
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31411,13 +31663,13 @@ msgid "{0} Chart"
msgstr "{0} Bagan"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} Dasbor"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31451,11 +31703,11 @@ msgstr ""
msgid "{0} Map"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} Nama"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31463,7 +31715,7 @@ msgstr ""
msgid "{0} Report"
msgstr "{0} Laporan"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr ""
@@ -31476,11 +31728,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} Tampilan Halaman"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} ditambahkan"
@@ -31542,7 +31794,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31571,16 +31823,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} berhasil dibuat"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr ""
@@ -31597,11 +31852,19 @@ msgstr "{0} h"
msgid "{0} days ago"
msgstr "{0} hari yang lalu"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{0} tidak ada di baris {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
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"
@@ -31626,7 +31889,7 @@ msgstr "{0} j"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} telah menetapkan nilai default untuk {1}."
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31647,7 +31910,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} di baris {1} tidak dapat memiliki URL dan item turunan"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} adalah kolom wajib"
@@ -31655,7 +31922,15 @@ msgstr "{0} adalah kolom wajib"
msgid "{0} is a not a valid zip file"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} adalah bidang Data yang tidak valid."
@@ -31663,6 +31938,15 @@ msgstr "{0} adalah bidang Data yang tidak valid."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} adalah alamat email yang tidak valid di 'Penerima'"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31672,22 +31956,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr "{0} saat ini {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr ""
@@ -31700,10 +31998,14 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} wajib diisi"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31720,12 +32022,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} bukan DocType untuk Dynamic Link yang valid"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} bukan Alamat Email valid"
@@ -31733,23 +32035,23 @@ msgstr "{0} bukan Alamat Email valid"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} bukanlah Nama yang valid"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} bukan Nomor Telepon yang valid"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
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."
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31765,6 +32067,11 @@ msgstr ""
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr ""
@@ -31773,10 +32080,12 @@ msgstr ""
msgid "{0} is not like {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr ""
@@ -31785,36 +32094,50 @@ msgstr ""
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} sekarang menjadi format cetak standar untuk doctype {1}"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} diperlukan"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} item dipilih"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr ""
@@ -31842,35 +32165,35 @@ msgstr "{0} menit yang lalu"
msgid "{0} months ago"
msgstr "{0} bulan yang lalu"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} harus setelah {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} harus merupakan salah satu {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} harus diatur terlebih dahulu"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} harus merupakan kode unik"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31887,11 +32210,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} tidak dapat dinamakan kembali"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} dari {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} dari {1} ({2} baris dengan anak-anak)"
@@ -31920,7 +32243,7 @@ msgstr ""
msgid "{0} records deleted"
msgstr "{0} catatan dihapus"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} catatan akan diekspor"
@@ -31945,7 +32268,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "Baris {0} #{1}:"
@@ -31959,7 +32282,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} berhasil disimpan"
@@ -31967,7 +32290,7 @@ msgstr "{0} berhasil disimpan"
msgid "{0} self assigned this task: {1}"
msgstr "{0} penugasan sendiri tugas ini: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} berbagi dokumen {1} {2} dengan Anda"
@@ -32035,7 +32358,7 @@ msgstr ""
msgid "{0} weeks ago"
msgstr "{0} minggu yang lalu"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32047,7 +32370,7 @@ msgstr ""
msgid "{0} years ago"
msgstr "{0} tahun lalu"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} ditambahkan"
@@ -32055,11 +32378,11 @@ msgstr "{0} {1} ditambahkan"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} ditambahkan ke Dasbor {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} sudah ada"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} tidak dapat \"{2}\". Seharusnya salah satu dari \"{3}\""
@@ -32071,11 +32394,11 @@ msgstr "{0} {1} tidak bisa menjadi node tumpuan karena memiliki node anak"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} belum ada, pilih target baru untuk menggabungkan"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} ditautkan dengan dokumen yang dikirimkan berikut: {2}"
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} tidak ditemukan"
@@ -32083,87 +32406,59 @@ msgstr "{0} {1} tidak ditemukan"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Rekaman yang Dikirim tidak dapat dihapus. Anda harus {2} Membatalkan {3} dulu."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, Baris {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) akan terpotong, karena karakter maksimum yang diizinkan adalah {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Tidak dapat melakukan Perubahan tanpa Pembatalan terlebih dahulu"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Tidak dapat menetapkan perubahan jika dokumen tidak dapat diajukan"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Tidak dapat mengatur Assign Submit jika tidak Submittable"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Tidak dapat mengatur Pembatalan tanpa melakukan penyerahan"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Tidak dapat melakukan Impor tanpa dibuat terlebih dahulu"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Tidak dapat mengatur Pengajuan, Pembatalan, Perubahan tanpa Pencatatan"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Tidak dapat melakukan impor karena {1} bukan data yang dapat diimpor"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Gagal melampirkan dokumen berulang baru. Untuk mengaktifkan melampirkan dokumen di email pemberitahuan ulangi otomatis, aktifkan {1} di Pengaturan Cetak"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
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"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
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"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Bidang {1} dari tipe {2} tidak boleh wajib"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Fieldname {1} muncul beberapa kali dalam baris {2}"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Fieldtype {1} untuk {2} tidak boleh unik"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Tidak ada perizinan dasar yang ditetapkan"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
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}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
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}"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
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}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
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}"
@@ -32171,15 +32466,59 @@ msgstr "{0}: Opsi {1} harus sama dengan nama doctype {2} untuk isian {3}"
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
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"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32192,15 +32531,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} diatur untuk menyatakan {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}: Fieldtype {1} untuk {2} tidak dapat diindeks"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr ""
@@ -32220,11 +32559,11 @@ msgstr ""
msgid "{count} rows selected"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Selesai"
diff --git a/frappe/locale/it.po b/frappe/locale/it.po
index fdf348ca9e..497a76694d 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr ""
msgid "\"Team Members\" or \"Management\""
msgstr "\"Membri del team\" o \"Dirigenza\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr ""
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. e collaboratori"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "'Nella Ricerca Globale' non è consentito per il campo {0} di tipo {1}"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "'Nella Ricerca Globale' non consentito per il tipo {0} nella riga {1}"
@@ -90,19 +90,19 @@ msgstr "'Nella Vista Elenco' non consentito per il tipo {0} nella riga {1}"
msgid "'Recipients' not specified"
msgstr "'Destinatari' non specificati"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' non è un URL valido"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' non consentito per il tipo {1} nella riga {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Obbligatorio)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0 è il più alto"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Vero e 0 = Falso"
@@ -159,7 +159,7 @@ msgstr "1 Giorno"
msgid "1 Google Calendar Event synced."
msgstr "1 Evento di Google Calendar sincronizzato."
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr ""
@@ -190,7 +190,7 @@ msgstr "1 mese fa"
msgid "1 of 2"
msgstr "1 di 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "Verrà esportato 1 record"
@@ -440,72 +440,7 @@ msgid "Print Format Help
\n"
"\t\t\n"
"\t\n"
"I formati di stampa vengono elaborati lato server usando il linguaggio di template Jinja. Tutti i moduli possono accedere all'oggetto doc che contiene le informazioni del documento che si sta formattando. Puoi anche accedere a utilità comuni tramite il modulo frappe.
Per la stilizzazione, è fornito il framework CSS Bootstrap e puoi usufruire dell'intera gamma di classi.
\n" -"<h3>{{ doc.select_print_heading or \"Invoice\" }}</h3>\n"
-"<div class=\"row\">\n"
-"\t<div class=\"col-md-3 text-right\">Nome Cliente</div>\n"
-"\t<div class=\"col-md-9\">{{ doc.customer_name }}</div>\n"
-"</div>\n"
-"<div class=\"row\">\n"
-"\t<div class=\"col-md-3 text-right\">Data</div>\n"
-"\t<div class=\"col-md-9\">{{ doc.get_formatted(\"invoice_date\") }}</div>\n"
-"</div>\n"
-"<table class=\"table table-bordered\">\n"
-"\t<tbody>\n"
-"\t\t<tr>\n"
-"\t\t\t<th>Sr</th>\n"
-"\t\t\t<th>Item Name</th>\n"
-"\t\t\t<th>Description</th>\n"
-"\t\t\t<th class=\"text-right\">Qty</th>\n"
-"\t\t\t<th class=\"text-right\">Rate</th>\n"
-"\t\t\t<th class=\"text-right\">Amount</th>\n"
-"\t\t</tr>\n"
-"\t\t{%- for row in doc.items -%}\n"
-"\t\t<tr>\n"
-"\t\t\t<td style=\"width: 3%;\">{{ row.idx }}</td>\n"
-"\t\t\t<td style=\"width: 20%;\">\n"
-"\t\t\t\t{{ row.item_name }}\n"
-"\t\t\t\t{% if row.item_code != row.item_name -%}\n"
-"\t\t\t\t<br>Item Code: {{ row.item_code}}\n"
-"\t\t\t\t{%- endif %}\n"
-"\t\t\t</td>\n"
-"\t\t\t<td style=\"width: 37%;\">\n"
-"\t\t\t\t<div style=\"border: 0px;\">{{ row.description }}</div></td>\n"
-"\t\t\t<td style=\"width: 10%; text-align: right;\">{{ row.qty }} {{ row.uom or row.stock_uom }}</td>\n"
-"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
-"\t\t\t\trow.get_formatted(\"rate\", doc) }}</td>\n"
-"\t\t\t<td style=\"width: 15%; text-align: right;\">{{\n"
-"\t\t\t\trow.get_formatted(\"amount\", doc) }}</td>\n"
-"\t\t</tr>\n"
-"\t\t{%- endfor -%}\n"
-"\t</tbody>\n"
-"</table>\n"
-"doc.get_formatted(\"[fieldname]\", [parent_doc]) | \n"
-"\t\t\tOttieni il valore del documento formattato come Data, Valuta, ecc. Passa il doc padre per i campi di tipo valuta. | \n"
-"\t\t
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
-"\t\t\tRecupera il valore da un altro documento. | \n" -"\t\t
Warning: Customizations from other modules will be excluded.
" +msgstr "" + #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json @@ -9730,7 +9775,7 @@ msgstr "" msgid "Export without main header" msgstr "" -#: frappe/public/js/frappe/data_import/data_exporter.js:247 +#: frappe/public/js/frappe/data_import/data_exporter.js:248 msgid "Export {0} records" msgstr "" @@ -9770,7 +9815,7 @@ 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:440 +#: frappe/public/js/frappe/views/workspace/workspace.js:488 msgid "External Link" msgstr "Collegamento Esterno" @@ -9784,7 +9829,7 @@ msgstr "" #. 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' @@ -9819,12 +9864,17 @@ msgstr "" msgid "Failed Jobs" msgstr "Processi Falliti" +#. Label of a number card in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Failed Login Attempts" +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 "Accessi Falliti (Ultimi 30 giorni)" -#: frappe/model/workflow.py:362 +#: frappe/model/workflow.py:383 msgid "Failed Transactions" msgstr "" @@ -9887,7 +9937,7 @@ msgstr "" msgid "Failed to get method for command {0} with {1}" msgstr "" -#: frappe/api/v2.py:46 +#: frappe/api/v2.py:61 msgid "Failed to get method {0} with {1}" msgstr "" @@ -9899,7 +9949,7 @@ msgstr "" msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "" -#: frappe/utils/image.py:75 +#: frappe/utils/image.py:70 msgid "Failed to optimize image: {0}" msgstr "" @@ -9915,7 +9965,7 @@ msgstr "" msgid "Failed to request login to Frappe Cloud" msgstr "" -#: frappe/email/doctype/email_queue/email_queue.py:300 +#: frappe/email/doctype/email_queue/email_queue.py:301 msgid "Failed to send email with subject:" msgstr "" @@ -9955,9 +10005,9 @@ msgstr "" #. Label of the fax (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Fax" -msgstr "Fax" +msgstr "" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:51 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:72 msgid "Feedback" msgstr "" @@ -10017,8 +10067,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1909 +#: frappe/public/js/frappe/views/reports/query_report.js:237 +#: frappe/public/js/frappe/views/reports/query_report.js:1984 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10028,7 +10078,7 @@ msgstr "" msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -10036,7 +10086,7 @@ msgstr "" msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "" -#: frappe/desk/search.py:255 +#: frappe/desk/search.py:262 msgid "Field{0} not found in {1}"
msgstr ""
@@ -10045,7 +10095,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10093,7 +10143,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10101,11 +10151,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10127,7 +10177,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10136,7 +10186,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10144,7 +10194,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10160,7 +10210,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10208,7 +10258,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10232,7 +10282,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10308,12 +10358,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10340,12 +10390,17 @@ msgstr "File"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10364,7 +10419,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Nome Filtro"
@@ -10373,11 +10428,11 @@ msgstr "Nome Filtro"
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10396,10 +10451,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10423,7 +10482,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10454,10 +10513,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10475,14 +10530,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10570,11 +10625,11 @@ msgstr ""
msgid "Fold"
msgstr "Comprimi"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10603,12 +10658,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10616,7 +10671,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10624,7 +10679,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10632,7 +10687,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10701,7 +10756,7 @@ msgstr "Dettagli del Piè di Pagina"
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10738,7 +10793,7 @@ msgstr "Modello di Piè di Pagina"
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10771,15 +10826,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10803,20 +10849,16 @@ msgstr "Valore"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10844,7 +10886,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10894,7 +10936,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Modulo"
@@ -11073,7 +11116,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11094,7 +11137,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11135,7 +11178,7 @@ msgstr "Intero"
msgid "Full Name"
msgstr "Nome e Cognome"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11148,7 +11191,7 @@ msgstr "Larghezza Intera"
#. 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/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11157,11 +11200,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11226,11 +11269,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11240,8 +11283,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11323,7 +11366,7 @@ msgstr ""
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "GitHub"
-msgstr "GitHub"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Github flavoured markdown syntax"
@@ -11352,7 +11395,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11412,7 +11455,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11420,7 +11463,7 @@ msgstr ""
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Google"
-msgstr "Google"
+msgstr ""
#. Label of the google_analytics_id (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -11638,7 +11681,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11671,14 +11714,14 @@ msgstr "QUI"
#: 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'
@@ -11718,6 +11761,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11806,7 +11853,7 @@ msgstr "Intestazione"
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11842,7 +11889,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11879,7 +11926,7 @@ msgstr "Ciao,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11927,14 +11974,14 @@ 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 ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11970,8 +12017,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include: {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -18026,7 +18143,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -18034,7 +18151,7 @@ msgstr ""
msgid "Old Password"
msgstr "Vecchia Password"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18101,7 +18218,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18145,7 +18262,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18161,11 +18278,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18186,7 +18303,7 @@ msgstr ""
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
@@ -18209,11 +18326,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18256,7 +18373,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18279,8 +18396,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Apri"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18316,6 +18433,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Applicazioni Open Source per il Web"
@@ -18330,7 +18451,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18342,11 +18463,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18361,16 +18482,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18386,7 +18507,7 @@ msgstr ""
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "OpenLDAP"
-msgstr "OpenLDAP"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -18402,7 +18523,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18428,7 +18549,7 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18462,7 +18583,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
@@ -18471,7 +18592,7 @@ msgstr ""
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18479,7 +18600,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18487,7 +18608,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18503,7 +18624,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18523,8 +18644,12 @@ msgstr ""
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18577,7 +18702,7 @@ msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Outlook.com"
-msgstr "Outlook.com"
+msgstr ""
#. Label of the output (Code) field in DocType 'Permission Inspector'
#. Label of the output (Code) field in DocType 'System Console'
@@ -18599,18 +18724,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "Generatore PDF"
@@ -18634,7 +18761,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18642,18 +18769,18 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
#. Label of the pid (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "PID"
-msgstr "PID"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
@@ -18805,7 +18932,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18821,7 +18948,7 @@ msgstr "Pagina da mostrare sul sito web\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:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18832,7 +18959,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Principale"
@@ -18865,11 +18992,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18883,7 +19010,7 @@ msgstr ""
msgid "Parent Label"
msgstr "Etichetta Principale"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18908,11 +19035,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18931,7 +19058,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18968,11 +19095,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -18981,7 +19108,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -19010,11 +19137,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -19026,7 +19153,7 @@ msgstr "Password impostata"
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -19088,7 +19215,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19173,15 +19300,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19189,7 +19316,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19199,12 +19330,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19213,11 +19344,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "Gestore Permessi"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19248,7 +19374,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19259,13 +19384,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Permessi"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19277,11 +19401,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19351,13 +19475,13 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
@@ -19415,7 +19539,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19431,7 +19555,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19439,11 +19563,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19455,11 +19579,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19491,7 +19615,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19521,10 +19645,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19537,7 +19661,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19611,15 +19735,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19635,7 +19759,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19655,7 +19779,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19663,7 +19787,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19713,11 +19837,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19725,7 +19849,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19745,7 +19869,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19757,7 +19881,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19785,7 +19909,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19906,11 +20030,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19962,11 +20086,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19974,7 +20098,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19992,7 +20116,7 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Anteprima"
@@ -20036,16 +20160,16 @@ msgstr ""
msgid "Previous"
msgstr "Precedente"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Precedente"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20098,19 +20222,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20128,8 +20252,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20173,7 +20298,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20206,11 +20331,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20223,8 +20348,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Impostazioni di Stampa"
@@ -20263,7 +20388,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20272,11 +20397,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20286,15 +20411,15 @@ msgstr ""
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20343,7 +20468,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20383,9 +20508,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20455,7 +20580,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Pubblico"
@@ -20605,7 +20730,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "Errore nel vassoio QZ:"
@@ -20667,7 +20792,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20688,7 +20813,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20729,7 +20854,7 @@ msgstr ""
msgid "Queues"
msgstr "Code"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20821,6 +20946,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20829,7 +20963,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20847,7 +20981,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20858,11 +20992,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20899,7 +21034,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20939,7 +21074,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20981,7 +21116,7 @@ msgstr "Parametro Ricevente"
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -21032,7 +21167,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21098,12 +21233,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Ripeti"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21319,12 +21454,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21341,7 +21476,7 @@ msgstr ""
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21356,7 +21491,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21367,7 +21502,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21413,10 +21548,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Ricarica"
@@ -21428,7 +21561,7 @@ msgstr "Ricarica File"
msgid "Reload List"
msgstr "Ricarica Elenco"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Ricarica Report"
@@ -21447,7 +21580,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Promemoria"
@@ -21527,9 +21660,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21557,7 +21690,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21604,7 +21737,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21667,6 +21800,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21681,10 +21815,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21753,7 +21886,7 @@ msgstr "Responsabile Report"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Nome del Rapporto"
@@ -21787,14 +21920,10 @@ msgstr ""
msgid "Report View"
msgstr "Vista Report"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Segnala un problema"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21805,7 +21934,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21817,7 +21946,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21825,12 +21954,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21853,7 +21982,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21861,7 +21990,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21920,13 +22049,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -22042,7 +22171,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22100,7 +22229,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22109,7 +22238,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22131,6 +22260,11 @@ msgstr ""
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22158,8 +22292,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22206,9 +22340,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22243,8 +22383,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22259,8 +22397,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22304,7 +22441,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr "Gestore Permessi Ruolo"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Gestione Permessi Ruolo"
@@ -22312,11 +22449,9 @@ msgstr "Gestione Permessi Ruolo"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Tipologia Profilo"
@@ -22338,7 +22473,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22404,7 +22539,7 @@ msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Round Robin"
-msgstr "Round Robin"
+msgstr ""
#. Label of the rounding_method (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -22457,20 +22592,20 @@ msgstr "Reindirizzamenti Percorso"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22497,7 +22632,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22516,14 +22651,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22546,7 +22681,7 @@ msgstr "Regola"
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22626,7 +22761,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22637,7 +22772,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL"
-msgstr "SQL"
+msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
@@ -22660,7 +22795,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22732,22 +22867,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22760,7 +22896,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Salva Con Nome"
@@ -22768,7 +22904,7 @@ msgstr "Salva Con Nome"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22786,20 +22922,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Salvato"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Filtri Salvati"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Salvataggio"
@@ -22808,11 +22944,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Risparmio"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Salvataggio della Personalizzazione..."
@@ -23016,7 +23152,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23036,7 +23172,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -23054,7 +23190,7 @@ msgstr "Risultati della Ricerca"
msgid "Search by filename or extension"
msgstr "Cerca per nome file o estensione"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -23071,12 +23207,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23148,15 +23284,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23206,24 +23342,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Seleziona"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Seleziona Tutto"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23239,7 +23377,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23283,13 +23421,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr "Selezionare Tipo di documento o Ruolo per iniziare."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23298,7 +23436,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23307,19 +23445,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Seleziona Filtri"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23344,16 +23482,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23363,7 +23501,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23399,12 +23537,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23421,11 +23553,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23451,13 +23583,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23491,7 +23623,7 @@ msgstr ""
msgid "Select {0}"
msgstr ""
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23521,6 +23653,11 @@ msgstr "Invia Dopo"
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23573,7 +23710,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Invia Ricevuta di Lettura"
@@ -23636,7 +23773,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Inviami una copia"
@@ -23675,7 +23812,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23694,7 +23831,7 @@ msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Sendgrid"
-msgstr "Sendgrid"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23769,7 +23906,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23779,7 +23916,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23806,11 +23943,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23838,16 +23979,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr "Impostazioni Sessione Predefinita"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Predefiniti Sessione"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Predefiniti Sessione Salvati"
@@ -23888,7 +24027,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -23914,7 +24053,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23957,8 +24096,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23978,12 +24117,12 @@ msgstr "Imposta Autorizzazioni Utente"
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Imposta come privato"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Imposta tutto come pubblico"
@@ -24087,8 +24226,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24111,11 +24250,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24123,12 +24262,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Imposta E-mail Automatica"
@@ -24157,13 +24296,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Condividi"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24171,7 +24311,7 @@ msgstr ""
msgid "Share this document with"
msgstr "Condividi questo documento con"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Condividi {0} con"
@@ -24231,16 +24371,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr "Mostra Valori Assoluti"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Mostra Tutto"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24286,7 +24420,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24338,7 +24472,7 @@ msgstr "Mostra Selettore Lingua"
msgid "Show Line Breaks after Sections"
msgstr "Mostra Interruzioni di Riga dopo le Sezioni"
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Mostra Collegamenti"
@@ -24458,7 +24592,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr "Mostra il link per l'eliminazione dell'account nella pagina Il Mio Account"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24600,7 +24734,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24723,7 +24857,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24734,12 +24868,12 @@ msgstr ""
#. Label of the skype (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr "Skype"
+msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr "Slack"
+msgstr ""
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -24898,15 +25032,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24937,13 +25071,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24980,7 +25114,7 @@ msgstr "Spam"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "SparkPost"
-msgstr "SparkPost"
+msgstr ""
#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow
#. Transition Task'
@@ -24992,7 +25126,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -25031,6 +25165,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25038,6 +25173,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25105,8 +25241,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25154,7 +25290,7 @@ msgstr ""
#. Option for the 'SSL/TLS Mode' (Select) field in DocType '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'
#: frappe/core/doctype/prepared_report/prepared_report.json
@@ -25278,7 +25414,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25316,7 +25452,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25430,7 +25566,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Soggetto"
@@ -25444,7 +25580,7 @@ msgstr "Soggetto"
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25465,14 +25601,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25502,7 +25638,7 @@ msgstr ""
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25526,11 +25662,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25556,7 +25692,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
@@ -25591,12 +25727,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25638,7 +25774,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25663,7 +25799,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25688,7 +25824,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25729,7 +25865,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Cambia Fotocamera"
@@ -25742,7 +25878,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Cambio Fotocamera"
@@ -25811,9 +25947,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25823,7 +25957,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25950,6 +26084,7 @@ msgstr "Log di Sistema"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25964,7 +26099,6 @@ msgstr "Log di Sistema"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26040,6 +26174,11 @@ msgstr "Pagina di Sistema"
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26056,6 +26195,12 @@ msgstr "T"
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26091,7 +26236,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26100,7 +26245,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26118,7 +26263,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26126,18 +26271,18 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Tabloid"
-msgstr "Quotidiano"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/tag/tag.json
@@ -26150,17 +26295,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Etichette"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Scatta Foto"
@@ -26244,7 +26389,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26340,7 +26485,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26392,7 +26537,7 @@ msgid "The browser API key obtained from the Google Cloud Console under Warning: Customizations from other modules will be excluded.
" +msgstr "" + #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json @@ -9687,7 +9797,7 @@ msgstr "" msgid "Export without main header" msgstr "" -#: frappe/public/js/frappe/data_import/data_exporter.js:247 +#: frappe/public/js/frappe/data_import/data_exporter.js:248 msgid "Export {0} records" msgstr "" @@ -9727,7 +9837,7 @@ 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:440 +#: frappe/public/js/frappe/views/workspace/workspace.js:488 msgid "External Link" msgstr "" @@ -9776,12 +9886,17 @@ msgstr "" msgid "Failed Jobs" msgstr "" +#. Label of a number card in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Failed Login Attempts" +msgstr "" + #. Label of the failed_logins (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:362 +#: frappe/model/workflow.py:383 msgid "Failed Transactions" msgstr "" @@ -9844,7 +9959,7 @@ msgstr "" msgid "Failed to get method for command {0} with {1}" msgstr "" -#: frappe/api/v2.py:46 +#: frappe/api/v2.py:61 msgid "Failed to get method {0} with {1}" msgstr "" @@ -9856,7 +9971,7 @@ msgstr "" msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "" -#: frappe/utils/image.py:75 +#: frappe/utils/image.py:70 msgid "Failed to optimize image: {0}" msgstr "" @@ -9872,7 +9987,7 @@ msgstr "" msgid "Failed to request login to Frappe Cloud" msgstr "" -#: frappe/email/doctype/email_queue/email_queue.py:300 +#: frappe/email/doctype/email_queue/email_queue.py:301 msgid "Failed to send email with subject:" msgstr "" @@ -9914,7 +10029,7 @@ msgstr "" msgid "Fax" msgstr "" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:51 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:72 msgid "Feedback" msgstr "" @@ -9974,8 +10089,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1909 +#: frappe/public/js/frappe/views/reports/query_report.js:237 +#: frappe/public/js/frappe/views/reports/query_report.js:1984 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9985,7 +10100,7 @@ msgstr "" msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9993,7 +10108,7 @@ msgstr "" msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "" -#: frappe/desk/search.py:255 +#: frappe/desk/search.py:262 msgid "Field{0} not found in {1}"
msgstr ""
@@ -10002,7 +10117,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10050,7 +10165,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10058,11 +10173,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10084,7 +10199,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10093,7 +10208,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10101,7 +10216,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10117,7 +10232,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10165,7 +10280,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10189,7 +10304,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10265,12 +10380,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10297,12 +10412,17 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10321,7 +10441,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr ""
@@ -10330,11 +10450,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10353,10 +10473,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10380,7 +10504,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10411,10 +10535,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10432,14 +10552,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10527,11 +10647,11 @@ msgstr ""
msgid "Fold"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10560,12 +10680,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10573,7 +10693,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10581,7 +10701,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10589,7 +10709,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10658,7 +10778,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10695,7 +10815,7 @@ msgstr ""
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10728,16 +10848,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid ""
-"For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10761,20 +10871,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10802,7 +10908,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10852,7 +10958,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -11031,7 +11138,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11052,7 +11159,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11093,7 +11200,7 @@ msgstr ""
msgid "Full Name"
msgstr ""
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11106,7 +11213,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11115,11 +11222,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11184,11 +11291,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11198,8 +11305,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11310,7 +11417,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11370,7 +11477,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11596,7 +11703,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11676,6 +11783,10 @@ msgstr ""
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11764,7 +11875,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11800,7 +11911,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11837,7 +11948,7 @@ msgstr ""
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11892,7 +12003,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11928,8 +12039,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include: {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17986,7 +18167,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17994,7 +18175,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18061,7 +18242,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18105,7 +18286,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18121,11 +18302,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18146,7 +18327,7 @@ msgstr ""
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
@@ -18169,11 +18350,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18216,7 +18397,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18239,8 +18420,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18276,6 +18457,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18290,7 +18475,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18302,11 +18487,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18321,16 +18506,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18362,7 +18547,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18388,7 +18573,7 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18422,7 +18607,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
@@ -18431,7 +18616,7 @@ msgstr ""
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18439,7 +18624,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18447,7 +18632,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18463,7 +18648,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18483,8 +18668,12 @@ msgstr ""
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18559,18 +18748,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18594,7 +18785,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18602,11 +18793,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18765,7 +18956,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18781,7 +18972,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18792,7 +18983,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18825,11 +19016,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18843,7 +19034,7 @@ msgstr ""
msgid "Parent Label"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18868,11 +19059,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18891,7 +19082,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18928,11 +19119,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -18941,7 +19132,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18970,11 +19161,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18986,7 +19177,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -19048,7 +19239,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19133,15 +19324,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19149,7 +19340,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19159,12 +19354,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19173,11 +19368,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19208,7 +19398,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19219,13 +19408,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19237,11 +19425,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19311,13 +19499,13 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
@@ -19375,7 +19563,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19391,7 +19579,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19399,11 +19587,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19415,11 +19603,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19451,7 +19639,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19481,10 +19669,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19497,7 +19685,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19571,15 +19759,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19595,7 +19783,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19615,7 +19803,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19623,7 +19811,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19673,11 +19861,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19685,7 +19873,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19705,7 +19893,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19717,7 +19905,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19745,7 +19933,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19866,11 +20054,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19922,11 +20110,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19934,7 +20122,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19952,7 +20140,7 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
@@ -19996,16 +20184,16 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20058,19 +20246,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20088,8 +20276,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20133,7 +20322,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20166,11 +20355,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20183,8 +20372,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20223,7 +20412,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20232,11 +20421,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20246,15 +20435,15 @@ msgstr ""
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20303,7 +20492,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20343,9 +20532,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20415,7 +20604,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr ""
@@ -20565,7 +20754,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20627,7 +20816,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20648,7 +20837,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20689,7 +20878,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20781,6 +20970,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20789,7 +20987,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20807,7 +21005,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20818,11 +21016,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20859,7 +21058,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20899,7 +21098,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20941,7 +21140,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20992,7 +21191,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21058,12 +21257,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21279,12 +21478,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21301,7 +21500,7 @@ msgstr ""
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21316,7 +21515,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21327,7 +21526,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21373,10 +21572,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr ""
@@ -21388,7 +21585,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21407,7 +21604,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21487,9 +21684,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21517,7 +21714,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21564,7 +21761,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21627,6 +21824,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21641,10 +21839,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21713,7 +21910,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21747,14 +21944,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21765,7 +21958,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21777,7 +21970,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21785,12 +21978,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21813,7 +22006,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21821,7 +22014,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21880,13 +22073,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -22002,7 +22195,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22060,7 +22253,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22069,7 +22262,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22091,6 +22284,11 @@ msgstr ""
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22118,8 +22316,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22166,9 +22364,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22203,8 +22407,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22219,8 +22421,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22264,7 +22465,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22272,11 +22473,9 @@ msgstr ""
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22298,7 +22497,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22417,20 +22616,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22457,7 +22656,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22476,14 +22675,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22506,7 +22705,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22586,7 +22785,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22620,7 +22819,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22692,22 +22891,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22720,7 +22920,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22728,7 +22928,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22746,20 +22946,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr ""
@@ -22768,11 +22968,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22976,7 +23176,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22996,7 +23196,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -23014,7 +23214,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -23031,12 +23231,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23108,15 +23308,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23166,24 +23366,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23199,7 +23401,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23243,13 +23445,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23258,7 +23460,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23267,19 +23469,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23304,16 +23506,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23323,7 +23525,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23359,12 +23561,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23381,11 +23577,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23411,13 +23607,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23451,7 +23647,7 @@ msgstr ""
msgid "Select {0}"
msgstr ""
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23481,6 +23677,11 @@ msgstr ""
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23533,7 +23734,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23596,7 +23797,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
@@ -23635,7 +23836,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23729,7 +23930,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23739,7 +23940,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23766,11 +23967,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23798,16 +24003,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr ""
@@ -23848,7 +24051,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -23874,7 +24077,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23917,8 +24120,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23938,12 +24141,12 @@ msgstr ""
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -24050,8 +24253,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24074,11 +24277,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24086,12 +24289,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24120,13 +24323,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24134,7 +24338,7 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
@@ -24194,16 +24398,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24249,7 +24447,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24301,7 +24499,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24421,7 +24619,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24563,7 +24761,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24686,7 +24884,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24861,15 +25059,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24900,13 +25098,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24955,7 +25153,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -24994,6 +25192,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25001,6 +25200,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25068,8 +25268,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25241,7 +25441,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25279,7 +25479,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25393,7 +25593,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25407,7 +25607,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25428,14 +25628,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25465,7 +25665,7 @@ msgstr ""
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25489,11 +25689,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25519,7 +25719,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
@@ -25554,12 +25754,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25601,7 +25801,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25626,7 +25826,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25651,7 +25851,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25692,7 +25892,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25705,7 +25905,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25774,9 +25974,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25786,7 +25984,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25913,6 +26111,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25927,7 +26126,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26003,6 +26201,11 @@ msgstr ""
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26019,6 +26222,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26054,7 +26263,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26063,7 +26272,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26081,7 +26290,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26089,11 +26298,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26113,17 +26322,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26207,7 +26416,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26307,7 +26516,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26361,7 +26570,7 @@ msgid ""
""
msgstr ""
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr ""
@@ -26377,7 +26586,7 @@ msgstr ""
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr ""
@@ -26403,11 +26612,15 @@ msgstr ""
msgid "The document type selected is a child table, so the parent document type is required."
msgstr ""
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr ""
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr ""
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr ""
@@ -26474,6 +26687,10 @@ msgstr ""
msgid "The password of your account has expired."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+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 ""
@@ -26490,15 +26707,15 @@ msgstr ""
msgid "The report you requested has been generated.Warning: Customizations from other modules will be excluded.
" +msgstr "" + #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json @@ -9639,7 +9749,7 @@ msgstr "" msgid "Export without main header" msgstr "" -#: frappe/public/js/frappe/data_import/data_exporter.js:247 +#: frappe/public/js/frappe/data_import/data_exporter.js:248 msgid "Export {0} records" msgstr "" @@ -9679,7 +9789,7 @@ 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:440 +#: frappe/public/js/frappe/views/workspace/workspace.js:488 msgid "External Link" msgstr "" @@ -9728,12 +9838,17 @@ msgstr "" msgid "Failed Jobs" msgstr "" +#. Label of a number card in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Failed Login Attempts" +msgstr "" + #. Label of the failed_logins (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:362 +#: frappe/model/workflow.py:383 msgid "Failed Transactions" msgstr "" @@ -9796,7 +9911,7 @@ msgstr "" msgid "Failed to get method for command {0} with {1}" msgstr "" -#: frappe/api/v2.py:46 +#: frappe/api/v2.py:61 msgid "Failed to get method {0} with {1}" msgstr "" @@ -9808,7 +9923,7 @@ msgstr "" msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "" -#: frappe/utils/image.py:75 +#: frappe/utils/image.py:70 msgid "Failed to optimize image: {0}" msgstr "" @@ -9824,7 +9939,7 @@ msgstr "" msgid "Failed to request login to Frappe Cloud" msgstr "" -#: frappe/email/doctype/email_queue/email_queue.py:300 +#: frappe/email/doctype/email_queue/email_queue.py:301 msgid "Failed to send email with subject:" msgstr "" @@ -9866,7 +9981,7 @@ msgstr "" msgid "Fax" msgstr "" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:51 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:72 msgid "Feedback" msgstr "" @@ -9926,8 +10041,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1909 +#: frappe/public/js/frappe/views/reports/query_report.js:237 +#: frappe/public/js/frappe/views/reports/query_report.js:1984 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9937,7 +10052,7 @@ msgstr "" msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9945,7 +10060,7 @@ msgstr "" msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "" -#: frappe/desk/search.py:255 +#: frappe/desk/search.py:262 msgid "Field{0} not found in {1}"
msgstr ""
@@ -9954,7 +10069,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10002,7 +10117,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10010,11 +10125,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10036,7 +10151,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10045,7 +10160,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10053,7 +10168,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10069,7 +10184,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10117,7 +10232,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10141,7 +10256,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10217,12 +10332,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10249,12 +10364,17 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10273,7 +10393,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr ""
@@ -10282,11 +10402,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10305,10 +10425,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10332,7 +10456,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10363,10 +10487,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10384,14 +10504,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10479,11 +10599,11 @@ msgstr ""
msgid "Fold"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10512,12 +10632,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10525,7 +10645,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10533,7 +10653,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10541,7 +10661,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10610,7 +10730,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10647,7 +10767,7 @@ msgstr ""
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10680,15 +10800,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10712,20 +10823,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10753,7 +10860,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10803,7 +10910,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -10982,7 +11090,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11003,7 +11111,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11044,7 +11152,7 @@ msgstr ""
msgid "Full Name"
msgstr ""
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11057,7 +11165,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11066,11 +11174,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11135,11 +11243,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11149,8 +11257,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11261,7 +11369,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11321,7 +11429,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11547,7 +11655,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11627,6 +11735,10 @@ msgstr ""
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11715,7 +11827,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11751,7 +11863,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11788,7 +11900,7 @@ msgstr ""
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11843,7 +11955,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11879,8 +11991,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include: {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17935,7 +18117,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17943,7 +18125,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18010,7 +18192,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18054,7 +18236,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18070,11 +18252,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18095,7 +18277,7 @@ msgstr ""
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
@@ -18118,11 +18300,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18165,7 +18347,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18188,8 +18370,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18225,6 +18407,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18239,7 +18425,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18251,11 +18437,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18270,16 +18456,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18311,7 +18497,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18337,7 +18523,7 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18371,7 +18557,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
@@ -18380,7 +18566,7 @@ msgstr ""
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18388,7 +18574,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18396,7 +18582,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18412,7 +18598,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18432,8 +18618,12 @@ msgstr ""
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18508,18 +18698,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18543,7 +18735,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18551,11 +18743,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18714,7 +18906,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18730,7 +18922,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18741,7 +18933,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18774,11 +18966,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18792,7 +18984,7 @@ msgstr ""
msgid "Parent Label"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18817,11 +19009,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18840,7 +19032,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18877,11 +19069,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -18890,7 +19082,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18919,11 +19111,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18935,7 +19127,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18997,7 +19189,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19082,15 +19274,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19098,7 +19290,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19108,12 +19304,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19122,11 +19318,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19157,7 +19348,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19168,13 +19358,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19186,11 +19375,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19260,13 +19449,13 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
@@ -19324,7 +19513,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19340,7 +19529,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19348,11 +19537,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19364,11 +19553,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19400,7 +19589,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19430,10 +19619,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19446,7 +19635,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19520,15 +19709,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19544,7 +19733,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19564,7 +19753,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19572,7 +19761,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19622,11 +19811,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19634,7 +19823,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19654,7 +19843,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19666,7 +19855,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19694,7 +19883,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19815,11 +20004,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19871,11 +20060,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19883,7 +20072,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19901,7 +20090,7 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
@@ -19945,16 +20134,16 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20007,19 +20196,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20037,8 +20226,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20082,7 +20272,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20115,11 +20305,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20132,8 +20322,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20172,7 +20362,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20181,11 +20371,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20195,15 +20385,15 @@ msgstr ""
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20252,7 +20442,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20292,9 +20482,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20364,7 +20554,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr ""
@@ -20514,7 +20704,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20576,7 +20766,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20597,7 +20787,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20638,7 +20828,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20730,6 +20920,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20738,7 +20937,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20756,7 +20955,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20767,11 +20966,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20808,7 +21008,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20848,7 +21048,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20890,7 +21090,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20941,7 +21141,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21007,12 +21207,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21228,12 +21428,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21250,7 +21450,7 @@ msgstr ""
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21265,7 +21465,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21276,7 +21476,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21322,10 +21522,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr ""
@@ -21337,7 +21535,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21356,7 +21554,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21436,9 +21634,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21466,7 +21664,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21513,7 +21711,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21576,6 +21774,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21590,10 +21789,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21662,7 +21860,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21696,14 +21894,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21714,7 +21908,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21726,7 +21920,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21734,12 +21928,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21762,7 +21956,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21770,7 +21964,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21829,13 +22023,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -21951,7 +22145,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22009,7 +22203,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22018,7 +22212,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22040,6 +22234,11 @@ msgstr ""
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22067,8 +22266,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22115,9 +22314,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22152,8 +22357,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22168,8 +22371,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22213,7 +22415,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22221,11 +22423,9 @@ msgstr ""
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22247,7 +22447,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22366,20 +22566,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22406,7 +22606,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22425,14 +22625,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22455,7 +22655,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22535,7 +22735,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22569,7 +22769,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22641,22 +22841,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22669,7 +22870,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22677,7 +22878,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22695,20 +22896,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr ""
@@ -22717,11 +22918,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22925,7 +23126,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22945,7 +23146,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -22963,7 +23164,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -22980,12 +23181,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23057,15 +23258,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23115,24 +23316,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23148,7 +23351,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23192,13 +23395,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23207,7 +23410,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23216,19 +23419,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23253,16 +23456,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23272,7 +23475,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23308,12 +23511,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23330,11 +23527,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23360,13 +23557,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23400,7 +23597,7 @@ msgstr ""
msgid "Select {0}"
msgstr ""
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23430,6 +23627,11 @@ msgstr ""
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23482,7 +23684,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23545,7 +23747,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
@@ -23584,7 +23786,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23678,7 +23880,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23688,7 +23890,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23715,11 +23917,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23747,16 +23953,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr ""
@@ -23797,7 +24001,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -23823,7 +24027,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23866,8 +24070,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23887,12 +24091,12 @@ msgstr ""
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -23996,8 +24200,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24020,11 +24224,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24032,12 +24236,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24066,13 +24270,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24080,7 +24285,7 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
@@ -24140,16 +24345,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24195,7 +24394,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24247,7 +24446,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24367,7 +24566,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24509,7 +24708,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24632,7 +24831,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24807,15 +25006,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24846,13 +25045,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24901,7 +25100,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -24940,6 +25139,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24947,6 +25147,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25014,8 +25215,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25187,7 +25388,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25225,7 +25426,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25339,7 +25540,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25353,7 +25554,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25374,14 +25575,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25411,7 +25612,7 @@ msgstr ""
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25435,11 +25636,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25465,7 +25666,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
@@ -25500,12 +25701,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25547,7 +25748,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25572,7 +25773,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25597,7 +25798,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25638,7 +25839,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25651,7 +25852,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25720,9 +25921,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25732,7 +25931,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25859,6 +26058,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25873,7 +26073,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25949,6 +26148,11 @@ msgstr ""
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25965,6 +26169,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26000,7 +26210,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26009,7 +26219,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26027,7 +26237,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26035,11 +26245,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26059,17 +26269,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26153,7 +26363,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26249,7 +26459,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26301,7 +26511,7 @@ msgid "The browser API key obtained from the Google Cloud Console under Warning: Customizations from other modules will be excluded.
" +msgstr "" + #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json @@ -9834,7 +9944,7 @@ msgstr "Eksporter dataene uten overskriftsnotater og kolonnebeskrivelser" msgid "Export without main header" msgstr "Eksporter uten hovedoverskrift" -#: frappe/public/js/frappe/data_import/data_exporter.js:247 +#: frappe/public/js/frappe/data_import/data_exporter.js:248 msgid "Export {0} records" msgstr "Eksporter {0} poster" @@ -9874,7 +9984,7 @@ 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:440 +#: frappe/public/js/frappe/views/workspace/workspace.js:488 msgid "External Link" msgstr "Eksterne lenker" @@ -9923,12 +10033,17 @@ msgstr "Antall feilede jobb" msgid "Failed Jobs" msgstr "Mislykkede jobber" +#. Label of a number card in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Failed Login Attempts" +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 "Mislykkede pålogginger (siste 30 dager)" -#: frappe/model/workflow.py:362 +#: frappe/model/workflow.py:383 msgid "Failed Transactions" msgstr "Mislykkede transaksjoner" @@ -9991,7 +10106,7 @@ msgstr "Mislyktes med å generere forhåndsvisning av serien" msgid "Failed to get method for command {0} with {1}" msgstr "Klarte ikke å hente metode for kommandoen {0} med {1}" -#: frappe/api/v2.py:46 +#: frappe/api/v2.py:61 msgid "Failed to get method {0} with {1}" msgstr "Klarte ikke å hente metoden {0} med {1}" @@ -10003,7 +10118,7 @@ msgstr "Kunne ikke hente sideinformasjon" msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "Kunne ikke importere virtuell dokumenttype (DocType) {}. Finnes kontrollerfilen?" -#: frappe/utils/image.py:75 +#: frappe/utils/image.py:70 msgid "Failed to optimize image: {0}" msgstr "Kunne ikke optimalisere bilde: {0}" @@ -10019,7 +10134,7 @@ msgstr "Kunne ikke gjengi emne: {}" msgid "Failed to request login to Frappe Cloud" msgstr "Kunne ikke be om pålogging til Frappe Cloud" -#: frappe/email/doctype/email_queue/email_queue.py:300 +#: frappe/email/doctype/email_queue/email_queue.py:301 msgid "Failed to send email with subject:" msgstr "Kunne ikke sende e-post med emne:" @@ -10061,7 +10176,7 @@ msgstr "FavIcon" msgid "Fax" msgstr "Faks" -#: frappe/public/js/frappe/form/templates/form_sidebar.html:51 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:72 msgid "Feedback" msgstr "Tilbakemelding" @@ -10121,8 +10236,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:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1909 +#: frappe/public/js/frappe/views/reports/query_report.js:237 +#: frappe/public/js/frappe/views/reports/query_report.js:1984 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -10132,7 +10247,7 @@ msgstr "Felt" msgid "Field \"route\" is mandatory for Web Views" msgstr "Feltet \"route\" er obligatorisk for webvisninger" -#: frappe/core/doctype/doctype/doctype.py:1541 +#: frappe/core/doctype/doctype/doctype.py:1555 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "Feltet «tittel» er obligatorisk hvis «Nettstedssøkefelt» er angitt." @@ -10140,7 +10255,7 @@ msgstr "Feltet «tittel» er obligatorisk hvis «Nettstedssøkefelt» er angitt. msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "Feltet \"verdi\" er påkrevet. Spesifiser verdien som skal oppdateres" -#: frappe/desk/search.py:255 +#: frappe/desk/search.py:262 msgid "Field{0} not found in {1}"
msgstr ""
@@ -10149,7 +10264,7 @@ msgstr ""
msgid "Field Description"
msgstr "Feltbeskrivelse"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Felt mangler"
@@ -10197,7 +10312,7 @@ msgstr "Felt som skal spores"
msgid "Field type cannot be changed for {0}"
msgstr "Felttypen kan ikke endres for {0}"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "Feltet {0} finnes ikke på {1}"
@@ -10205,11 +10320,11 @@ msgstr "Feltet {0} finnes ikke på {1}"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Feltet {0} refererer til en ikke-eksisterende dokumenttype (DocType) {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Felt {0} ble ikke funnet."
@@ -10231,7 +10346,7 @@ msgstr "Feltet {0} på dokumentet {1} er verken et mobilnummerfelt eller en kund
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Feltnavn"
@@ -10240,7 +10355,7 @@ msgstr "Feltnavn"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "Feltnavnet '{0}' er i konflikt med et {1} med navnet {2} i {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Feltnavn kalt {0} må finnes for å aktivere automatisk navngiving"
@@ -10248,7 +10363,7 @@ msgstr "Feltnavn kalt {0} må finnes for å aktivere automatisk navngiving"
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Feltnavn er begrenset til 64 tegn ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Feltnavn ikke angitt for egendefinert felt"
@@ -10264,7 +10379,7 @@ msgstr "Feltnavnet {0} vises flere ganger"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Feltnavn {0} kan ikke inneholde spesialtegn som {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Feltnavn {0} konflikterer med metaobjekt"
@@ -10312,7 +10427,7 @@ msgstr "Feltene `file_name` eller `file_url` må angis for fil"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Felt må være en liste eller tuple når as_list er aktivert"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Feltene må være en streng, liste, tupel, pypika Field eller pypika Function"
@@ -10336,7 +10451,7 @@ msgstr "Felt atskilt med komma (,) vil bli inkludert i «Søk etter»-listen i s
msgid "Fieldtype"
msgstr "Felttype"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Felttypen kan ikke endres fra {0} til {1}"
@@ -10412,12 +10527,12 @@ msgstr "Filnavnet kan ikke ha {0}"
msgid "File not attached"
msgstr "Fil ikke vedlagt"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Filstørrelsen oversteg den maksimalt tillatte størrelsen på {0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Filen er for stor"
@@ -10444,12 +10559,17 @@ msgstr "Filer"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filter"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10468,7 +10588,7 @@ msgstr "Metadata for filter"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Navn på filter"
@@ -10477,11 +10597,11 @@ msgstr "Navn på filter"
msgid "Filter Values"
msgstr "Filterverdier"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "Filterbetingelse mangler etter operatoren: {0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10500,10 +10620,14 @@ msgid "Filtered Records"
msgstr "Filtrerte poster"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Filtrert etter «{0}»"
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10527,7 +10651,7 @@ msgstr "Filtrert etter «{0}»"
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Filtre"
@@ -10558,10 +10682,6 @@ msgstr "Filtre JSON"
msgid "Filters Section"
msgstr "Filterseksjon"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Filtre brukt for {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filtre lagret"
@@ -10579,14 +10699,14 @@ msgstr "Filtre {0}"
msgid "Filters:"
msgstr "Filtre:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Finn '{0}' i ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Finn {0} i {1}"
@@ -10674,11 +10794,11 @@ msgstr "Flytpresisjon"
msgid "Fold"
msgstr "Fold"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Fold kan ikke være på slutten av skjemaet"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Fold må komme før et seksjonsskift"
@@ -10707,12 +10827,12 @@ msgstr "Mappen {0} er ikke tom"
msgid "Folio"
msgstr "Folio"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Følg"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Fulgt av"
@@ -10720,7 +10840,7 @@ msgstr "Fulgt av"
msgid "Following Report Filters have missing values:"
msgstr "Følgende rapportfiltre mangler verdier:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Følgende dokument {0}"
@@ -10728,7 +10848,7 @@ msgstr "Følgende dokument {0}"
msgid "Following fields are missing:"
msgstr "Følgende felt mangler:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Følgende felt har ugyldige verdier:"
@@ -10736,7 +10856,7 @@ msgstr "Følgende felt har ugyldige verdier:"
msgid "Following fields have missing values"
msgstr "Følgende felt mangler verdier"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Følgende felt mangler verdier:"
@@ -10805,7 +10925,7 @@ msgstr "Detaljer i bunntekst"
msgid "Footer HTML"
msgstr "HTML for bunntekst"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "Bunntekst-HTML satt fra vedlegg {0}"
@@ -10842,7 +10962,7 @@ msgstr "Mal for bunntekst"
msgid "Footer Template Values"
msgstr "Verdier for bunntekstmal"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "Bunnteksten er kanskje ikke synlig fordi {0} -alternativet er deaktivert"
@@ -10875,16 +10995,6 @@ msgstr "For dokumenttype (DocType)"
msgid "For Example: {} Open"
msgstr "For eksempel: {} Åpen"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "For Link-felt: angi dokumenttype (DocType) som målområde.\n"
-"For Select-felt: angi en liste med alternativer, ett på hver linje."
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10908,20 +11018,16 @@ msgstr "For verdi"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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 "Til sammenligning, bruk >5, <10 eller =324. For områder, bruk 5:10 (for verdier mellom 5 og 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 "Hvis du for eksempel avbryter og korrigerer INV004, blir det et nytt dokument; INV004-1. Dette hjelper deg med å holde oversikt over hver endring."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "For eksempel:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "For eksempel: Hvis du vil inkludere dokument-ID-en, bruk {0}"
@@ -10949,7 +11055,7 @@ msgstr "For flere adresser, skriv inn adressen på forskjellige linjer. f.eks. t
msgid "For updating, you can update only selective columns."
msgstr "Ved oppdatering kan du bare oppdatere enkelte kolonner."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "For {0} på nivå {1} i {2} på rad {3}"
@@ -10999,7 +11105,8 @@ msgstr "Glemt passord?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Skjema"
@@ -11178,7 +11285,7 @@ msgstr "Fredag"
msgid "From"
msgstr "Fra"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "Fra"
@@ -11199,7 +11306,7 @@ msgstr "Fra dato"
msgid "From Date Field"
msgstr "Felt for fradato"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Fra dokumenttype (DocType)"
@@ -11240,7 +11347,7 @@ msgstr "Full"
msgid "Full Name"
msgstr "Fullt navn"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Hel side"
@@ -11253,7 +11360,7 @@ msgstr "Full bredde"
#. 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/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funksjon"
@@ -11262,11 +11369,11 @@ msgstr "Funksjon"
msgid "Function Based On"
msgstr "Funksjon basert på"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "Funksjon {0} er ikke hvitelistet."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "Funksjon {0} krever argumenter, men ingen ble oppgitt"
@@ -11331,11 +11438,11 @@ msgstr "Generell"
msgid "Generate Keys"
msgstr "Generer nøkler"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Generer ny rapport"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Generer tilfeldig passord"
@@ -11345,8 +11452,8 @@ msgstr "Generer tilfeldig passord"
msgid "Generate Separate Documents For Each Assignee"
msgstr "Lag separate dokumenter for hver tilordnet person"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Generer sporings-URL"
@@ -11457,7 +11564,7 @@ msgstr "Globale hurtigtaster"
msgid "Global Unsubscribe"
msgstr "Global avmelding"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Gå"
@@ -11517,7 +11624,7 @@ msgstr "Gå til {0} liste"
msgid "Go to {0} Page"
msgstr "Gå til {0} side"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Mål"
@@ -11743,7 +11850,7 @@ msgstr "Grupper etter type"
msgid "Group By field is required to create a dashboard chart"
msgstr "Feltet Grupper etter er påkrevd for å opprette et oversiktspanel-diagram"
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "\"Grupper etter\" må være en streng"
@@ -11823,6 +11930,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "HTML redigerer"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11911,7 +12022,7 @@ msgstr "Topptekst"
msgid "Header HTML"
msgstr "HTML-kode for topptekst"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "Topptekst-HTML satt fra vedlegg {0}"
@@ -11947,7 +12058,7 @@ msgstr "Skript for topp- / bunntekst kan brukes til å legge til dynamisk atferd
msgid "Headers"
msgstr "Meldingshoder"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "Meldingshoder må være en ordbok (dict)"
@@ -11984,7 +12095,7 @@ msgstr "Hei,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12039,7 +12150,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Her er sporings-URL-en din"
@@ -12075,9 +12186,9 @@ msgstr "Skjult"
msgid "Hidden Fields"
msgstr "Skjulte felt"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "Skjulte kolonner inkluderer: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include: {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "OTP-oppsettet med OTP-appen ble ikke fullført. Kontakt administratoren."
@@ -18135,7 +18316,7 @@ msgstr "Forskyvning X"
msgid "Offset Y"
msgstr "Forskyvning Y"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "Offset må være et ikke-negativt heltall"
@@ -18143,7 +18324,7 @@ msgstr "Offset må være et ikke-negativt heltall"
msgid "Old Password"
msgstr "Gammelt passord"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Gamle og nye feltnavn er de samme."
@@ -18210,7 +18391,7 @@ msgstr "På eller etter"
msgid "On or Before"
msgstr "På eller før"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "På {0}skrev {1} :"
@@ -18254,7 +18435,7 @@ msgstr "Onboarding fullført"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Når de først er registrert, kan ikke dokumenter endres. De kan bare annulleres eller korrigeres (ved hjelp av nytt dokument, som f.eks. kredittnota)."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "Når du har angitt dette, vil brukerne bare kunne få tilgang til dokumenter (f.eks. blogginnlegg) der lenken finnes (f.eks. Blogger)."
@@ -18270,11 +18451,11 @@ msgstr "Registreringskode for engangspassord (OTP) fra {}"
msgid "One of"
msgstr "En av"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Maks 200 innsettinger per forespørsel"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Bare administrator kan slette e-postkøen"
@@ -18295,7 +18476,7 @@ msgstr "Bare administrator har tillatelse til å bruke opptakeren"
msgid "Only Allow Edit For"
msgstr "Tillat redigering kun for"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "De eneste alternativene som er tillatt for datafeltet, er"
@@ -18318,11 +18499,11 @@ msgstr "Bare Administrator for arbeidsområder kan redigere offentlige arbeidsom
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "Kun tillatt å eksportere tilpasninger i utviklermodus"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Bare utkast til dokumenter kan kasseres"
@@ -18365,7 +18546,7 @@ msgstr "Det er bare mottakeren som kan fullføre denne oppgaven."
msgid "Only {0} emailed reports are allowed per user."
msgstr "Bare {0} rapporter sendt via e-post er tillatt per bruker."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Oops! Noe gikk galt."
@@ -18388,8 +18569,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Åpne"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18425,6 +18606,10 @@ msgstr "Åpne referansedokument"
msgid "Open Settings"
msgstr "Åpne innstillinger"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Åpen kildekode-applikasjoner for nettet"
@@ -18439,7 +18624,7 @@ msgstr "Åpne URL i en ny fane"
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 "Åpne en dialogboks med obligatoriske felt for å opprette en ny oppføring raskt. Det må være minst ett obligatorisk felt for at det skal vises i dialogboksen."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Åpne en modul eller et verktøy"
@@ -18451,11 +18636,11 @@ msgstr "Åpne konsollen"
msgid "Open in a new tab"
msgstr "Åpne i ny fane"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Åpne listeelement"
@@ -18470,16 +18655,16 @@ msgstr "Åpne autentiseringsappen på mobiltelefonen din."
#: 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:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Åpne {0}"
@@ -18511,7 +18696,7 @@ msgstr "Operasjon"
msgid "Operator must be one of {0}"
msgstr "Operatøren må være en av {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18537,7 +18722,7 @@ msgstr "Alternativ 2"
msgid "Option 3"
msgstr "Alternativ 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "Alternativ {0} for feltet {1} er ikke en underordnet tabell"
@@ -18571,7 +18756,7 @@ msgstr "Valgfritt: Varselet sendes hvis dette uttrykket er sant"
msgid "Options"
msgstr "Alternativer"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Et felt av typen «Dynamic Link» må peke til et annet «Link»-felt der alternativene er satt til «DocType»"
@@ -18580,7 +18765,7 @@ msgstr "Et felt av typen «Dynamic Link» må peke til et annet «Link»-felt de
msgid "Options Help"
msgstr "Hjelp til alternativer"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Alternativene for Rating-feltet kan variere fra 3 til 10"
@@ -18588,7 +18773,7 @@ msgstr "Alternativene for Rating-feltet kan variere fra 3 til 10"
msgid "Options for select. Each option on a new line."
msgstr "Valgmuligheter. Hvert alternativ på en ny linje."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Alternativer for {0} må angis før standardverdien settes."
@@ -18596,7 +18781,7 @@ msgstr "Alternativer for {0} må angis før standardverdien settes."
msgid "Options is required for field {0} of type {1}"
msgstr "Alternativer er påkrevd for feltet {0} av typen {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Alternativer ikke angitt for lenkefeltet {0}"
@@ -18612,7 +18797,7 @@ msgstr "Oransje"
msgid "Order"
msgstr "Rekkefølge"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "Sorter etter må være en streng"
@@ -18632,8 +18817,12 @@ msgstr "Overskrift for organisasjonens historikk"
msgid "Orientation"
msgstr "Orientering"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Original verdi"
@@ -18708,18 +18897,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF-generering pågår"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF-generator"
@@ -18743,7 +18934,7 @@ msgstr "PDF-sidebredde (i mm)"
msgid "PDF Settings"
msgstr "PDF-innstillinger"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "PDF-generering mislyktes"
@@ -18751,11 +18942,11 @@ msgstr "PDF-generering mislyktes"
msgid "PDF generation failed because of broken image links"
msgstr "PDF-generering mislyktes på grunn av ødelagte bildelenker"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "PDF-generering fungerer kanskje ikke som forventet."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "PDF-utskrift via \"Rå utskrift\" støttes ikke."
@@ -18914,7 +19105,7 @@ msgstr "Sidebredde (i mm)"
msgid "Page has expired!"
msgstr "Siden er foreldet!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Sidehøyde og -bredde kan ikke være null"
@@ -18930,7 +19121,7 @@ msgstr "Side som skal vises på nettsiden\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:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Side {0} av {1}"
@@ -18941,7 +19132,7 @@ msgid "Parameter"
msgstr "Parameter"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Overordnet"
@@ -18974,11 +19165,11 @@ msgstr "Parent Field"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Overordnet felt (trestruktur)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Overordnet felt må være et gyldig feltnavn"
@@ -18992,7 +19183,7 @@ msgstr ""
msgid "Parent Label"
msgstr "Overordnet etikett"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "Mangler overordnet "
@@ -19017,11 +19208,11 @@ msgstr "Parent er navnet på dokumentet som dataene skal legges til i."
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr "Overordnet-til-underordnet eller underordnet-til-annen-underordnet gruppering er ikke tillatt."
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "Overordnet felt ikke spesifisert i {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "Parenttype, Parent og Parentfield er påkrevd for å sette inn en underordnet post"
@@ -19040,7 +19231,7 @@ msgstr "Delvis suksess"
msgid "Partially Sent"
msgstr "Delvis sendt"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Deltakerne"
@@ -19077,11 +19268,11 @@ msgstr "Passiv"
msgid "Password"
msgstr "Passord"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "E-post med passord sendt"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Tilbakestilling av passord"
@@ -19090,7 +19281,7 @@ msgstr "Tilbakestilling av passord"
msgid "Password Reset Link Generation Limit"
msgstr "Grense for generering av lenke til tilbakestilling av passord"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "Passordet kan ikke filtreres"
@@ -19119,11 +19310,11 @@ msgstr "Passord mangler i e-postkontoen"
msgid "Password not found for {0} {1} {2}"
msgstr "Finner ikke passord for {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Instruksjoner for tilbakestilling av passord er sendt til {} via e-post"
@@ -19135,7 +19326,7 @@ msgstr "Passordet er lagret"
msgid "Password size exceeded the maximum allowed size"
msgstr "Passordet er for langt"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "Passordet er for langt"
@@ -19197,7 +19388,7 @@ msgstr "Sti til serversertifikat"
msgid "Path to private Key File"
msgstr "Sti til privat nøkkelfil"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19282,15 +19473,15 @@ msgstr "Rettighetsnivå"
msgid "Permanent"
msgstr "Permanent"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "Permanent avbrutt {0}?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "Kast {0}permanent?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "Permanent registrert {0}?"
@@ -19298,7 +19489,11 @@ msgstr "Permanent registrert {0}?"
msgid "Permanently delete {0}?"
msgstr "Slette {0} permanent ?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Feil i tillatelse"
@@ -19308,12 +19503,12 @@ msgid "Permission Inspector"
msgstr "Rettighetskontroll"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Rettighetsnivå"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Rettighetsnivåer"
@@ -19322,11 +19517,6 @@ msgstr "Rettighetsnivåer"
msgid "Permission Log"
msgstr "Rettighetslogg"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "Administrasjon av rettigheter"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19357,7 +19547,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19368,13 +19557,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Rettigheter"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Feil i tillatelser"
@@ -19386,11 +19574,11 @@ msgstr "Tillatelser brukes automatisk på standardrapporter og søk."
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 "Rettigeter angis for roller og dokumenttyper (DocType) ved å angi rettigheter som Lese, Skrive, Opprette, Slette, Registrere, Avbryte, Endre, Rapportere, Importere, Eksportere, Skrive ut, E-poste og Angi brukertillatelser."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "Tillatelser på høyere nivåer er feltnivåtillatelser. Alle felt har et tillatelsesnivå angitt for seg, og reglene som er definert for disse tillatelsene gjelder for feltet. Dette er nyttig hvis du vil skjule eller gjøre bestemte felt skrivebeskyttet for bestemte roller."
-#: frappe/core/page/permission_manager/permission_manager_help.html:24
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Rettigheter på nivå 0 er dokumentnivå-rettigheter, dvs. de er primære for tilgang til dokumentet"
@@ -19460,13 +19648,13 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefonnr."
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonnummeret {0} satt i feltet {1} er ikke gyldig."
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Velg kolonner"
@@ -19524,7 +19712,7 @@ msgstr "Dupliser dette nettstedstemaet for å tilpasse det."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Installer ldap3 biblioteket via pip for å bruke ldap-funksjonalitet."
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Angi diagram"
@@ -19540,7 +19728,7 @@ msgstr "Legg til et emne i e-posten din"
msgid "Please add a valid comment."
msgstr "Legg til en gyldig kommentar."
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Be administratoren om å bekrefte registreringen din"
@@ -19548,11 +19736,11 @@ msgstr "Be administratoren om å bekrefte registreringen din"
msgid "Please attach a file first."
msgstr "Legg ved en fil først."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Legg ved en bildefil for å angi HTML for bunntekst."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Legg ved en bildefil for å sette HTML for brevhode."
@@ -19564,11 +19752,11 @@ msgstr "Legg ved pakken"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Sjekk filterverdiene som er angitt for oversiktspanel-diagram: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Sjekk verdien av \"Hent fra\" som er angitt for feltet {0}"
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Sjekk e-post for bekreftelse"
@@ -19600,7 +19788,7 @@ msgstr "Klikk på følgende lenke for å angi ditt nye passord"
msgid "Please confirm your action to {0} this document."
msgstr "Bekreft at du vil {0} dette dokumentet."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Kontakt systembehandleren for å installere riktig versjon."
@@ -19630,10 +19818,10 @@ msgstr "Aktiver minst én sosial påloggingsnøkkel eller LDAP- eller logg inn m
#: 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Aktiver popup-vinduer"
@@ -19646,7 +19834,7 @@ msgstr "Aktiver popup-vinduer i nettleseren din"
msgid "Please enable {} before continuing."
msgstr "Aktiver {} før du fortsetter."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Sørg for at profilen din har en e-postadresse"
@@ -19720,15 +19908,15 @@ msgstr "Logg inn for å legge inn en kommentar."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Sørg for at referansedokumentene ikke er sirkulært lenket."
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Oppdater for å få det nyeste dokumentet."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Skrivertilordningen i skriverinnstillingene og prøv på nytt."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Lagre før vedlegging."
@@ -19744,7 +19932,7 @@ msgstr "Lagre dokumentet før du fjerner tildeling"
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Lagre rapporten først"
@@ -19764,7 +19952,7 @@ msgstr "Velg enhetstype først"
msgid "Please select Minimum Password Score"
msgstr "Velg minimum passordpoengsum"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Velg X- og Y-feltene"
@@ -19772,7 +19960,7 @@ msgstr "Velg X- og Y-feltene"
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Velg en landskode for felt {1}."
@@ -19822,11 +20010,11 @@ msgstr "Velg {0}"
msgid "Please set Email Address"
msgstr "Angi e-postadresse"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Angi en skrivertilordning for dette utskriftsformatet i skriverinnstillingene"
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Angi filtre"
@@ -19834,7 +20022,7 @@ msgstr "Angi filtre"
msgid "Please set filters value in Report Filter table."
msgstr "Angi filterverdi i rapportfiltertabellen."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Angi dokumenttypen (DocType)"
@@ -19854,7 +20042,7 @@ msgstr "Konfigurer SMS før du angir det som autentiseringsmetode, via SMS-innst
msgid "Please setup a message first"
msgstr "Opprett en melding først"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Konfigurer standard utgående e-postkonto fra Innstillinger > E-postkonto"
@@ -19866,7 +20054,7 @@ msgstr "Konfigurer standard utgående e-postkonto fra Verktøy > E-postkonto"
msgid "Please specify"
msgstr "Spesifiser"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Spesifiser en gyldig overordnet dokumenttype (DocType) for {0}"
@@ -19894,7 +20082,7 @@ msgstr "Spesifiser hvilket datetime-felt som må sjekkes"
msgid "Please specify which value field must be checked"
msgstr "Spesifiser hvilket verdifelt som skal krysses av"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Prøv igjen"
@@ -20015,11 +20203,11 @@ msgstr "Tidsstempel for innlegg"
msgid "Precision"
msgstr "Presisjon"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "Presisjonen ({0}) for {1} kan ikke være større enn lengden ({2})."
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Presisjonen bør være mellom 1 og 6"
@@ -20071,11 +20259,11 @@ msgstr "Bruker av forhåndsgenerert rapport"
msgid "Prepared report render failed"
msgstr "Rendring av forhåndsgenerert rapport feilet"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Forhåndsgenerert rapport"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Sett malen øverst i e-postmeldingen"
@@ -20083,7 +20271,7 @@ msgstr "Sett malen øverst i e-postmeldingen"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Trykk Alt-tasten for å aktivere flere snarveier i menyen og sidefeltet"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Trykk Enter for å lagre"
@@ -20101,7 +20289,7 @@ msgstr "Trykk Enter for å lagre"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Forhåndsvisning"
@@ -20145,16 +20333,16 @@ msgstr "Forhåndsvisning:"
msgid "Previous"
msgstr "Tidligere"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Tidligere"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Tidligere registrering"
@@ -20207,19 +20395,19 @@ msgstr "Primærnøkkelen til dokumenttypen (DocType) {0} kan ikke endres da det
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Skriv ut"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Skriv ut"
@@ -20237,8 +20425,9 @@ msgstr "Skriv ut dokument"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20282,7 +20471,7 @@ msgstr "Hjelp med utskriftsformat"
msgid "Print Format Type"
msgstr "Type utskriftsformat"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "Utskriftsformat ikke funnet"
@@ -20315,11 +20504,11 @@ msgstr "Skjul i utskrift"
msgid "Print Hide If No Value"
msgstr "Skjul i utskrift hvis ingen verdi"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Utskriftsspråk"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Utskrift sendt til trykkeriet!"
@@ -20332,8 +20521,8 @@ msgstr "Utskriftsserver"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Utskriftsinnstillinger"
@@ -20372,7 +20561,7 @@ msgstr "Utskriftsbredde"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "Skriv ut feltets bredde, hvis feltet er en kolonne i en tabell"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Skriv ut dokument"
@@ -20381,11 +20570,11 @@ msgstr "Skriv ut dokument"
msgid "Print with letterhead"
msgstr "Skriv ut med brevhode"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Skriver"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Skrivertilordning"
@@ -20395,15 +20584,15 @@ msgstr "Skrivertilordning"
msgid "Printer Name"
msgstr "Skriverens navn"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Skriverinnstillinger"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Skrivertilordning er ikke angitt."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Utskriften mislyktes"
@@ -20452,7 +20641,7 @@ msgstr "ProTips: Legg til Referanse: {{ reference_doctype }} {{ reference_
msgid "Proceed"
msgstr "Fortsett"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Fortsett uansett"
@@ -20492,9 +20681,9 @@ msgid "Project"
msgstr "Prosjekt"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "Egenskap"
@@ -20564,7 +20753,7 @@ msgstr "Leverandørens navn"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Offentlig"
@@ -20714,7 +20903,7 @@ msgstr "QR-kode"
msgid "QR Code for Login Verification"
msgstr "QR-kode for innloggingsbekreftelse"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ Tray – feil:"
@@ -20776,7 +20965,7 @@ msgstr "Spørringen må være av typen SELECT eller skrivebeskyttet WITH."
msgid "Queue"
msgstr "Kø"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "Køen er overbelastet"
@@ -20797,7 +20986,7 @@ msgstr "Køtype(r)"
msgid "Queue in Background (BETA)"
msgstr "Kø i bakgrunnen (BETA)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Køen bør være en av {0}"
@@ -20838,7 +21027,7 @@ msgstr "Satt i kø for sikkerhetskopiering. Du vil motta en e-post med nedlastin
msgid "Queues"
msgstr "Køer"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "Sette {0} i kø for registrering"
@@ -20930,6 +21119,15 @@ msgstr "Rå kommandoer"
msgid "Raw Email"
msgstr "Rå e-post"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20938,7 +21136,7 @@ msgstr "Rå e-post"
msgid "Raw Printing"
msgstr "Rå utskrift"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Innstilling for rå utskrift"
@@ -20956,7 +21154,7 @@ msgstr "Sv:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Sv: {0}"
@@ -20967,11 +21165,12 @@ msgstr "Sv: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21008,7 +21207,7 @@ msgstr "Skrivebeskyttet avhenger av"
msgid "Read Only Depends On (JS)"
msgstr "Skrivebeskyttet avhengig av (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "I skrivebeskyttet modus"
@@ -21048,7 +21247,7 @@ msgstr "Sanntid (SocketIO)"
msgid "Reason"
msgstr "Årsak"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Gjenoppbygg"
@@ -21090,7 +21289,7 @@ msgstr "Mottakerparameter"
msgid "Recent years are easy to guess."
msgstr "De siste årene er enkle å gjette seg til."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Nylige"
@@ -21141,7 +21340,7 @@ msgstr "Foreslått indeks for opptaker"
msgid "Records for following doctypes will be filtered"
msgstr "Oppføringer for følgende dokumenttyper (DocType) vil bli filtrert"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Rekursiv henting fra"
@@ -21207,12 +21406,12 @@ msgstr "Omdirigeringer"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis-mellomlager kjører ikke. Kontakt administrator eller brukerstøtte"
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Gjenta"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Gjenta siste handling"
@@ -21428,12 +21627,12 @@ msgstr "Referanse: {0} {1}"
msgid "Referrer"
msgstr "Henviser"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21450,7 +21649,7 @@ msgstr "Oppdater alle"
msgid "Refresh Google Sheet"
msgstr "Oppdater Google Sheet"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "Oppdater forhåndsvisning av utskrift"
@@ -21465,7 +21664,7 @@ msgstr "Oppdater forhåndsvisning av utskrift"
msgid "Refresh Token"
msgstr "Oppdater token"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Oppdaterer"
@@ -21476,7 +21675,7 @@ msgstr "Oppdaterer"
msgid "Refreshing..."
msgstr "Oppdaterer..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Registrert, men deaktivert"
@@ -21522,10 +21721,8 @@ msgstr "Koble kommunikasjon på nytt"
msgid "Relinked"
msgstr "Koblet på nytt"
-#. 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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Last inn på nytt"
@@ -21537,7 +21734,7 @@ msgstr "Last inn fil på nytt"
msgid "Reload List"
msgstr "Last inn liste på nytt"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Last inn rapporten på nytt"
@@ -21556,7 +21753,7 @@ msgstr "Husk sist valgte verdi"
msgid "Remind At"
msgstr "Påminn på"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Påminn meg"
@@ -21636,9 +21833,9 @@ msgid "Removed"
msgstr "Fjernet"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21666,7 +21863,7 @@ msgstr "Gjengi etiketter til venstre og verdier til høyre i denne delen"
msgid "Reopen"
msgstr "Gjenåpne"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Gjenta"
@@ -21713,7 +21910,7 @@ msgstr "Gjentakelser som «aaa» er lette å gjette"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Gjentakelser som «abcabcabc» er bare litt vanskeligere å gjette enn «abc»"
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Gjentar {0}"
@@ -21776,6 +21973,7 @@ msgstr "Svar alle"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21790,10 +21988,9 @@ msgstr "Svar alle"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Rapport"
@@ -21862,7 +22059,7 @@ msgstr "Rapportansvarlig"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Rapportnavn"
@@ -21896,14 +22093,10 @@ msgstr "Rapporttype"
msgid "Report View"
msgstr "Rapportvisning"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Rapporter feil"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Rapport kan ikke settes for DocType-er av typen Single."
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21914,7 +22107,7 @@ msgstr "Rapporten inneholder ingen data. Vennligst endre filtrene eller rapportn
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Rapporten har ingen numeriske felt. Vennligst endre rapportnavnet."
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Rapport påbegynt, klikk for å se status"
@@ -21926,7 +22119,7 @@ msgstr "Rapportgrensen er nådd"
msgid "Report timed out."
msgstr "Rapporten ble tidsavbrutt."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Arbeidsflyten ble vellykket oppdatert"
@@ -21934,12 +22127,12 @@ msgstr "Arbeidsflyten ble vellykket oppdatert"
msgid "Report was not saved (there were errors)"
msgstr "Rapporten ble ikke lagret (det oppstod feil)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Rapporten med mer enn 10 kolonner ser bedre ut i landskapsmodus."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Rapport {0}"
@@ -21962,7 +22155,7 @@ msgstr "Rapport:"
#. 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Rapporter"
@@ -21970,7 +22163,7 @@ msgstr "Rapporter"
msgid "Reports & Masters"
msgstr "Rapporter og stamdata"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Det ligger allerede rapporter i køen"
@@ -22029,13 +22222,13 @@ msgstr "Forespørselsmetode"
msgid "Request Structure"
msgstr "Forespørselsstruktur"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "Forespørselen ble tidsavbrutt"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Tidsavbrudd for forespørsel"
@@ -22151,7 +22344,7 @@ msgstr "Tilbakestill til standard"
msgid "Reset sorting"
msgstr "Tilbakestill sortering"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Tilbakestill til standardinnstilling"
@@ -22209,7 +22402,7 @@ msgstr ""
msgid "Response Type"
msgstr "Responstype"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Resten av dagen"
@@ -22218,7 +22411,7 @@ msgstr "Resten av dagen"
msgid "Restore"
msgstr "Gjenopprett"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Gjenopprett opprinnelige tillatelser"
@@ -22240,6 +22433,11 @@ msgstr "Gjenoppretter slettet dokument"
msgid "Restrict IP"
msgstr "Begrens IP-adresse"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22267,8 +22465,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Restriksjoner"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Resultat"
@@ -22315,9 +22513,15 @@ msgstr "Tilbakekalt"
msgid "Rich Text"
msgstr "Rik tekst"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22352,8 +22556,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22368,8 +22570,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22413,7 +22614,7 @@ msgstr "Rolletillatelser"
msgid "Role Permissions Manager"
msgstr "Ansvarlig for rolletillatelser"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Ansvarlig for rolletillatelser"
@@ -22421,11 +22622,9 @@ msgstr "Ansvarlig for rolletillatelser"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Modulprofil"
@@ -22447,7 +22646,7 @@ msgstr "Replikering av roller"
msgid "Role and Level"
msgstr "Rolle og nivå"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Rollen er angitt i henhold til brukertypen {0}"
@@ -22566,20 +22765,20 @@ msgstr "Omdirigeringer av stier"
msgid "Route: Example \"/app\""
msgstr "Sti: for eksempel \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Rad"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "Rad #"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Rad # {0}: En bruker som ikke er administrator kan ikke angi rollen {1} til den egendefinerte dokumenttypen (DocType)"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Rad #{0}:"
@@ -22606,7 +22805,7 @@ msgstr "Radnavn"
msgid "Row Number"
msgstr "Radnummer"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Radverdier endret"
@@ -22625,14 +22824,14 @@ msgstr "Rad {0}: Å aktivere \"Tillat ved registrering\" er sperret for standard
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Rader lagt til"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Rader fjernet"
@@ -22655,7 +22854,7 @@ msgstr "Regel"
msgid "Rule Conditions"
msgstr "Regelbetingelser"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Regelen finnes allerede for denne kombinasjonen av dokumenttype (DocType)/rolle/rettighetsnivå/‘hvis eier’."
@@ -22735,7 +22934,7 @@ msgstr "SMS-innstillinger"
msgid "SMS sent successfully"
msgstr "SMS vellykket sendt"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS-en ble ikke sendt. Ta kontakt med administratoren."
@@ -22769,7 +22968,7 @@ msgstr "SQL-utdata"
msgid "SQL Queries"
msgstr "SQL-spørringer"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22841,22 +23040,23 @@ msgstr "Lørdag"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22869,7 +23069,7 @@ msgid "Save Anyway"
msgstr "Lagre uansett"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Lagre som"
@@ -22877,7 +23077,7 @@ msgstr "Lagre som"
msgid "Save Customizations"
msgstr "Lagre tilpasninger"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Lagre rapport"
@@ -22895,20 +23095,20 @@ msgid "Save the document."
msgstr "Lagre dokumentet."
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Lagret"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Lagrede filtre"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Lagrer"
@@ -22917,11 +23117,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Lagrer"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Lagrer egendefinering..."
@@ -23125,7 +23325,7 @@ msgstr "Skript"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23145,7 +23345,7 @@ msgstr "Søkefelt"
msgid "Search Fields"
msgstr "Søkefelt"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Søkehjelp"
@@ -23163,7 +23363,7 @@ msgstr "Søkeresultater"
msgid "Search by filename or extension"
msgstr "Søk med filnavn eller filtype"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Søkefeltet {0} er ikke gyldig"
@@ -23180,12 +23380,12 @@ msgstr "Søk etter felttyper..."
msgid "Search for anything"
msgstr "Søk etter hva som helst"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "Søk etter {0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Søk i en dokumenttype (DocType)"
@@ -23257,15 +23457,15 @@ msgstr "Seksjonen må ha minst én kolonne"
msgid "Security Settings"
msgstr "Sikkerhetsinnstillinger"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Se all aktivitet"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Se alle tidligere rapporter."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Se på nettstedet"
@@ -23315,24 +23515,26 @@ msgstr "Sett av"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Velg"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Velg alle"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23348,7 +23550,7 @@ msgid "Select Column"
msgstr "Velg kolonne"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
-#: frappe/public/js/frappe/form/print_utils.js:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Velg kolonner"
@@ -23392,13 +23594,13 @@ msgstr "Velg dokumenttype (DocType)"
msgid "Select Document Type or Role to start."
msgstr "Velg dokumenttype (DocType) og rolle for å begynne."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
msgstr "Velg dokumenttyper (DocType) for å angi hvilke brukertillatelser som brukes til å begrense tilgang."
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Velg felt"
@@ -23407,7 +23609,7 @@ msgstr "Velg felt"
msgid "Select Field..."
msgstr "Velg felt..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Velg felter"
@@ -23416,19 +23618,19 @@ msgstr "Velg felter"
msgid "Select Fields (Up to {0})"
msgstr "Velg felt (opptil {0})"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Velg felt som skal settes inn"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Velg felt som skal oppdateres"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Velg filtre"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Velg Google Kalender som hendelsen skal synkroniseres med."
@@ -23453,16 +23655,16 @@ msgstr "Velg språk"
msgid "Select List View"
msgstr "Velg listevisning"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Velg obligatorisk"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Velg modul"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Velg nettverksskriver"
@@ -23472,7 +23674,7 @@ msgid "Select Page"
msgstr "Velg side"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Velg utskriftsformat"
@@ -23508,12 +23710,6 @@ msgstr "Velg arbeidsflyt"
msgid "Select Workspace"
msgstr "Velg arbeidsområde"
-#. 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 "Velg arbeidsområder"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Velg en logo først."
@@ -23530,11 +23726,11 @@ msgstr "Velg et felt for å redigere egenskapene."
msgid "Select a group {0} first."
msgstr "Velg gruppe {0} først."
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Velg et gyldig avsenderfelt for å opprette dokumenter fra e-post"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Velg et gyldig emnefelt for å opprette dokumenter fra e-post"
@@ -23560,13 +23756,13 @@ msgstr "Velg minst én oppføring for utskrift"
msgid "Select atleast 2 actions"
msgstr "Velg minst 2 handlinger"
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Velg listeelement"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Velg flere listeelementer"
@@ -23600,7 +23796,7 @@ msgstr "Velg to versjoner for å se differansen."
msgid "Select {0}"
msgstr "Velg {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Må godkjennes av en annen person"
@@ -23630,6 +23826,11 @@ msgstr "Send etter"
msgid "Send Alert On"
msgstr "Send varsel på"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23682,7 +23883,7 @@ msgstr "Send nå"
msgid "Send Print as PDF"
msgstr "Send utskrift som PDF"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Send lesebekreftelse"
@@ -23745,7 +23946,7 @@ msgstr "Send forespørsler til denne e-postadressen"
msgid "Send login link"
msgstr "Send påloggingslenke"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Send meg en kopi"
@@ -23784,7 +23985,7 @@ msgstr "Avsenders e-postadresse"
msgid "Sender Email Field"
msgstr "Felt for avsenders e-postadresse"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Avsenderfeltet må være av typen e-postadresse"
@@ -23878,7 +24079,7 @@ msgstr "Løpenummerserien for {} er oppdatert"
msgid "Series counter for {} updated to {} successfully"
msgstr "Telleren for løpenummerserier for {} er oppdatert til {}"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Løpenummerserien {0} er allerede brukt i {1}"
@@ -23888,7 +24089,7 @@ msgstr "Løpenummerserien {0} er allerede brukt i {1}"
msgid "Server Action"
msgstr "Serverhandling"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverfeil"
@@ -23915,11 +24116,15 @@ msgstr "Serverskript er deaktivert. Aktiver serverskript fra benkekonfigurasjone
msgid "Server Scripts feature is not available on this site."
msgstr "Serverskript-funksjonen er ikke tilgjengelig på dette nettstedet."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "Serveren klarte ikke å behandle denne forespørselen på grunn av en samtidig motstridende forespørsel. Vennligst prøv igjen."
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "Serveren var for opptatt til å behandle denne forespørselen. Vennligst prøv igjen."
@@ -23947,16 +24152,14 @@ msgstr "Øktstandard"
msgid "Session Default Settings"
msgstr "Standardinnstillinger for økt"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Øktstandarder"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Standardinnstillinger for økt er lagret"
@@ -23997,7 +24200,7 @@ msgstr "Angi"
msgid "Set Banner from Image"
msgstr "Sett banner fra bilde"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Sett diagram"
@@ -24023,7 +24226,7 @@ msgstr "Angi filtere"
msgid "Set Filters for {0}"
msgstr "Angi filtre for {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Angi nivå"
@@ -24066,8 +24269,8 @@ msgstr "Rediger egenskaper"
msgid "Set Property After Alert"
msgstr "Angi egenskap etter varsel"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Angi antall"
@@ -24087,12 +24290,12 @@ msgstr "Legg til brukerrettigheter"
msgid "Set Value"
msgstr "Ny verdi"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Sett alle til private"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Sett alle til offentlige"
@@ -24220,8 +24423,8 @@ msgstr "Sette opp systemet ditt"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24244,11 +24447,11 @@ msgstr "Innstillinger for \"Om oss\"-siden"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Oppsett"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Oppsett > Tilpass skjema"
@@ -24256,12 +24459,12 @@ msgstr "Oppsett > Tilpass skjema"
msgid "Setup > User"
msgstr "Oppsett > Bruker"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Oppsett > Brukertillatelser"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Konfigurer automatisk e-post"
@@ -24290,13 +24493,14 @@ msgstr "Oppsettet mislyktes"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Del"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Del med"
@@ -24304,7 +24508,7 @@ msgstr "Del med"
msgid "Share this document with"
msgstr "Del dette dokumentet med"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Del {0} med"
@@ -24364,16 +24568,10 @@ msgstr "Vis absolutt datoperiode i tidslinjen"
msgid "Show Absolute Values"
msgstr "Vis absolutte verdier"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Vis alle"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24419,7 +24617,7 @@ msgstr "Vis feil"
msgid "Show External Link Warning"
msgstr "Vis ekstern kobling advarsel"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Vis feltnavn (klikk for å kopiere til utklippstavlen)"
@@ -24471,7 +24669,7 @@ msgstr "Vis språkvelger"
msgid "Show Line Breaks after Sections"
msgstr "Vis linjeskift etter seksjoner"
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Vis lenker"
@@ -24591,7 +24789,7 @@ msgstr "Vis helger"
msgid "Show account deletion link in My Account page"
msgstr "Vis lenke for sletting av konto på siden Min konto"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Vis alle versjoner"
@@ -24733,7 +24931,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr "Påmelding og bekreftelse"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Påmelding er deaktivert"
@@ -24856,7 +25054,7 @@ msgstr "Hopper over kolonne uten navn"
msgid "Skipping column {0}"
msgstr "Hopper over kolonne {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "Hopper over synkronisering av fixture for dokumenttype (DocType) {0} fra fil {1}"
@@ -25031,15 +25229,15 @@ msgstr "Noe gikk galt"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Noe gikk galt under genereringen av token. Klikk på {0} for å generere en ny."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Noe gikk galt."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Beklager! Fant ikke det du lette etter."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Beklager! Ditt rettighetsnivå hindrer visning av denne siden."
@@ -25070,13 +25268,13 @@ msgstr "Sorteringsalternativer"
msgid "Sort Order"
msgstr "Sorteringsrekkefølge"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "Sorteringsfelt {0} må være et gyldig feltnavn"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25125,7 +25323,7 @@ msgstr "Utløser handlinger i en bakgrunnsjobb"
msgid "Special Characters are not allowed"
msgstr "Spesialtegn er ikke tillatt"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Spesialtegn unntatt '-', '#', '.', '/', '{{' and '}}' er ikke tillatt i nummerserier {0}"
@@ -25164,6 +25362,7 @@ msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25171,6 +25370,7 @@ msgstr "Stack Trace"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25238,8 +25438,8 @@ msgstr "Standard brukertype {0} kan ikke slettes."
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Start"
@@ -25411,7 +25611,7 @@ msgstr "Tidsintervall for statistikk"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25449,7 +25649,7 @@ msgstr "Fremgangsmåte for å bekrefte påloggingen din"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "Klebrig"
@@ -25563,7 +25763,7 @@ msgstr "Underdomenet"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Emne"
@@ -25577,7 +25777,7 @@ msgstr "Emne"
msgid "Subject Field"
msgstr "Emnefelt"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Emnefeltets type bør være Data, Tekst, Lang tekst, Liten tekst, Tekstredigerer"
@@ -25598,14 +25798,14 @@ msgstr "Kø for innsending"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Registrer"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Registrer"
@@ -25635,7 +25835,7 @@ msgstr "Registrer"
msgid "Submit After Import"
msgstr "Registrer etter import"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Registrer et problem"
@@ -25659,11 +25859,11 @@ msgstr "Registrer ved opprettelse"
msgid "Submit this document to complete this step."
msgstr "Registrer dette dokumentet for å fullføre dette trinnet."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Registrer dette dokumentet for å bekrefte"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Registrer {0} dokumenter?"
@@ -25689,7 +25889,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Registrering"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Registrering {0}"
@@ -25724,12 +25924,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25771,7 +25971,7 @@ msgstr "Suksesstittel"
msgid "Successful Job Count"
msgstr "Antall vellykkede jobber"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Vellykkede transaksjoner"
@@ -25796,7 +25996,7 @@ msgstr "Vellykket import av {0} ut av {1}-oppføringer."
msgid "Successfully reset onboarding status for all users."
msgstr "Vellykket tilbakestilling av onboarding-status for alle brukere."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25821,7 +26021,7 @@ msgstr "Foreslå optimaliseringer"
msgid "Suggested Indexes"
msgstr "Foreslåtte indekser"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Foreslått brukernavn: {0}"
@@ -25862,7 +26062,7 @@ msgstr "Søndag"
msgid "Suspend Sending"
msgstr "Sett sending på pause"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Bytt kamera"
@@ -25875,7 +26075,7 @@ msgstr "Bytt tema"
msgid "Switch To Desk"
msgstr "Bytt til skrivebord"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Bytter Kamera"
@@ -25944,9 +26144,7 @@ msgid "Syntax Error"
msgstr "Syntaksfeil"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "System"
@@ -25956,7 +26154,7 @@ msgstr "System"
msgid "System Console"
msgstr "Systemkonsoll"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "Systemgenererte felt kan ikke gis nytt navn"
@@ -26083,6 +26281,7 @@ msgstr "Systemlogger"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26097,7 +26296,6 @@ msgstr "Systemlogger"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26173,6 +26371,11 @@ msgstr "Systemside"
msgid "System Settings"
msgstr "Systeminnstillinger"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26189,6 +26392,12 @@ msgstr "T"
msgid "TOS URI"
msgstr "TOS-URI"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26224,7 +26433,7 @@ msgstr "Tabell"
msgid "Table Break"
msgstr "Tabell-oppdeling"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Tabellfelt"
@@ -26233,7 +26442,7 @@ msgstr "Tabellfelt"
msgid "Table Fieldname"
msgstr "Feltnavn for tabell"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Feltnavn for tabell mangler"
@@ -26251,7 +26460,7 @@ msgstr "Tabell-HTML"
msgid "Table MultiSelect"
msgstr "Flervalg av tabeller"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26259,11 +26468,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr "Tabellen er forkortet"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Tabellen er oppdatert"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Tabell {0} kan ikke være tom"
@@ -26283,17 +26492,17 @@ msgid "Tag Link"
msgstr "Lenke for stikkord"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Stikkord"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Ta bilde"
@@ -26377,7 +26586,7 @@ msgstr "Advarsler om maler"
msgid "Templates"
msgstr "Maler"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Midlertidig deaktivert"
@@ -26475,7 +26684,7 @@ msgstr "Takk"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Automatisk gjentakelse for dette dokumentet er deaktivert."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "CSV-formatet skiller mellom store og små bokstaver"
@@ -26531,7 +26740,7 @@ msgstr "Nettleserens API-nøkkel hentet fra Google Cloud Console under "
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr "Endringene er tilbakeført."
@@ -26547,7 +26756,7 @@ msgstr "Kommentaren kan ikke være tom"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "Innholdet i denne e-posten er strengt konfidensielt. Vennligst ikke videresend denne e-posten til noen."
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Antallet som vises er et estimert antall. Klikk her for å se det nøyaktige antallet."
@@ -26573,11 +26782,15 @@ msgstr "Dokumentet har blitt tilordnet til {0}"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "Den valgte dokumenttypen er en underordnet tabell, så den overordnede dokumenttypen (DocType) er obligatorisk."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr ""
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr ""
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr ""
@@ -26644,6 +26857,10 @@ msgstr "Antall sekunder til forespørselen utløper"
msgid "The password of your account has expired."
msgstr "Passordet til kontoen din har utløpt."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+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 "Prosessen for sletting av {0} -data knyttet til {1} er igangsatt."
@@ -26661,15 +26878,15 @@ msgstr "Prosjektnummeret hentet fra Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "Rapporten du ba om, er generert.
Klikk her for å laste ned:
{0}
Denne lenken utløper om {1} timer."
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "Lenken for tilbakestilling av passord er utløpt"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr "Lenken for tilbakestilling av passord er enten brukt før eller ugyldig"
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Ressursen du leter etter er ikke tilgjengelig"
@@ -26681,7 +26898,7 @@ msgstr "Rollen {0} bør være en egendefinert rolle."
msgid "The selected document {0} is not a {1}."
msgstr "Det valgte dokumentet {0} er ikke et {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Systemet oppdateres. Vennligst oppdater på nytt om noen få øyeblikk."
@@ -26693,6 +26910,42 @@ msgstr "Systemet tilbyr mange forhåndsdefinerte roller. Du kan legge til nye ro
msgid "The total number of user document types limit has been crossed."
msgstr "Grensen for totalt antall bruker-dokumenttyper (DocType) er overskredet."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 "Verdien du limte inn var {0} tegn lang. Maks tillatte tegn er {1}."
@@ -26734,7 +26987,7 @@ msgstr "Tema-URL"
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 "Det finnes dokumenter som har arbeidsflytstatus som ikke finnes i denne arbeidsflyten. Det anbefales at du legger til disse tilstandene i arbeidsflyten og endrer tilstandene før du fjerner dem."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Det er ingen kommende hendelser for deg."
@@ -26742,7 +26995,7 @@ msgstr "Det er ingen kommende hendelser for deg."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Det er ingen {0} for dette {1}. Hvorfor ikke starte en!"
-#: frappe/public/js/frappe/views/reports/query_report.js:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "Det finnes allerede {0} med de samme filtrene i køen:"
@@ -26751,7 +27004,7 @@ msgstr "Det finnes allerede {0} med de samme filtrene i køen:"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "Det kan bare være 9 sideskiftfelt i et webskjema"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "Det kan bare være én fold i et skjema"
@@ -26763,11 +27016,11 @@ msgstr "Det er en feil i adressemalen din {0}"
msgid "There is no data to be exported"
msgstr "Det er ingen data å eksportere"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "Det finnes ingen oppgave som heter \"{}\""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Det er ikke noe nytt å vise deg akkurat nå."
@@ -26775,7 +27028,7 @@ msgstr "Det er ikke noe nytt å vise deg akkurat nå."
msgid "There is some problem with the file url: {0}"
msgstr "Det er et problem med fil-URL-en: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "Det finnes allerede {0} med de samme filtrene i køen:"
@@ -26791,7 +27044,7 @@ msgstr "Det oppsto en feil under oppbyggingen av denne siden"
msgid "There was an error saving filters"
msgstr "Det oppsto en feil under lagring av filtre"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Det oppstod feil"
@@ -26799,11 +27052,11 @@ msgstr "Det oppstod feil"
msgid "There were errors while creating the document. Please try again."
msgstr "Det oppsto feil under oppretting av dokumentet. Prøv på nytt."
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "Det oppsto feil under sending av e-post. Prøv på nytt."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Det oppsto noen feil under angivelse av navnet. Kontakt administratoren."
@@ -26872,11 +27125,11 @@ msgstr "I år"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Denne handlingen kan ikke angres. Vil du fortsette?"
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Denne handlingen er kun tillatt for {}"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Dette kan ikke angres."
@@ -26900,7 +27153,7 @@ msgstr "Dette diagrammet vil være tilgjengelig for alle brukere hvis dette er a
msgid "This doctype has no orphan fields to trim"
msgstr "Denne dokumenttypen har ingen foreldreløse felt å trimme"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Denne dokumenttypen (DocType) har utestående migreringer. Kjør \"bench migrate\" før du endrer dokumenttype, for å unngå at endringer går tapt."
@@ -26916,15 +27169,15 @@ msgstr "Dette dokumentet er allerede satt i kø for innsending. Du kan spore fre
msgid "This document has been modified after the email was sent."
msgstr "Dette dokumentet er endret etter at e-posten ble sendt."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "Dette dokumentet har ulagrede endringer som kanskje ikke vises i den endelige PDF-filen.
Vurder å lagre dokumentet før utskrift."
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr "Dette dokumentet er allerede endret, og du kan ikke endre det igjen"
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Dette dokumentet er for øyeblikket låst og står i kø for kjøring. Vennligst prøv igjen etter en stund."
@@ -26937,7 +27190,7 @@ 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 "Denne funksjonen kan ikke brukes da avhengigheter mangler. Kontakt systemansvarlig for å aktivere dette ved å installere pycups!"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "Denne funksjonen er helt ny og fortsatt på eksperimentstadiet"
@@ -26965,11 +27218,11 @@ msgstr "Denne filen er offentlig og kan nås av alle, selv uten å logge inn. Me
msgid "This file is public. It can be accessed without authentication."
msgstr "Denne filen er offentlig. Den er tilgjengelig uten autentisering."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Dette skjemaet er endret etter at du har lastet det inn"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "Dette skjemaet kan ikke redigeres på grunn av en arbeidsflyt."
@@ -26988,7 +27241,7 @@ msgstr "Denne geolokaliseringsleverandøren støttes ikke ennå."
msgid "This goes above the slideshow."
msgstr "Dette går over lysbildefremvisningen."
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Dette er en bakgrunnsrapport. Vennligst angi de riktige filtrene og generer deretter en ny."
@@ -27030,15 +27283,15 @@ msgstr "Denne lenken er allerede aktivert for verifisering."
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Denne lenken er ugyldig eller utløpt. Kontroller at du har limt inn riktig."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Dette kan bli skrevet ut på flere sider"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Denne måneden"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Denne rapporten inneholder {0} rader og er for stor til å vises i nettleseren. Du kan bruke {1} i stedet."
@@ -27046,7 +27299,7 @@ msgstr "Denne rapporten inneholder {0} rader og er for stor til å vises i nettl
msgid "This report was generated on {0}"
msgstr "Denne rapporten ble generert den {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Denne rapporten ble generert {0}."
@@ -27070,7 +27323,7 @@ msgstr "Denne programvaren er bygget oppå mange pakker med åpen kildekode."
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "Denne tittelen vil bli brukt som tittel på nettsiden og i meta-tagger"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "Denne verdien hentes fra {0}'s {1} -felt"
@@ -27114,7 +27367,7 @@ msgstr "Dette vil tilbakestille denne omvisningen og vise den til alle brukere.
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr "Dette vil avslutte jobben umiddelbart og kan være risikabelt, er du sikker?"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Begrenset"
@@ -27145,6 +27398,7 @@ msgstr "Torsdag"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27152,6 +27406,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Tidspunkt"
@@ -27234,11 +27489,6 @@ msgstr "Tid {0} må være i formatet: {1}"
msgid "Timed Out"
msgstr "Utgått på tid"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Tidløs natt"
@@ -27270,11 +27520,11 @@ msgstr "Lenker til tidslinje"
msgid "Timeline Name"
msgstr "Navn på tidslinje"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "Feltet for tidslinje må være en lenke eller dynamisk lenke"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "Feltet for tidslinje må være et gyldig feltnavn"
@@ -27345,7 +27595,7 @@ msgstr "Tips: Prøv den nye rullegardinmenyen ved å bruke"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27368,7 +27618,7 @@ msgstr "Tittelfelt"
msgid "Title Prefix"
msgstr "Prefiks for tittel"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Tittelfeltet må være et gyldig feltnavn"
@@ -27459,7 +27709,7 @@ msgstr "For å eksportere dette trinnet som JSON, koble det til et onboarding-do
msgid "To generate password click {0}"
msgstr "For å generere passord, klikk {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "For å få den oppdaterte rapporten, klikk på {0}."
@@ -27512,31 +27762,14 @@ msgstr "Gjøremål"
msgid "Today"
msgstr "I dag"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Vis/skjul diagram"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Bytt til/fra full bredde"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Bytt til/fra rutenettvisning"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Vis/skjul sidepanel"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Bytt tema"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27572,7 +27805,7 @@ msgid "Tomorrow"
msgstr "I morgen"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "For mange dokumenter"
@@ -27580,15 +27813,19 @@ msgstr "For mange dokumenter"
msgid "Too Many Requests"
msgstr "For mange forespørsler"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "For mange endringer i databasen i én enkelt handling."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "For mange bakgrunnsjobber i kø ({0}). Prøv på nytt etter en stund."
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Altfor mange brukere har registrert seg nylig, så registreringen er deaktivert. Prøv igjen om en time."
@@ -27644,10 +27881,10 @@ msgstr "Øverst til høyre"
msgid "Topic"
msgstr "Emne"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Totalt"
@@ -27662,7 +27899,7 @@ msgstr "Totale bakgrunnsprosesser"
msgid "Total Errors (last 1 day)"
msgstr "Totalt antall feil (siste 1 dag)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Totalt antall bilder"
@@ -27764,7 +28001,7 @@ msgstr "Spor om e-posten din har blitt åpnet av mottakeren.\n"
msgid "Track milestones for any document"
msgstr "Spor milepæler for ethvert dokument"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "Sporing av URL generert og kopiert til utklippstavlen"
@@ -27800,7 +28037,7 @@ msgstr "Overganger"
msgid "Translatable"
msgstr "Oversettbar"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "Oversett data"
@@ -27811,7 +28048,7 @@ msgstr "Oversett data"
msgid "Translate Link Fields"
msgstr "Oversett lenkefelt"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Oversett verdier"
@@ -27847,7 +28084,7 @@ msgstr "Søppel"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "Tre"
@@ -27896,8 +28133,8 @@ msgstr "Prøv igjen"
msgid "Try a Naming Series"
msgstr "Prøv en nummerserie"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Prøv den nye utskriftsdesigneren"
@@ -27943,6 +28180,7 @@ msgstr "To-faktor autentiseringsmetode"
#. 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 'Event Notifications'
#. 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'
@@ -27956,6 +28194,7 @@ msgstr "To-faktor autentiseringsmetode"
#: 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/event_notifications/event_notifications.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
@@ -27964,7 +28203,7 @@ msgstr "To-faktor autentiseringsmetode"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28132,7 +28371,7 @@ msgstr "UTM source"
msgid "UUID"
msgstr "UUID"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "Slutter å følge dokumentet {0}"
@@ -28140,7 +28379,7 @@ msgstr "Slutter å følge dokumentet {0}"
msgid "Unable to find DocType {0}"
msgstr "Kunne ikke finne dokumenttype (DocType) {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Kan ikke laste inn kamera."
@@ -28156,7 +28395,7 @@ msgstr "Klarte ikke å åpne den vedlagte filen. Eksporterte du den som CSV?"
msgid "Unable to read file format for {0}"
msgstr "Kan ikke lese filformatet for {0}"
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "Kan ikke sende e-post på grunn av manglende e-postkonto. Konfigurer standard e-postkonto fra Innstillinger > E-postkonto"
@@ -28177,20 +28416,20 @@ msgstr "Tilordne betingelse"
msgid "Uncaught Exception"
msgstr "Ubehandlet unntak"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Uendret"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Angre"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Angre siste handling"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Stopp å følge"
@@ -28266,9 +28505,10 @@ msgstr "Ulest varsel sendt"
msgid "Unsafe SQL query"
msgstr "Usikker SQL-spørring"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "Avmerk alle"
@@ -28301,11 +28541,11 @@ msgstr "Avmeldingsparametere"
msgid "Unsubscribed"
msgstr "Avmeldt"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28325,7 +28565,7 @@ msgstr "Pakket ut {0} filer"
msgid "Unzipping files..."
msgstr "Pakker ut filer..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Kommende hendelser for I dag"
@@ -28333,13 +28573,13 @@ msgstr "Kommende hendelser for I dag"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Oppdater"
@@ -28410,7 +28650,7 @@ msgstr "Oppdater verdi"
msgid "Update from Frappe Cloud"
msgstr "Oppdater fra Frappe Cloud"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "Oppdater {0} poster"
@@ -28418,8 +28658,7 @@ msgstr "Oppdater {0} poster"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Oppdatert"
@@ -28431,11 +28670,11 @@ msgstr "Oppdateringen var vellykket"
msgid "Updated To A New Version 🎉"
msgstr "Oppdatert til en ny versjon 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Oppdateringen var vellykket"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Oppdaterer"
@@ -28460,11 +28699,11 @@ msgstr "Oppdaterer globale innstillinger"
msgid "Updating naming series options"
msgstr "Oppdaterer alternativer for nummerserier"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "Oppdaterer relaterte felt..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Oppdaterer {0}"
@@ -28472,12 +28711,12 @@ msgstr "Oppdaterer {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "Oppdaterer {0} av {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "Oppgrader abonnementet"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28525,6 +28764,7 @@ msgstr "Bruk første dag i perioden"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "Bruk HTML"
@@ -28596,7 +28836,7 @@ msgstr "Bruk hvis standardinnstillingene ikke ser ut til å oppdage dataene dine
msgid "Use of sub-query or function is restricted"
msgstr "Bruk av underspørring eller funksjon er ikke tillatt"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Bruk den nye utskriftsformatbyggeren"
@@ -28630,9 +28870,8 @@ msgstr "Bruker OAuth"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28659,11 +28898,11 @@ msgstr "Bruker OAuth"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28799,7 +29038,7 @@ msgstr "Brukerbilde"
msgid "User Invitation"
msgstr "Brukerinvitasjon"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Brukermeny"
@@ -28815,19 +29054,19 @@ msgid "User Permission"
msgstr "Brukerrettighet"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Brukerrettigheter"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Brukerrettigheter"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "Brukerrettigheter brukes til å begrense brukernes tilgang til bestemte poster."
@@ -28900,7 +29139,7 @@ msgstr "Brukeren kan logge inn ved hjelp av e-postadresse eller mobilnummer"
msgid "User can login using Email id or User Name"
msgstr "Brukeren kan logge inn med e-postadresse eller brukernavn"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "Brukeren finnes ikke."
@@ -28934,27 +29173,27 @@ msgstr "Bruker med e-postadresse {0} finnes ikke"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Bruker med e-postadresse: {0} finnes ikke i systemet. Be \"Systemadministrator\" om å opprette brukeren for deg."
-#: frappe/core/doctype/user/user.py:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Bruker {0} kan ikke slettes"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Bruker {0} kan ikke deaktiveres"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Bruker {0} kan ikke gis nytt navn"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "Bruker {0} har ikke tilgang til dette dokumentet"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Bruker {0} har ikke tilgang til dokumenttypen (DocType) via rollerettigheter for dokument {1}."
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "Bruker {0} har ikke tillatelse til å opprette et arbeidsområde."
@@ -28963,11 +29202,11 @@ msgstr "Bruker {0} har ikke tillatelse til å opprette et arbeidsområde."
msgid "User {0} has requested for data deletion"
msgstr "Bruker {0} har bedt om sletting av data"
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "Bruker {0} utga seg for å være {1}"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Bruker {0} er deaktivert"
@@ -28992,18 +29231,17 @@ msgstr "Brukerinfo URI"
msgid "Username"
msgstr "Brukernavn"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Brukernavnet {0} finnes allerede"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29074,7 +29312,7 @@ msgstr "Valider e-post innstillinger for Frappe"
msgid "Validate SSL Certificate"
msgstr "Valider SSL-sertifikat"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Valideringsfeil"
@@ -29103,7 +29341,7 @@ msgstr "Gyldighet"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29130,15 +29368,19 @@ msgstr "Endret verdi"
msgid "Value To Be Set"
msgstr "Verdi som skal settes"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Verdien kan ikke endres for {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Verdien kan ikke være negativ for"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Verdien kan ikke være negativ for {0}: {1}"
@@ -29150,7 +29392,7 @@ msgstr "Verdien for et kontrollfelt kan være enten 0 eller 1"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Verdien for feltet {0} er for lang i {1}. Lengden bør være mindre enn {2} tegn"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "Verdien for {0} kan ikke være en liste"
@@ -29175,7 +29417,13 @@ msgstr "Verdien «Ingen» antyder en offentlig klient. I slike tilfeller gis ikk
msgid "Value to Validate"
msgstr "Verdi som skal valideres"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "For stor verdi"
@@ -29192,7 +29440,7 @@ msgstr "Verdien {0} må være i gyldig varighetsformat: d h m s (dager, timer, m
msgid "Value {0} must in {1} format"
msgstr "Verdien {0} må være i {1} -format"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Verdier endret"
@@ -29201,11 +29449,11 @@ msgstr "Verdier endret"
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Verifisering"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Verifiseringskode"
@@ -29213,7 +29461,7 @@ msgstr "Verifiseringskode"
msgid "Verification Link"
msgstr "Verifiseringslenke"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "Verifiseringskoden er ikke sendt. Vennligst kontakt administrator."
@@ -29227,7 +29475,7 @@ msgid "Verified"
msgstr "Verifisert"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Verifiser"
@@ -29263,7 +29511,7 @@ msgstr "Vis"
msgid "View All"
msgstr "Vis alle"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "Vis revisjonsspor"
@@ -29275,7 +29523,7 @@ msgstr "Vis DocType-rettigheter"
msgid "View File"
msgstr "Vis fil"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Vis hele loggen"
@@ -29312,7 +29560,7 @@ msgstr "Vis rapport"
msgid "View Settings"
msgstr "Vis innstillinger"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29321,14 +29569,11 @@ msgstr ""
msgid "View Switcher"
msgstr "Vis velger"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "Vis nettsted"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29344,7 +29589,7 @@ msgstr "Se rapporten i nettleseren din"
msgid "View this in your browser"
msgstr "Se dette i nettleseren din"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Se svaret ditt"
@@ -29380,7 +29625,7 @@ msgstr "Virtuell dokumenttype (DocType) {} krever en statisk metode kalt {}, men
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "Virtuell dokumenttype (DocType) {} krever at en instansmetode kalt {} overstyres, men fant {}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29428,7 +29673,7 @@ msgstr "Varehus"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Advarsel"
@@ -29437,7 +29682,7 @@ msgstr "Advarsel"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "Advarsel! FARE FOR DATATAP ER OVERHENGENDE! Hvis du fortsetter, vil følgende databasekolonner slettes permanent fra dokumenttype (DocType) {0}:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Advarsel: Navngiving er ikke angitt"
@@ -29521,7 +29766,7 @@ msgstr "Nettside"
msgid "Web Page Block"
msgstr "Websideblokk"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "Nettside-URL"
@@ -29618,7 +29863,7 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29673,7 +29918,7 @@ msgstr "Skript for nettstedet"
msgid "Website Search Field"
msgstr "Nettstedets søkefelt"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Nettstedets søkefelt må være et gyldig feltnavn"
@@ -29738,6 +29983,11 @@ msgstr "Bildelenke for nettstedstema"
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29825,15 +30075,15 @@ msgstr "Velkomst-URL"
msgid "Welcome Workspace"
msgstr "Velkomst og introduksjon"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "Velkomst-e-post sendt"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Velkommen til {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Hva er nytt"
@@ -29855,10 +30105,6 @@ msgstr "Når du sender et dokument via e-post, må du lagre PDF-filen på Kommun
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 "Når du laster opp filer, tving bruk av nettbasert bildeopptak. Hvis dette ikke er avmerket, er standardoppførselen å bruke mobilkameraet når bruk fra en mobil oppdages."
-#: 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 "Når du endrer et dokument etter Avbryt og lagrer det, vil det få et nytt nummer som er en versjon av det gamle nummeret."
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29876,7 +30122,7 @@ msgstr "Hvilken visning av den tilknyttede dokumenttypen (DocType) skal denne sn
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Bredde"
@@ -29997,6 +30243,10 @@ msgstr "Arbeidsflytdetaljer"
msgid "Workflow Document State"
msgstr "Tilstand for arbeidsflytdokument"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -30014,11 +30264,11 @@ msgstr "Arbeidsflyttilstand"
msgid "Workflow State Field"
msgstr "Felt for arbeidsflyttilstand"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Arbeidsflyttilstand ikke angitt"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Overgang mellom arbeidsflyttilstander er ikke tillatt fra {0} til {1}"
@@ -30026,7 +30276,7 @@ msgstr "Overgang mellom arbeidsflyttilstander er ikke tillatt fra {0} til {1}"
msgid "Workflow States Don't Exist"
msgstr "Arbeidsflyttilstander finnes ikke"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Arbeidsflyttilstand"
@@ -30061,18 +30311,15 @@ msgstr "Arbeidsflyten ble oppdatert"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Arbeidsområde"
@@ -30099,7 +30346,6 @@ msgstr "Lenke for arbeidsområde"
#. Name of a role
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
msgstr "Administrator for arbeidsområder"
@@ -30113,27 +30359,15 @@ msgstr "Nummerkort for arbeidsområde"
msgid "Workspace Quick List"
msgstr "Hurtigliste for arbeidsområde"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "Innstillinger for arbeidsområde"
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr "Oppsett av arbeidsområdet er fullført"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Snarvei til arbeidsområde"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -30143,13 +30377,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
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 "Synlighet av arbeidsområde"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "Arbeidsområde {0} opprettet"
@@ -30178,11 +30406,12 @@ msgstr "Oppsummerer"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "Skrive"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Feil «Hent fra»-verdi"
@@ -30200,7 +30429,7 @@ msgstr "X-felt"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -30215,7 +30444,7 @@ msgstr "Felt for Y-akse"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y-felt"
@@ -30263,10 +30492,14 @@ msgstr "Gul"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30275,10 +30508,10 @@ msgstr "Gul"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -30314,7 +30547,7 @@ msgstr "Du la til 1 rad til {0}"
msgid "You added {0} rows to {1}"
msgstr "Du la til {0} rader til {1}"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "Du er i ferd med å åpne en ekstern lenke. Klikk på lenken igjen for å bekrefte."
@@ -30322,7 +30555,7 @@ msgstr "Du er i ferd med å åpne en ekstern lenke. Klikk på lenken igjen for
msgid "You are connected to internet."
msgstr "Du er koblet til Internett."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "Du utgir deg for å være en annen bruker."
@@ -30330,11 +30563,11 @@ msgstr "Du utgir deg for å være en annen bruker."
msgid "You are not allowed to access this resource"
msgstr "Du har ikke tilgang til denne ressursen"
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Du har ikke tilgang til denne {0} oppføringen fordi den er lenket til {1} '{2}' i felt {3}"
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
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 ikke tilgang til denne {0} -posten fordi den er knyttet til {1} '{2}' i rad {3}, felt {4}"
@@ -30357,7 +30590,7 @@ msgstr "Du har ikke rettigheter til å redigere rapporten."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "Du har ikke rettigheter til å eksportere {} dokumenttype (DocType)"
@@ -30365,10 +30598,14 @@ msgstr "Du har ikke rettigheter til å eksportere {} dokumenttype (DocType)"
msgid "You are not allowed to print this report"
msgstr "Du har ikke rettigheter til å skrive ut denne rapporten"
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr "Du har ikke rettigheter til å sende e-poster om dette dokumentet"
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Du har ikke rettigheter til å oppdatere dette nettskjemadokumentet"
@@ -30385,7 +30622,7 @@ msgstr "Du har ikke tilgang til denne siden uten å være logget inn."
msgid "You are not permitted to access this page."
msgstr "Ditt rettighetsnivå hindrer visning av denne siden."
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "Du må være innlogget for å få tilgang til denne ressursen."
@@ -30393,7 +30630,7 @@ msgstr "Du må være innlogget for å få tilgang til denne ressursen."
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Du følger nå dette dokumentet. Du vil motta daglige oppdateringer via e-post. Du kan endre dette i brukerinnstillingene."
-#: frappe/core/doctype/installed_applications/installed_applications.py:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Du kan bare endre rekkefølgen på appene, ikke legge til eller fjerne dem."
@@ -30406,7 +30643,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "Du la ved {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Du kan legge til dynamiske egenskaper fra dokumentet ved å bruke Jinja-maler."
@@ -30430,10 +30667,6 @@ msgstr "Du kan også kopiere og lime inn denne {0} i nettleseren din"
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "Du kan be teamet ditt om å sende invitasjonen på nytt hvis du fortsatt ønsker å bli med."
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "Du kan endre registrerte dokumenter ved å kansellere dem og deretter korrigere dem."
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "Du kan endre retningslinjene for oppbevaring fra {0}."
@@ -30488,7 +30721,7 @@ msgstr "Du kan angi en høy verdi her hvis flere brukere skal logge seg på fra
msgid "You can try changing the filters of your report."
msgstr "Du kan prøve å endre filtrene i rapporten din."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Du kan bruke Tilpass skjema til å angi nivåer på felt."
@@ -30518,6 +30751,10 @@ msgstr "Du avbrøt dokumentet {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Du kan ikke opprette et oversiktspanel-diagram fra enkeltstående dokumenttyper (DocType)"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Du kan ikke oppheve \"Skrivebeskyttet\" for felt {0}"
@@ -30544,7 +30781,6 @@ msgid "You changed {0} to {1}"
msgstr "Du endret {0} til {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "Du opprettet dette"
@@ -30553,11 +30789,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "Du opprettet dette dokumentet {0}"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "Du har ikke lese- eller valgtillatelser for {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Du har ikke tilstrekkelige rettigheter til å få tilgang til denne ressursen. Ta kontakt med admin for å få tilgang."
@@ -30569,15 +30801,19 @@ msgstr "Du har ikke tilstrekkelige rettigheter til å fullføre handlingen"
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "Du har ikke rettigheter for tilgang til feltet: {0}"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "Du har ikke rettigheter for tilgang til {0}: {1}."
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Du har ikke rettigheter til å avbryte alle sammenlenkede dokumenter."
@@ -30613,7 +30849,7 @@ msgstr "Du er blitt logget ut"
msgid "You have hit the row size limit on database table: {0}"
msgstr "Du har nådd grensen for radstørrelse i databasetabellen: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Du har ikke angitt noen verdi. Feltet vil bli satt til tomt."
@@ -30633,7 +30869,7 @@ msgstr "Du har usett {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Du har ikke lagt til noen oversiktspanel-diagrammer eller tallkort ennå."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "Du har ikke opprettet en {0} ennå"
@@ -30642,7 +30878,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Du har nådd hastighetsgrensen på grunn av for mange forespørsler. Prøv igjen etter en stund."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Du redigerte dette sist"
@@ -30658,12 +30893,12 @@ msgstr "Du må være innlogget for å bruke dette skjemaet."
msgid "You must login to submit this form"
msgstr "Du må logge inn for å kunne registrere dette skjemaet"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Du trenger tillatelsen '{0}' på {1} {2} for å utføre denne handlingen."
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Du må være Administrator for arbeidsområder for å slette et offentlig arbeidsområde."
@@ -30671,7 +30906,7 @@ msgstr "Du må være Administrator for arbeidsområder for å slette et offentli
msgid "You need to be Workspace Manager to edit this document"
msgstr "Du må være Administrator for arbeidsområder for å redigere dette dokumentet"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Du må være systembruker for å få adgang til denne siden."
@@ -30703,7 +30938,7 @@ msgstr "Du må aktivere JavaScript for at appen skal fungere."
msgid "You need to have \"Share\" permission"
msgstr "Du må ha tillatelse til å dele"
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Du må installere pycups for å bruke denne funksjonen!"
@@ -30723,7 +30958,7 @@ msgstr "Du trenger skriverettighet på {0} {1} for å slå sammen"
msgid "You need write permission on {0} {1} to rename"
msgstr "Du trenger skriverettighet på {0} {1} for å gi nytt navn til"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "Du må ha rettighet fra {0} for å hente verdier fra {1} {2}"
@@ -30770,7 +31005,7 @@ msgstr "Du sluttet å følge dette dokumentet"
msgid "You viewed this"
msgstr "Du så dette"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "Du vil bli omdirigert til:"
@@ -30847,7 +31082,7 @@ msgstr "Din e-postadresse "
msgid "Your exported report: {0}"
msgstr "Din eksporterte rapport: {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Skjemaet ditt er blitt oppdatert"
@@ -30889,7 +31124,7 @@ msgstr "Rapporten din genereres i bakgrunnen. Du vil motta en e-post på {0} med
msgid "Your session has expired, please login again to continue."
msgstr "Økten din er utløpt. Logg inn på nytt for å fortsette."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "Nettstedet ditt er under vedlikehold eller oppdatering."
@@ -30911,7 +31146,7 @@ msgstr "Null betyr at alle oppdaterte poster sendes, uavhengig av tidspunkt"
msgid "[Action taken by {0}]"
msgstr "[Handling utført av {0}]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator` fungerer bare med `as_list=True` eller `as_dict=True`."
@@ -30930,7 +31165,7 @@ msgstr "etter_innsetting"
msgid "amend"
msgstr "korriger"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "og"
@@ -30953,7 +31188,7 @@ msgstr "etter rolle"
msgid "cProfile Output"
msgstr "cProfile-utdata"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "kalender"
@@ -30969,7 +31204,9 @@ msgid "canceled"
msgstr "avbrutt"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30993,7 +31230,7 @@ msgid "cyan"
msgstr "cyan"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "d"
@@ -31051,7 +31288,7 @@ msgstr "slett"
msgid "descending"
msgstr "synkende"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "dokumenttype (DocType) … f.eks. Kunde"
@@ -31061,7 +31298,7 @@ msgstr "dokumenttype (DocType) … f.eks. Kunde"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "f.eks. \"Support\", \"Salg\", \"Jerry Yang\""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "f.eks. (55 + 434) / 4 eller =Math.sin(Math.PI/2)..."
@@ -31103,12 +31340,16 @@ msgstr "emacs"
msgid "email"
msgstr "e-post"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "e-post innboks"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "tom"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "tom"
@@ -31164,12 +31405,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip ikke funnet i PATH! Dette er nødvendig for å ta en sikkerhetskopi."
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "h"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "hub"
@@ -31184,6 +31425,20 @@ msgstr "ikon"
msgid "import"
msgstr "import"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "janne@eksempel.no"
@@ -31223,16 +31478,11 @@ msgid "long"
msgstr "lang"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "slått sammen {0} til {1}"
@@ -31251,15 +31501,15 @@ msgstr "mm-dd-yyyy"
msgid "mm/dd/yyyy"
msgstr "mm/dd/yyyy"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "modulnavn..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "ny"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "ny type dokument"
@@ -31321,7 +31571,7 @@ msgstr "on_update"
msgid "on_update_after_submit"
msgstr "on_update_after_submit"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "eller"
@@ -31394,7 +31644,7 @@ msgid "restored {0} as {1}"
msgstr "gjenopprettet {0} som {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -31478,11 +31728,11 @@ msgstr "strengverdi, f.eks. {0} eller uid={0},ou=brukere,dc=eksempel,dc=com"
msgid "submit"
msgstr "registrer"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "stikkord… f.eks. #prosjekt"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "tekst i dokumenttype (DocType)"
@@ -31580,11 +31830,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "Når elementet klikkes, vil fokus settes til popover-en hvis den finnes"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (med patchet qt)."
@@ -31620,11 +31872,11 @@ msgstr "yyyy-mm-dd"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : type}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31641,8 +31893,8 @@ msgstr "{0} ({1}) (1 rad påkrevet)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31655,13 +31907,13 @@ msgid "{0} Chart"
msgstr "{0} Diagram"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} oversiktspanel"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31695,11 +31947,11 @@ msgstr "{0} M"
msgid "{0} Map"
msgstr "{0}-kart"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} Navn"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0}Har ikke lov til å endre {1} etter registrering fra {2} til {3}"
@@ -31707,7 +31959,7 @@ msgstr "{0}Har ikke lov til å endre {1} etter registrering fra {2} til {3}"
msgid "{0} Report"
msgstr "{0} Rapport"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} Rapporter"
@@ -31720,11 +31972,11 @@ msgid "{0} Tree"
msgstr "{0} Tre"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} Nettsidevisninger"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} lagt til"
@@ -31786,7 +32038,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} avbrøt dette dokumentet {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} kan ikke korrigeres fordi det ikke er avbrutt. Vennligst avbryt dokumentet før du oppretter et korrigeringsforslag."
@@ -31815,16 +32067,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} endret {1} til {2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0} inneholder et ugyldig «Hent fra»-uttrykk. «Hent fra» kan ikke være selvrefererende."
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} opprettet"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "{0} opprettet dette"
@@ -31841,11 +32096,19 @@ msgstr "{0} d"
msgid "{0} days ago"
msgstr "{0} dager siden"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{0} finnes ikke i rad {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} feltet kan ikke angis som unikt i {1}, siden det finnes ikke-unike eksisterende verdier"
@@ -31870,7 +32133,7 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} har allerede tildelt standardverdi for {1}."
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31891,7 +32154,11 @@ msgstr "{0} hvis du ikke blir omdirigert innen {1} sekunder"
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} i raden {1} kan ikke ha både URL og underordnede elementer"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} er et påkrevet felt"
@@ -31899,7 +32166,15 @@ msgstr "{0} er et påkrevet felt"
msgid "{0} is a not a valid zip file"
msgstr "{0} er ikke en gyldig zip-fil"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} er et ugyldig datafelt."
@@ -31907,6 +32182,15 @@ msgstr "{0} er et ugyldig datafelt."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} er en ugyldig e-postadresse i 'Mottakere'"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} er mellom {1} og {2}"
@@ -31916,22 +32200,36 @@ msgstr "{0} er mellom {1} og {2}"
msgid "{0} is currently {1}"
msgstr "{0} er for øyeblikket {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} er lik {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} er større enn eller lik {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} er større enn {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} er mindre enn eller lik {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} er mindre enn {1}"
@@ -31944,10 +32242,14 @@ msgstr "{0} er som {1}"
msgid "{0} is mandatory"
msgstr "{0} er påkrevet"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "{0} er ikke en undertabell av {1}"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant 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} ikke er et felt av dokumenttype (DocType) {1}"
@@ -31964,12 +32266,12 @@ msgstr "{0} er ikke en gyldig kalender. Omdirigerer til standardkalender."
msgid "{0} is not a valid Cron expression."
msgstr "{0} er ikke et gyldig Cron-uttrykk."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} er ikke en gyldig dokumenttype (DocType) for dynamisk lenke"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} er ikke en gyldig e-postadresse"
@@ -31977,23 +32279,23 @@ msgstr "{0} er ikke en gyldig e-postadresse"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} er ikke en gyldig ISO 3166 ALPHA-2-kode."
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} er ikke et gyldig navn"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} er ikke et gyldig telefonnummer"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} er ikke en gyldig arbeidsflyttilstand. Oppdater arbeidsflyten din og prøv på nytt."
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} er ikke en gyldig overordnet dokumenttype (DocType) for {1}"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} er ikke et gyldig overordnet felt for {1}"
@@ -32009,6 +32311,11 @@ msgstr "{0} er ikke en zip-fil"
msgid "{0} is not an allowed role for {1}"
msgstr "{0} er ikke en tillatt rolle for {1}"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} er ikke lik {1}"
@@ -32017,10 +32324,12 @@ msgstr "{0} er ikke lik {1}"
msgid "{0} is not like {1}"
msgstr "{0} er ikke som {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} er ikke en av {1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} er ikke satt"
@@ -32029,36 +32338,50 @@ msgstr "{0} er ikke satt"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} er nå standard utskriftsformat for {1} dokumenttype (DocType)"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} er en av {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} er påkrevd"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} er satt"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} er innenfor {1}"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} elementer valgt"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} utga seg nettopp for å være deg. De oppga denne grunnen: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} redigert dette sist "
@@ -32086,35 +32409,35 @@ msgstr "{0} minutter siden"
msgid "{0} months ago"
msgstr "{0} måneder siden"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} må være etter {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} må begynne med '{1}'"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} må være lik '{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} må ikke være noen av {1}"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} må være en av {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} må angis først"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} må være unik"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} må være {1} {2}"
@@ -32131,11 +32454,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} kan ikke gis nytt navn"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} av {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} av {1} ({2} rader med underordnede)"
@@ -32164,7 +32487,7 @@ msgstr "{0} oppbevares i {1} dager."
msgid "{0} records deleted"
msgstr "{0} poster slettet"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} oppføringer vil bli eksportert"
@@ -32189,7 +32512,7 @@ msgstr "{0} fjernet {1} rader fra {2}"
msgid "{0} role does not have permission on any doctype"
msgstr "{0}-rollen har ikke tillatelse til noen dokumenttype (DocType)"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} rad #{1}:"
@@ -32203,7 +32526,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0} rader til {1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} lagret var vellykket"
@@ -32211,7 +32534,7 @@ msgstr "{0} lagret var vellykket"
msgid "{0} self assigned this task: {1}"
msgstr "{0} tildelte seg selv denne oppgaven: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} delte et dokument {1} {2} med deg"
@@ -32279,7 +32602,7 @@ msgstr "{0} w"
msgid "{0} weeks ago"
msgstr "{0} uker siden"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32291,7 +32614,7 @@ msgstr "{0} y"
msgid "{0} years ago"
msgstr "{0} uker siden"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} lagt til"
@@ -32299,11 +32622,11 @@ msgstr "{0} {1} lagt til"
msgid "{0} {1} added to Dashboard {2}"
msgstr "Ny {0} {1} lagt til i oversiktspanelet {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} finnes allerede"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} kan ikke være \"{2}\". Det bør være en av \"{3}\""
@@ -32315,11 +32638,11 @@ msgstr "{0} {1} kan ikke være en bladnode siden den har underordnede"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} finnes ikke, velg et nytt mål å slå sammen"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} er lenket til følgende registrerte dokumenter: {2}"
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} ikke funnet"
@@ -32327,87 +32650,59 @@ msgstr "{0} {1} ikke funnet"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Registrert post kan ikke slettes. Du må {2} Avbryte {3} den først."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, Rad {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} fullført | La denne fanen være åpen til den er fullført."
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) vil bli avkortet, da maks tillatte tegn er {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Kan ikke angi Korriger uten å avbryte"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Kan ikke angi Korreksjon hvis den ikke kan registreres"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Kan ikke angi Registrert hvis den ikke kan registreres"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Kan ikke angi Avbryt uten å registrere"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Kan ikke angi import uten å opprette"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Kan ikke angi Registrer, Avbryt, Korriger uten å skrive"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Kan ikke angi import ettersom {1} ikke kan importeres"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Kunne ikke legge ved nytt gjentakende dokument. For å aktivere vedlegg av dokument i e-postvarslingen for automatisk gjentakelse, aktiver {1} i utskriftsinnstillingene"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: Felt '{1}' kan ikke angis som unikt, da det har ikke-unike verdier"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: Felt {1} på rad {2} kan ikke skjules og er påkrevet uten standard"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Felt {1} av typen {2} kan ikke være påkrevet "
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Feltnavn {1} vises flere ganger i radene {2}"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Fieldtype {1} for {2} kan ikke være unik"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Ingen basisrettigheter er angitt"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Bare én regel tillatt med samme rolle, nivå og {1}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Alternativer må være en gyldig dokumenttype (DocType) for feltet {1} i raden {2}"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: Påkrevde alternativer for feltet Lenke eller Tabell {1} i rad {2}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Alternativene {1} må være de samme som navnet på dokumenttype (DocType) {2} for feltet {3}"
@@ -32415,15 +32710,59 @@ msgstr "{0}: Alternativene {1} må være de samme som navnet på dokumenttype (D
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Andre tillatelsesregler kan også gjelde"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Rettigheter på nivå 0 må angis før høyere nivåer angis"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: Du kan øke grensen for feltet om nødvendig via {1}"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: feltnavn kan ikke settes til reservert nøkkelord {1}"
@@ -32436,15 +32775,15 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} er satt til tilstand {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} vs {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}:Fieldtype {1} for {2} kan ikke indekseres"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} lagret"
@@ -32464,11 +32803,11 @@ msgstr "{count} rad valgt"
msgid "{count} rows selected"
msgstr "{count} rader valgt"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} er ikke et gyldig feltnavnmønster. Det må være {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Fullført"
diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po
index 15b55ac43c..7ecb534d9b 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2026-01-05 23:50\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "\"Bovenliggend\" betekent de bovenliggende tabel waarin deze rij moet wo
msgid "\"Team Members\" or \"Management\""
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr ""
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. en bijdragers"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "'In Global Search' niet toegestaan voor type {0} in rij {1}"
@@ -90,19 +90,19 @@ msgstr "'In lijst weergave' niet toegestaan voor type {0} in rij {1}"
msgid "'Recipients' not specified"
msgstr "'Ontvangers' niet gespecificeerd"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' niet toegestaan voor type {1} in rij {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Verplicht)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0 is het hoogst"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Waar & 0 = Onwaar"
@@ -158,7 +158,7 @@ msgstr "1 dag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Agenda-evenement gesynchroniseerd."
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 rapport"
@@ -189,7 +189,7 @@ msgstr "1 maand geleden"
msgid "1 of 2"
msgstr "1 van 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 record wordt geëxporteerd"
@@ -587,7 +587,7 @@ msgstr ""
msgid ">="
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
@@ -601,7 +601,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr ""
@@ -920,7 +920,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Actie is mislukt"
@@ -969,13 +969,13 @@ msgstr ""
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Acties"
@@ -1032,20 +1032,20 @@ msgstr "Activiteit"
msgid "Activity Log"
msgstr "Activiteitenlogboek"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Toevoegen"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr ""
@@ -1053,11 +1053,11 @@ msgstr ""
msgid "Add / Update"
msgstr "Toevoegen / bijwerken"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Voeg een nieuwe regel toe"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Voeg bijlage toe"
@@ -1077,11 +1077,15 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Grafiek toevoegen aan dashboard"
@@ -1090,8 +1094,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:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1135,11 +1139,7 @@ msgstr "Groep toevoegen"
msgid "Add Indexes"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Meerdere toevoegen"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Toevoegen nieuwe machtiging regel"
@@ -1152,17 +1152,13 @@ msgstr "Voeg deelnemers toe"
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr ""
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Handtekening toevoegen"
@@ -1181,16 +1177,16 @@ msgstr ""
msgid "Add Subscribers"
msgstr "Abonnees toevoegen"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr ""
@@ -1240,19 +1236,19 @@ msgstr "Voeg een reactie toe"
msgid "Add a new section"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr ""
@@ -1270,6 +1266,10 @@ msgstr ""
msgid "Add field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1283,6 +1283,10 @@ msgstr ""
msgid "Add page break"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Script toevoegen voor onderliggende tabel"
@@ -1301,7 +1305,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Toevoegen aan dashboard"
@@ -1341,8 +1345,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Toegevoegd {0} ({1})"
@@ -1384,7 +1388,7 @@ msgstr "Adres Lijn 1"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:38
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
-msgstr ""
+msgstr "Adres Lijn 2"
#. Name of a DocType
#: frappe/contacts/doctype/address_template/address_template.json
@@ -1432,7 +1436,7 @@ msgstr ""
msgid "Adds a custom field to a DocType"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Toediening"
@@ -1459,15 +1463,15 @@ msgstr "Toediening"
msgid "Administrator"
msgstr "Beheerder"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr ""
@@ -1484,8 +1488,8 @@ msgstr ""
msgid "Advanced Control"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr ""
@@ -1566,7 +1570,7 @@ msgstr ""
msgid "Alert"
msgstr ""
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1590,6 +1594,15 @@ msgstr ""
msgid "Align Value"
msgstr ""
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1622,7 +1635,7 @@ msgstr "Allemaal"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr ""
@@ -1634,11 +1647,11 @@ msgstr ""
msgid "All Records"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr ""
@@ -1949,7 +1962,7 @@ msgstr ""
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -1983,16 +1996,64 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
-msgid "Already Registered"
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
+msgid "Already Registered"
+msgstr "Reeds geregistreerd"
+
#: frappe/desk/form/assign_to.py:137
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
@@ -2084,7 +2145,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr ""
@@ -2097,7 +2158,7 @@ msgstr ""
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2148,7 +2209,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr ""
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr ""
@@ -2161,7 +2222,7 @@ msgstr ""
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2211,11 +2272,11 @@ msgstr "App Naam"
msgid "App Name (Client Name)"
msgstr ""
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "App {0} is niet geïnstalleerd"
@@ -2289,7 +2350,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Toewijzingsregel toepassen"
@@ -2298,6 +2359,10 @@ msgstr "Toewijzingsregel toepassen"
msgid "Apply Filters"
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2337,7 +2402,7 @@ msgstr ""
msgid "Apply to all Documents Types"
msgstr "Toepassen op alle soorten documenten"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Toepassen: {0}"
@@ -2345,18 +2410,11 @@ msgstr "Toepassen: {0}"
msgid "Approval Required"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2379,16 +2437,16 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Weet u zeker dat u alle rijen wilt verwijderen?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Weet u zeker dat u de bijlage wilt verwijderen?"
@@ -2407,19 +2465,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
@@ -2439,7 +2497,7 @@ msgstr ""
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
@@ -2488,9 +2546,9 @@ msgstr ""
msgid "Ask"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
-msgstr ""
+msgstr "Toewijzen"
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
@@ -2499,12 +2557,12 @@ msgstr ""
#: frappe/public/js/frappe/form/sidebar/assign_to.js:186
msgid "Assign To"
-msgstr ""
+msgstr "Toewijzen aan"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
-msgstr ""
+msgstr "Toewijzen aan"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:196
msgid "Assign To User Group"
@@ -2551,7 +2609,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2640,7 +2698,7 @@ msgstr "opdrachten"
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2665,7 +2723,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Toevoegen Document Print"
@@ -2763,19 +2821,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr ""
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr ""
@@ -3100,11 +3165,6 @@ msgstr ""
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3210,17 +3270,12 @@ msgstr ""
msgid "Background Image"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr ""
@@ -3333,8 +3388,8 @@ msgstr ""
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr ""
@@ -3358,6 +3413,8 @@ msgstr ""
msgid "Basic Info"
msgstr ""
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3427,7 +3484,7 @@ msgstr ""
msgid "Beta"
msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr ""
@@ -3482,7 +3539,7 @@ msgstr ""
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Blue"
-msgstr ""
+msgstr "Blauw"
#. Label of the bold (Check) field in DocType 'DocField'
#. Label of the bold (Check) field in DocType 'Custom Field'
@@ -3555,18 +3612,11 @@ msgstr ""
msgid "Brand Image"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr ""
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
@@ -3637,7 +3687,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr ""
@@ -3658,7 +3708,7 @@ msgstr ""
msgid "Bulk Update"
msgstr ""
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3670,7 +3720,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -3819,7 +3869,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr ""
@@ -3869,12 +3919,12 @@ msgid "Callback Title"
msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3886,11 +3936,11 @@ msgstr ""
msgid "Campaign Description (Optional)"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -3900,7 +3950,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -3922,7 +3972,7 @@ msgstr ""
msgid "Cancel"
msgstr "Annuleren"
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Annuleren"
@@ -3932,11 +3982,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Annuleren"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr ""
@@ -3948,7 +3998,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3966,7 +4016,7 @@ msgstr ""
#: frappe/public/js/frappe/model/indicator.js:78
#: frappe/public/js/frappe/ui/filters/filter.js:539
msgid "Cancelled"
-msgstr ""
+msgstr "Geannuleerd"
#: frappe/core/doctype/deleted_document/deleted_document.py:52
msgid "Cancelled Document restored as Draft"
@@ -3981,7 +4031,7 @@ msgstr ""
msgid "Cancelling documents"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr ""
@@ -3989,7 +4039,7 @@ msgstr ""
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -3997,7 +4047,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4017,11 +4067,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4033,7 +4083,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4041,10 +4091,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr ""
@@ -4053,15 +4107,15 @@ msgstr ""
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4072,11 +4126,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4104,7 +4158,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4117,7 +4171,7 @@ msgstr ""
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr ""
@@ -4133,15 +4187,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4153,7 +4207,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr ""
@@ -4178,7 +4232,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr ""
@@ -4198,7 +4252,7 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
@@ -4212,7 +4266,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr ""
@@ -4241,17 +4295,19 @@ msgstr ""
msgid "Category Name"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4339,7 +4395,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4404,6 +4460,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr ""
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr ""
@@ -4455,7 +4517,7 @@ msgstr ""
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4465,7 +4527,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4473,7 +4535,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4493,10 +4555,6 @@ msgstr ""
msgid "Choose authentication method to be used by all users"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr ""
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4511,13 +4569,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:12
#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Clear"
-msgstr ""
+msgstr "Doorzichtig"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr ""
@@ -4525,7 +4583,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4551,7 +4609,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4619,7 +4677,7 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
@@ -4727,7 +4785,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Dichtbij"
@@ -4737,7 +4795,7 @@ msgstr "Dichtbij"
msgid "Close Condition"
msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4749,7 +4807,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
msgid "Closed"
-msgstr ""
+msgstr "Gesloten"
#: frappe/templates/discussions/comment_box.html:25
#: frappe/templates/discussions/reply_section.html:53
@@ -4793,12 +4851,12 @@ msgstr ""
msgid "Collapse"
msgstr "Ineenstorting"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Ineenstorting"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4855,7 +4913,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4866,7 +4924,7 @@ msgstr "Kleur"
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
-#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4911,11 +4969,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -4958,7 +5016,7 @@ msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5079,7 +5137,7 @@ msgstr ""
#. Label of the company_name (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Company Name"
-msgstr ""
+msgstr "Bedrijfsnaam"
#: frappe/core/doctype/server_script/server_script.js:14
#: frappe/custom/doctype/client_script/client_script.js:56
@@ -5099,18 +5157,18 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
#: frappe/www/complete_signup.html:21
msgid "Complete"
-msgstr ""
+msgstr "Voltooien"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:206
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Registratie voltooien"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5125,7 +5183,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Voltooid"
@@ -5216,7 +5274,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5244,12 +5302,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:407 frappe/public/js/frappe/dom.js:342
#: frappe/www/update-password.html:66
msgid "Confirm"
-msgstr ""
+msgstr "Bevestigen"
#: frappe/public/js/frappe/ui/messages.js:31
msgctxt "Title of confirmation dialog"
msgid "Confirm"
-msgstr ""
+msgstr "Bevestigen"
#: frappe/integrations/oauth2.py:138
msgid "Confirm Access"
@@ -5305,8 +5363,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5424,7 +5482,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5493,11 +5551,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5509,12 +5567,12 @@ msgstr ""
msgid "Copy embed code"
msgstr ""
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr ""
@@ -5535,7 +5593,7 @@ msgstr ""
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr ""
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr ""
@@ -5543,7 +5601,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr ""
@@ -5551,11 +5609,11 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5563,7 +5621,7 @@ msgstr ""
msgid "Could not start up:"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr ""
@@ -5613,9 +5671,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
-msgstr ""
+msgstr "Land"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
@@ -5642,15 +5700,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Creëren"
@@ -5663,13 +5722,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr ""
@@ -5703,7 +5762,7 @@ msgstr ""
msgid "Create New"
msgstr "Maak nieuw"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Maak nieuw"
@@ -5716,7 +5775,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5732,18 +5791,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5760,7 +5819,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr ""
@@ -5779,13 +5838,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr ""
@@ -5979,7 +6046,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr ""
@@ -5990,15 +6057,15 @@ msgstr ""
msgid "Custom Field"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr ""
@@ -6024,10 +6091,10 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
-msgstr ""
+msgstr "Aangepaste HTML"
#. Name of a DocType
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
@@ -6070,7 +6137,7 @@ msgstr ""
msgid "Custom Report"
msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr ""
@@ -6095,11 +6162,11 @@ msgstr ""
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6122,26 +6189,26 @@ msgstr ""
msgid "Customization"
msgstr "Maatwerk"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr ""
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr ""
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6238,7 +6305,7 @@ msgstr "Dagelijks"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr ""
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr ""
@@ -6295,8 +6362,8 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr ""
@@ -6388,7 +6455,7 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import"
-msgstr ""
+msgstr "Gegevens importeren"
#. Name of a DocType
#: frappe/core/doctype/data_import_log/data_import_log.json
@@ -6519,7 +6586,7 @@ msgstr ""
#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
#: frappe/public/js/frappe/views/calendar/calendar.js:277
msgid "Day"
-msgstr ""
+msgstr "Dag"
#. Label of the day_of_week (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -6546,13 +6613,13 @@ msgstr ""
msgid "Days Before or After"
msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr ""
#: frappe/templates/emails/password_reset.html:1
msgid "Dear"
-msgstr ""
+msgstr "Geachte"
#: frappe/templates/emails/administrator_logged_in.html:1
msgid "Dear System Manager,"
@@ -6743,11 +6810,11 @@ msgstr ""
msgid "Default display currency"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr ""
@@ -6804,36 +6871,33 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
-msgstr "Verwijder"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
-msgstr "Verwijder"
+msgstr ""
#: frappe/website/doctype/web_form/templates/web_form.html:52
msgctxt "Button in web form"
msgid "Delete"
-msgstr "Verwijder"
+msgstr ""
#: frappe/www/me.html:65
msgid "Delete Account"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr ""
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6863,7 +6927,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr "Verwijder alles"
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr ""
@@ -6891,6 +6963,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6905,16 +6981,20 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6945,7 +7025,7 @@ msgstr ""
msgid "Deleted all documents successfully"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr ""
@@ -7052,6 +7132,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7134,16 +7215,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7173,11 +7259,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr ""
@@ -7325,10 +7411,11 @@ msgstr "Uitgeschakeld"
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr ""
@@ -7342,11 +7429,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7420,11 +7507,11 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7432,7 +7519,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7487,7 +7574,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7510,7 +7596,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7523,7 +7608,7 @@ msgstr ""
msgid "DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr ""
@@ -7591,10 +7676,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr ""
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7612,15 +7693,15 @@ msgstr ""
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr ""
@@ -7634,7 +7715,7 @@ msgstr ""
msgid "Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7673,7 +7754,7 @@ msgstr ""
msgid "Document Follow"
msgstr ""
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr ""
@@ -7696,19 +7777,19 @@ msgstr ""
msgid "Document Links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7725,10 +7806,10 @@ msgstr ""
#: frappe/email/doctype/document_follow/document_follow.json
#: frappe/public/js/frappe/form/form_tour.js:62
msgid "Document Name"
-msgstr ""
+msgstr "Documentnaam"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7746,7 +7827,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr ""
@@ -7850,7 +7931,7 @@ msgstr ""
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7870,11 +7951,11 @@ msgstr "Soort document"
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr ""
@@ -7903,27 +7984,27 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr ""
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr ""
@@ -7935,11 +8016,11 @@ msgstr ""
msgid "Document not Relinked"
msgstr ""
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
@@ -7955,10 +8036,6 @@ msgstr ""
msgid "Document {0} has been set to state {1} by {2}"
msgstr ""
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr ""
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8096,7 +8173,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr ""
@@ -8180,7 +8257,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "Dupliceer"
@@ -8188,19 +8265,15 @@ msgstr "Dupliceer"
msgid "Duplicate Entry"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr ""
@@ -8208,6 +8281,18 @@ msgstr ""
msgid "Duplicate field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8295,9 +8380,10 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8308,7 +8394,7 @@ msgstr ""
msgid "Edit"
msgstr "Bewerk"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Bewerk"
@@ -8318,7 +8404,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Bewerk"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Bewerk"
@@ -8339,15 +8425,15 @@ msgstr ""
msgid "Edit Custom Block"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8361,7 +8447,7 @@ msgstr ""
msgid "Edit Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr ""
@@ -8374,7 +8460,7 @@ msgstr ""
msgid "Edit Format"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8418,7 +8504,7 @@ msgstr ""
#: frappe/www/me.html:38
msgid "Edit Profile"
-msgstr ""
+msgstr "Bewerk profiel"
#: frappe/printing/page/print_format_builder/print_format_builder.js:173
msgid "Edit Properties"
@@ -8432,7 +8518,7 @@ msgstr ""
msgid "Edit Shortcut"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8455,11 +8541,11 @@ msgstr ""
msgid "Edit the {0} Doctype"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr ""
@@ -8515,6 +8601,7 @@ msgstr ""
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8530,12 +8617,14 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8570,7 +8659,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr ""
@@ -8738,7 +8827,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/public/js/frappe/views/communication.js:98
msgid "Email Template"
-msgstr ""
+msgstr "Email sjabloon"
#. Label of the enable_email_threads_on_assigned_document (Check) field in
#. DocType 'Notification Settings'
@@ -8768,7 +8857,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8807,7 +8896,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -8815,7 +8904,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9134,11 +9223,11 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr ""
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9165,6 +9254,10 @@ msgstr ""
msgid "Enter folder name"
msgstr ""
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9195,7 +9288,7 @@ msgstr ""
msgid "Entity Type"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Is gelijk aan"
@@ -9229,7 +9322,7 @@ msgstr "Is gelijk aan"
msgid "Error"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr ""
@@ -9244,12 +9337,12 @@ msgstr ""
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ""
@@ -9287,15 +9380,15 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9311,15 +9404,15 @@ msgstr ""
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9329,13 +9422,19 @@ msgstr ""
msgid "Errors"
msgstr ""
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/core/doctype/communication/communication.json
#: frappe/desk/doctype/event/event.json
msgid "Event"
-msgstr ""
+msgstr "Evenement"
#. Label of the event_category (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -9347,6 +9446,11 @@ msgstr ""
msgid "Event Frequency"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9372,11 +9476,11 @@ msgstr ""
msgid "Event Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr ""
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr ""
@@ -9398,6 +9502,7 @@ msgid "Exact Copies"
msgstr ""
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr ""
@@ -9468,7 +9573,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9489,21 +9594,21 @@ msgstr ""
msgid "Expand"
msgstr "Uitbreiden"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Uitbreiden"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr ""
@@ -9543,7 +9648,7 @@ 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 "Verloopt op"
#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -9555,20 +9660,21 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exporteren"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exporteren"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr ""
@@ -9607,11 +9713,11 @@ msgstr ""
msgid "Export Type"
msgstr "Exporttype"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr ""
@@ -9627,6 +9733,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9639,7 +9749,7 @@ msgstr ""
msgid "Export without main header"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr ""
@@ -9679,7 +9789,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr ""
@@ -9728,12 +9838,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr ""
@@ -9796,7 +9911,7 @@ msgstr ""
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9808,7 +9923,7 @@ msgstr ""
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr ""
@@ -9824,7 +9939,7 @@ msgstr ""
msgid "Failed to request login to Frappe Cloud"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr ""
@@ -9866,9 +9981,9 @@ msgstr ""
msgid "Fax"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
-msgstr ""
+msgstr "Terugkoppeling"
#: frappe/desk/page/setup_wizard/install_fixtures.py:29
msgid "Female"
@@ -9926,8 +10041,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9937,7 +10052,7 @@ msgstr "Veld"
msgid "Field \"route\" is mandatory for Web Views"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -9945,7 +10060,7 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr ""
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -9954,7 +10069,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10002,7 +10117,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10010,11 +10125,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10036,7 +10151,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10045,7 +10160,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10053,7 +10168,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10069,7 +10184,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10117,7 +10232,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10141,7 +10256,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10198,7 +10313,7 @@ msgstr ""
#: frappe/core/doctype/file/file.json
#: frappe/public/js/frappe/data_import/data_exporter.js:19
msgid "File Type"
-msgstr ""
+msgstr "Bestandstype"
#. Label of the file_url (Code) field in DocType 'File'
#: frappe/core/doctype/file/file.json
@@ -10217,12 +10332,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10249,12 +10364,17 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10273,7 +10393,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr ""
@@ -10282,11 +10402,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10305,10 +10425,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10332,7 +10456,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10363,10 +10487,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10384,14 +10504,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10479,11 +10599,11 @@ msgstr ""
msgid "Fold"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10512,12 +10632,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10525,7 +10645,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10533,7 +10653,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10541,7 +10661,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10610,7 +10730,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10647,7 +10767,7 @@ msgstr ""
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10680,15 +10800,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10712,20 +10823,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10753,7 +10860,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10803,7 +10910,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -10982,7 +11090,7 @@ msgstr ""
msgid "From"
msgstr "Van"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "Van"
@@ -11003,7 +11111,7 @@ msgstr "Van Datum"
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11044,7 +11152,7 @@ msgstr ""
msgid "Full Name"
msgstr "Volledige naam"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11057,20 +11165,20 @@ msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
-msgstr ""
+msgstr "Functie"
#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11135,11 +11243,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11149,8 +11257,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11261,7 +11369,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11321,7 +11429,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11501,7 +11609,7 @@ msgstr ""
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Green"
-msgstr ""
+msgstr "Groen"
#: frappe/public/js/form_builder/components/controls/TableControl.vue:53
msgid "Grid Empty State"
@@ -11547,7 +11655,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11627,6 +11735,10 @@ msgstr ""
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11697,7 +11809,7 @@ msgstr ""
#: frappe/templates/signup.html:19
msgid "Have an account? Login"
-msgstr ""
+msgstr "Bestaande account? Aanmelden"
#. Label of the header (Check) field in DocType 'SMS Parameter'
#. Label of the header_section (Section Break) field in DocType 'Letter Head'
@@ -11715,7 +11827,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11751,7 +11863,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11788,7 +11900,7 @@ msgstr "Hallo,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11843,7 +11955,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11879,8 +11991,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12046,14 +12158,14 @@ msgstr ""
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
#: frappe/www/contact.py:25 frappe/www/login.html:170 frappe/www/me.html:76
#: frappe/www/message.html:29
msgid "Home"
-msgstr ""
+msgstr "Thuis"
#. Label of the home_page (Data) field in DocType 'Role'
#. Label of the home_page (Data) field in DocType 'Website Settings'
@@ -12129,18 +12241,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12191,7 +12303,6 @@ msgid "IP Address"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12212,11 +12323,16 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Icoon"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12227,6 +12343,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12258,13 +12378,13 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr ""
@@ -12391,12 +12511,20 @@ msgstr ""
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
@@ -12496,7 +12624,7 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr ""
@@ -12562,11 +12690,11 @@ msgstr ""
msgid "Image Width"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr ""
@@ -12600,7 +12728,7 @@ msgstr ""
msgid "Impersonated by {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12618,14 +12746,15 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
-msgstr ""
+msgstr "Importeren"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
-msgstr ""
+msgstr "Importeren"
#: frappe/email/doctype/email_group/email_group.js:14
msgid "Import Email From"
@@ -12845,15 +12974,15 @@ msgid "Include Web View Link in Email"
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr ""
@@ -12920,11 +13049,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr ""
@@ -12976,7 +13105,7 @@ msgstr ""
msgid "Indicator Color"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr ""
@@ -13023,15 +13152,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr ""
@@ -13061,8 +13190,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr ""
@@ -13088,15 +13217,15 @@ msgstr ""
msgid "Instructions"
msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13164,7 +13293,7 @@ msgstr ""
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr ""
@@ -13173,6 +13302,11 @@ msgstr ""
msgid "Internal record of document shares"
msgstr ""
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13212,13 +13346,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13258,7 +13392,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13266,7 +13400,8 @@ msgstr ""
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr ""
@@ -13274,8 +13409,8 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13299,7 +13434,7 @@ msgstr ""
msgid "Invalid Login Token"
msgstr ""
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr ""
@@ -13307,7 +13442,7 @@ msgstr ""
msgid "Invalid Mail Server. Please rectify and try again."
msgstr ""
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr ""
@@ -13318,8 +13453,8 @@ msgstr ""
msgid "Invalid Operation"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr ""
@@ -13331,7 +13466,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr ""
@@ -13344,11 +13479,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13357,7 +13492,7 @@ msgstr ""
msgid "Invalid Search Field {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr ""
@@ -13376,7 +13511,7 @@ msgstr ""
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr ""
@@ -13388,7 +13523,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13396,19 +13531,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13416,18 +13551,22 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr ""
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr ""
@@ -13436,11 +13575,11 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13448,11 +13587,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13460,11 +13599,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13472,7 +13611,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13489,19 +13628,19 @@ msgstr ""
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13525,11 +13664,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13546,24 +13685,24 @@ msgstr ""
msgid "Invalid username or password"
msgstr ""
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr ""
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13691,7 +13830,7 @@ msgstr ""
msgid "Is Folder"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr ""
@@ -13762,7 +13901,7 @@ msgstr ""
msgid "Is Published Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr ""
@@ -14007,8 +14146,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr ""
@@ -14331,7 +14470,7 @@ msgstr ""
msgid "Label and Type"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr ""
@@ -14354,10 +14493,10 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
-msgstr ""
+msgstr "Taal"
#. Label of the language_code (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
@@ -14400,6 +14539,14 @@ msgstr ""
msgid "Last Active"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14524,6 +14671,11 @@ msgstr ""
msgid "Last synced {0}"
msgstr ""
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "Layout"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
@@ -14551,9 +14703,15 @@ msgstr ""
msgid "Ledger"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14647,7 +14805,7 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14676,7 +14834,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14698,7 +14856,7 @@ msgstr ""
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr ""
@@ -14739,7 +14897,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Leuk vinden"
@@ -14763,7 +14921,7 @@ msgstr ""
msgid "Limit"
msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr ""
@@ -14889,7 +15047,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -14907,7 +15065,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
@@ -14943,13 +15101,14 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "LinkedIn"
-msgstr ""
+msgstr "LinkedIn"
#. Label of the links (Table) field in DocType 'Address'
#. Label of the links (Table) field in DocType 'Contact'
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14971,8 +15130,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr ""
@@ -15002,7 +15161,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -15016,7 +15175,7 @@ msgstr ""
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr ""
@@ -15043,7 +15202,7 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
@@ -15052,7 +15211,7 @@ msgstr ""
msgid "Load Balancing"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15070,10 +15229,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr ""
@@ -15090,8 +15249,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15101,9 +15260,10 @@ msgid "Loading..."
msgstr "Laden ..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
-msgstr ""
+msgstr "Locatie"
#. Label of the log (Code) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
@@ -15174,6 +15334,11 @@ msgstr ""
msgid "Login"
msgstr ""
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15249,7 +15414,7 @@ msgstr ""
msgid "Login to {0}"
msgstr ""
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr ""
@@ -15316,8 +15481,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr ""
@@ -15348,7 +15512,7 @@ msgstr ""
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr ""
@@ -15498,7 +15662,7 @@ msgstr ""
msgid "Mandatory fields required in {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
@@ -15560,7 +15724,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15612,9 +15776,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15676,7 +15843,7 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr ""
@@ -15697,20 +15864,27 @@ msgstr ""
msgid "Maximum {0} rows allowed"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15754,12 +15928,12 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15793,13 +15967,13 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Bericht"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Bericht"
@@ -15830,7 +16004,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr ""
@@ -15864,11 +16038,11 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
-msgstr ""
+msgstr "Meta omschrijving"
#: frappe/website/doctype/web_page/web_page.js:131
msgid "Meta Image"
-msgstr ""
+msgstr "Meta afbeelding"
#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
#. Label of the meta_tags (Table) field in DocType 'Website Route Meta'
@@ -15927,7 +16101,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -15955,7 +16129,7 @@ msgstr ""
#. Name of a DocType
#: frappe/automation/doctype/milestone/milestone.json
msgid "Milestone"
-msgstr ""
+msgstr "Mijlpaal"
#. Label of the milestone_tracker (Link) field in DocType 'Milestone'
#. Name of a DocType
@@ -16016,7 +16190,7 @@ msgstr ""
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16036,7 +16210,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16101,7 +16275,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16148,9 +16322,8 @@ msgstr ""
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16167,7 +16340,7 @@ msgstr ""
msgid "Module to Export"
msgstr ""
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16249,7 +16422,7 @@ msgstr ""
#: frappe/templates/includes/list/list.html:25
#: frappe/templates/includes/search_template.html:13
msgid "More"
-msgstr ""
+msgstr "Meer"
#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission
#. Log'
@@ -16282,7 +16455,7 @@ msgstr ""
msgid "More content for the bottom of the page."
msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr ""
@@ -16297,7 +16470,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr ""
@@ -16309,19 +16482,19 @@ msgstr ""
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16333,7 +16506,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr ""
@@ -16451,7 +16624,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr ""
@@ -16463,7 +16636,7 @@ msgstr ""
msgid "Name of the new Print Format"
msgstr ""
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr ""
@@ -16502,7 +16675,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr ""
@@ -16526,11 +16699,6 @@ msgstr ""
msgid "Navbar Settings"
msgstr ""
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16544,39 +16712,44 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16598,6 +16771,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16614,7 +16788,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16630,8 +16804,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr ""
@@ -16680,7 +16854,7 @@ msgstr ""
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16701,8 +16875,8 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr ""
@@ -16729,8 +16903,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16738,7 +16912,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16781,32 +16955,32 @@ msgstr ""
msgid "New value to be set"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
-msgstr ""
+msgstr "Nieuwe {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr ""
@@ -16818,7 +16992,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16839,7 +17013,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr ""
@@ -16866,12 +17040,16 @@ msgstr ""
msgid "Next Action Email Template"
msgstr ""
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -16938,20 +17116,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -17021,7 +17203,7 @@ msgstr ""
msgid "No Google Calendar Event to sync."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17040,23 +17222,23 @@ msgstr ""
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr ""
@@ -17076,11 +17258,11 @@ msgstr ""
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr ""
@@ -17088,7 +17270,7 @@ msgstr ""
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17096,7 +17278,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17112,7 +17294,7 @@ msgstr ""
msgid "No Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17132,7 +17314,7 @@ msgstr ""
msgid "No changes in document"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17196,7 +17378,7 @@ msgstr ""
msgid "No file attached"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr ""
@@ -17244,11 +17426,11 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
@@ -17257,7 +17439,7 @@ msgstr ""
msgid "No permission to read {0}"
msgstr ""
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr ""
@@ -17273,7 +17455,7 @@ msgstr ""
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr ""
@@ -17281,7 +17463,7 @@ msgstr ""
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17293,11 +17475,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17309,7 +17492,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17318,7 +17501,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17361,12 +17544,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "Niet Toegestaan"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17408,16 +17591,16 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: 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 "Niet toegestaan"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17426,8 +17609,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17447,7 +17630,7 @@ msgstr ""
msgid "Not Sent"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr ""
@@ -17461,15 +17644,15 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr ""
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr ""
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17477,7 +17660,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17497,11 +17680,11 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr ""
@@ -17514,11 +17697,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17546,7 +17729,7 @@ msgstr ""
msgid "Note:"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17578,7 +17761,7 @@ msgstr ""
msgid "Notes:"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr ""
@@ -17590,8 +17773,8 @@ msgstr ""
msgid "Nothing left to undo"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17602,11 +17785,13 @@ msgid "Nothing to update"
msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "Kennisgeving"
@@ -17622,7 +17807,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17631,11 +17816,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17653,13 +17833,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -17895,7 +18077,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17935,7 +18117,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17943,7 +18125,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18010,7 +18192,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18054,7 +18236,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18070,11 +18252,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18095,7 +18277,7 @@ msgstr ""
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
@@ -18118,11 +18300,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18165,7 +18347,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18188,8 +18370,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18225,6 +18407,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18239,7 +18425,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18251,11 +18437,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18270,16 +18456,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18311,7 +18497,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18327,17 +18513,17 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:100
msgid "Option 1"
-msgstr ""
+msgstr "Optie 1"
#: frappe/custom/doctype/custom_field/custom_field.js:102
msgid "Option 2"
-msgstr ""
+msgstr "Optie 2"
#: frappe/custom/doctype/custom_field/custom_field.js:104
msgid "Option 3"
-msgstr ""
+msgstr "Optie 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18371,7 +18557,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
@@ -18380,7 +18566,7 @@ msgstr ""
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18388,7 +18574,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18396,7 +18582,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18412,7 +18598,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18432,8 +18618,12 @@ msgstr ""
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18508,18 +18698,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18543,7 +18735,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18551,11 +18743,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18714,7 +18906,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18730,7 +18922,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18741,7 +18933,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18774,11 +18966,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18792,7 +18984,7 @@ msgstr ""
msgid "Parent Label"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18817,11 +19009,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18840,7 +19032,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18875,13 +19067,13 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/www/login.html:22
msgid "Password"
-msgstr ""
+msgstr "Wachtwoord"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -18890,7 +19082,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18919,11 +19111,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18935,7 +19127,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18997,7 +19189,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19082,15 +19274,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19098,7 +19290,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19108,12 +19304,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19122,11 +19318,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19157,7 +19348,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19168,13 +19358,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19186,11 +19375,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19260,13 +19449,13 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
@@ -19324,7 +19513,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19340,7 +19529,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19348,11 +19537,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19364,13 +19553,13 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
-msgstr ""
+msgstr "Controleer uw e-mail voor verificatie"
#: frappe/email/smtp.py:134
msgid "Please check your email login credentials."
@@ -19400,7 +19589,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19430,10 +19619,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19446,7 +19635,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19520,15 +19709,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19544,7 +19733,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19564,7 +19753,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19572,7 +19761,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19622,11 +19811,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19634,7 +19823,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19654,7 +19843,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19666,7 +19855,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19694,7 +19883,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19782,7 +19971,7 @@ msgstr ""
#: frappe/templates/discussions/reply_section.html:53
#: frappe/templates/discussions/topic_modal.html:11
msgid "Post"
-msgstr ""
+msgstr "Bericht"
#: frappe/templates/discussions/reply_section.html:40
msgid "Post it here, our mentors will help you out."
@@ -19797,7 +19986,7 @@ msgstr ""
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41
msgid "Postal Code"
-msgstr ""
+msgstr "Postcode"
#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed'
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
@@ -19815,11 +20004,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19871,11 +20060,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19883,7 +20072,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19901,7 +20090,7 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
@@ -19945,16 +20134,16 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20007,19 +20196,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20037,8 +20226,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20082,7 +20272,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20115,11 +20305,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20132,8 +20322,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20172,7 +20362,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20181,11 +20371,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20195,15 +20385,15 @@ msgstr ""
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20252,7 +20442,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20281,20 +20471,20 @@ msgstr ""
#. Success message of the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "Profile updated successfully."
-msgstr ""
+msgstr "Profiel succesvol bijgewerkt."
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
-msgstr ""
+msgstr "Vooruitgang"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:422
msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20364,7 +20554,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Publiek"
@@ -20399,7 +20589,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page/web_page_list.js:5
msgid "Published"
-msgstr ""
+msgstr "Gepubliceerd"
#. Label of a number card in the Website Workspace
#: frappe/website/workspace/website/website.json
@@ -20514,7 +20704,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20576,7 +20766,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20597,7 +20787,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20638,7 +20828,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20730,6 +20920,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20738,7 +20937,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20756,7 +20955,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20767,11 +20966,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20808,7 +21008,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20848,7 +21048,7 @@ msgstr ""
msgid "Reason"
msgstr "Reden"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20890,7 +21090,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20941,7 +21141,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -20950,7 +21150,7 @@ msgstr ""
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Red"
-msgstr ""
+msgstr "Rood"
#. Label of the redirect_http_status (Select) field in DocType 'Website Route
#. Redirect'
@@ -21007,12 +21207,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21228,12 +21428,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21250,7 +21450,7 @@ msgstr ""
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21265,7 +21465,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21276,9 +21476,9 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
-msgstr ""
+msgstr "Geregistreerd maar uitgeschakeld"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
@@ -21322,10 +21522,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr ""
@@ -21337,7 +21535,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21356,7 +21554,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21436,9 +21634,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21466,7 +21664,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21513,7 +21711,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21576,6 +21774,7 @@ msgstr "Allen beantwoorden"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21590,10 +21789,9 @@ msgstr "Allen beantwoorden"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21662,7 +21860,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21696,14 +21894,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21714,7 +21908,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21726,7 +21920,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21734,12 +21928,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21762,7 +21956,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21770,7 +21964,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21829,13 +22023,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -21951,7 +22145,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22009,7 +22203,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22018,7 +22212,7 @@ msgstr ""
msgid "Restore"
msgstr "Herstellen"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22040,6 +22234,11 @@ msgstr ""
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22067,8 +22266,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22115,9 +22314,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22152,8 +22357,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22168,8 +22371,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22213,7 +22415,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22221,11 +22423,9 @@ msgstr ""
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22247,7 +22447,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22275,7 +22475,7 @@ msgstr ""
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Roles"
-msgstr ""
+msgstr "Rollen"
#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -22366,20 +22566,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22406,7 +22606,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22425,14 +22625,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22455,7 +22655,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22535,7 +22735,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22569,7 +22769,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22641,22 +22841,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22669,7 +22870,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22677,7 +22878,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22695,20 +22896,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr ""
@@ -22717,11 +22918,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22925,7 +23126,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22945,7 +23146,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -22963,7 +23164,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -22980,12 +23181,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23057,15 +23258,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23115,24 +23316,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23148,7 +23351,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23192,13 +23395,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23207,7 +23410,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23216,19 +23419,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23253,16 +23456,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23272,7 +23475,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23308,12 +23511,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23330,11 +23527,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23360,13 +23557,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23400,7 +23597,7 @@ msgstr ""
msgid "Select {0}"
msgstr "Selecteer {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23430,6 +23627,11 @@ msgstr ""
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23482,7 +23684,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23545,7 +23747,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
@@ -23584,7 +23786,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23678,7 +23880,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23688,7 +23890,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23715,11 +23917,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23747,16 +23953,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr ""
@@ -23797,7 +24001,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -23823,7 +24027,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23866,8 +24070,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23887,12 +24091,12 @@ msgstr ""
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -23996,8 +24200,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24020,11 +24224,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24032,12 +24236,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24066,13 +24270,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24080,7 +24285,7 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
@@ -24140,16 +24345,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24195,7 +24394,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24247,7 +24446,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24367,7 +24566,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24509,14 +24708,14 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
-msgstr ""
+msgstr "Aanmelden is uitgeschakeld"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
#: frappe/www/login.html:156 frappe/www/update-password.html:71
msgid "Sign up"
-msgstr ""
+msgstr "Aanmelden"
#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -24599,7 +24798,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:82
#: frappe/public/js/onboarding_tours/onboarding_tours.js:18
msgid "Skip"
-msgstr ""
+msgstr "Overspringen"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
@@ -24632,7 +24831,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24807,15 +25006,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24846,13 +25045,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24901,7 +25100,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -24940,6 +25139,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24947,6 +25147,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25014,8 +25215,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25187,7 +25388,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25225,7 +25426,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25339,7 +25540,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Onderwerp"
@@ -25353,7 +25554,7 @@ msgstr "Onderwerp"
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25374,44 +25575,44 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
-msgstr ""
+msgstr "Indienen"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
-msgstr ""
+msgstr "Indienen"
#: frappe/website/doctype/web_form/templates/web_form.html:47
msgctxt "Button in web form"
msgid "Submit"
-msgstr ""
+msgstr "Indienen"
#: frappe/public/js/frappe/ui/dialog.js:64
msgctxt "Primary action in dialog"
msgid "Submit"
-msgstr ""
+msgstr "Indienen"
#: frappe/public/js/frappe/ui/messages.js:97
msgctxt "Primary action of prompt dialog"
msgid "Submit"
-msgstr ""
+msgstr "Indienen"
#: frappe/public/js/frappe/desk.js:227
msgctxt "Submit password for Email Account"
msgid "Submit"
-msgstr ""
+msgstr "Indienen"
#. Label of the submit_after_import (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25435,11 +25636,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25465,7 +25666,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
@@ -25500,12 +25701,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25547,7 +25748,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25572,7 +25773,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25597,7 +25798,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25616,7 +25817,7 @@ msgstr ""
#: frappe/public/js/frappe/views/interaction.js:88
msgid "Summary"
-msgstr ""
+msgstr "Overzicht"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -25638,7 +25839,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25651,7 +25852,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25720,9 +25921,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25732,7 +25931,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25859,6 +26058,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25873,7 +26073,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25949,6 +26148,11 @@ msgstr ""
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25965,6 +26169,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26000,7 +26210,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26009,7 +26219,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26027,7 +26237,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26035,11 +26245,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26059,17 +26269,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26126,7 +26336,7 @@ msgstr ""
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Template"
-msgstr ""
+msgstr "Sjabloon"
#: frappe/core/doctype/data_import/importer.py:483
#: frappe/core/doctype/data_import/importer.py:610
@@ -26153,9 +26363,9 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
-msgstr ""
+msgstr "Tijdelijk uitgeschakeld"
#: frappe/core/doctype/translation/test_translation.py:47
#: frappe/core/doctype/translation/test_translation.py:54
@@ -26249,7 +26459,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26301,7 +26511,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26449,7 +26667,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26461,6 +26679,42 @@ msgstr ""
msgid "The total number of user document types limit has been crossed."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 ""
@@ -26502,7 +26756,7 @@ msgstr ""
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr ""
@@ -26510,7 +26764,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26519,7 +26773,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26531,11 +26785,11 @@ msgstr ""
msgid "There is no data to be exported"
msgstr ""
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr ""
@@ -26543,7 +26797,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26559,7 +26813,7 @@ msgstr ""
msgid "There was an error saving filters"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr ""
@@ -26567,11 +26821,11 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr ""
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr ""
@@ -26640,11 +26894,11 @@ msgstr "Dit jaar"
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26668,7 +26922,7 @@ msgstr ""
msgid "This doctype has no orphan fields to trim"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26684,15 +26938,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26705,7 +26959,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26730,11 +26984,11 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
@@ -26753,7 +27007,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26795,15 +27049,15 @@ msgstr ""
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr ""
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr ""
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26811,7 +27065,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr ""
@@ -26835,7 +27089,7 @@ msgstr ""
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr ""
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -26879,7 +27133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr ""
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
@@ -26910,6 +27164,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26917,6 +27172,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Tijd"
@@ -26999,11 +27255,6 @@ msgstr ""
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
@@ -27035,11 +27286,11 @@ msgstr ""
msgid "Timeline Name"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
@@ -27110,7 +27361,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27133,7 +27384,7 @@ msgstr ""
msgid "Title Prefix"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27219,7 +27470,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -27272,31 +27523,14 @@ msgstr ""
msgid "Today"
msgstr "Vandaag"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr ""
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr ""
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27332,7 +27566,7 @@ msgid "Tomorrow"
msgstr "Morgen"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr ""
@@ -27340,18 +27574,22 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
-msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
msgstr ""
+#: frappe/core/doctype/user/user.py:1093
+msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
+msgstr "Te veel gebruikers aangemeld voor kort, zodat de registratie is uitgeschakeld. Probeer het over een uur terug"
+
#. 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
@@ -27404,10 +27642,10 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Totaal"
@@ -27422,7 +27660,7 @@ msgstr ""
msgid "Total Errors (last 1 day)"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr ""
@@ -27522,7 +27760,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27558,7 +27796,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27569,7 +27807,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr ""
@@ -27605,7 +27843,7 @@ msgstr ""
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr ""
@@ -27654,8 +27892,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27701,6 +27939,7 @@ msgstr ""
#. 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 'Event Notifications'
#. 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'
@@ -27714,6 +27953,7 @@ msgstr ""
#: 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/event_notifications/event_notifications.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
@@ -27722,7 +27962,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27889,7 +28129,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -27897,7 +28137,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr ""
@@ -27913,7 +28153,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27934,20 +28174,20 @@ msgstr ""
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr ""
@@ -28021,9 +28261,10 @@ msgstr ""
msgid "Unsafe SQL query"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr ""
@@ -28056,11 +28297,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28080,7 +28321,7 @@ msgstr ""
msgid "Unzipping files..."
msgstr ""
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr ""
@@ -28088,13 +28329,13 @@ msgstr ""
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Bijwerken"
@@ -28165,7 +28406,7 @@ msgstr ""
msgid "Update from Frappe Cloud"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr ""
@@ -28173,8 +28414,7 @@ msgstr ""
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr ""
@@ -28186,11 +28426,11 @@ msgstr ""
msgid "Updated To A New Version 🎉"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr ""
@@ -28215,11 +28455,11 @@ msgstr ""
msgid "Updating naming series options"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr ""
@@ -28227,12 +28467,12 @@ msgstr ""
msgid "Updating {0} of {1}, {2}"
msgstr ""
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28280,6 +28520,7 @@ msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr ""
@@ -28351,7 +28592,7 @@ msgstr ""
msgid "Use of sub-query or function is restricted"
msgstr ""
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr ""
@@ -28385,9 +28626,8 @@ msgstr ""
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28414,11 +28654,11 @@ msgstr ""
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28554,7 +28794,7 @@ msgstr ""
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr ""
@@ -28570,19 +28810,19 @@ msgid "User Permission"
msgstr ""
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr ""
@@ -28655,7 +28895,7 @@ msgstr ""
msgid "User can login using Email id or User Name"
msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr ""
@@ -28689,27 +28929,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr ""
@@ -28718,11 +28958,11 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr ""
@@ -28745,20 +28985,19 @@ msgstr ""
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/www/login.py:110
msgid "Username"
-msgstr ""
+msgstr "Gebruikersnaam"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr ""
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28829,7 +29068,7 @@ msgstr ""
msgid "Validate SSL Certificate"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr ""
@@ -28858,7 +29097,7 @@ msgstr ""
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28885,15 +29124,19 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28905,7 +29148,7 @@ msgstr ""
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28930,7 +29173,13 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr ""
@@ -28947,7 +29196,7 @@ msgstr ""
msgid "Value {0} must in {1} format"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr ""
@@ -28956,11 +29205,11 @@ msgstr ""
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr ""
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr ""
@@ -28968,7 +29217,7 @@ msgstr ""
msgid "Verification Link"
msgstr ""
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr ""
@@ -28982,7 +29231,7 @@ msgid "Verified"
msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr ""
@@ -29018,7 +29267,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr ""
@@ -29030,7 +29279,7 @@ msgstr ""
msgid "View File"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr ""
@@ -29067,7 +29316,7 @@ msgstr ""
msgid "View Settings"
msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29076,14 +29325,11 @@ msgstr ""
msgid "View Switcher"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29099,7 +29345,7 @@ msgstr ""
msgid "View this in your browser"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr ""
@@ -29135,7 +29381,7 @@ msgstr ""
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29183,7 +29429,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29192,7 +29438,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr ""
@@ -29269,14 +29515,14 @@ msgstr ""
#. Name of a DocType
#: frappe/website/doctype/web_page/web_page.json
msgid "Web Page"
-msgstr ""
+msgstr "Webpagina"
#. 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:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr ""
@@ -29373,7 +29619,7 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29428,7 +29674,7 @@ msgstr ""
msgid "Website Search Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr ""
@@ -29493,6 +29739,11 @@ msgstr ""
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29580,15 +29831,15 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr ""
@@ -29610,10 +29861,6 @@ msgstr ""
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29631,7 +29878,7 @@ msgstr ""
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr ""
@@ -29752,6 +29999,10 @@ msgstr ""
msgid "Workflow Document State"
msgstr ""
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -29769,11 +30020,11 @@ msgstr ""
msgid "Workflow State Field"
msgstr ""
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr ""
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr ""
@@ -29781,7 +30032,7 @@ msgstr ""
msgid "Workflow States Don't Exist"
msgstr ""
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr ""
@@ -29816,18 +30067,15 @@ msgstr ""
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29854,7 +30102,6 @@ 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 ""
@@ -29868,27 +30115,15 @@ msgstr ""
msgid "Workspace Quick List"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr ""
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr ""
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -29898,13 +30133,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr ""
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr ""
@@ -29933,11 +30162,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr ""
@@ -29955,7 +30185,7 @@ msgstr ""
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -29970,7 +30200,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr ""
@@ -30018,10 +30248,14 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30030,10 +30264,10 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -30069,7 +30303,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30077,7 +30311,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30085,11 +30319,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30112,7 +30346,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -30120,10 +30354,14 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr ""
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -30138,9 +30376,9 @@ msgstr ""
#: frappe/www/desk.py:27
msgid "You are not permitted to access this page."
-msgstr ""
+msgstr "U bent niet toegestaan om deze pagina te bekijken."
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30148,7 +30386,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -30161,7 +30399,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr ""
@@ -30185,10 +30423,6 @@ msgstr ""
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
@@ -30243,7 +30477,7 @@ msgstr ""
msgid "You can try changing the filters of your report."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr ""
@@ -30273,6 +30507,10 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -30299,7 +30537,6 @@ msgid "You changed {0} to {1}"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr ""
@@ -30308,11 +30545,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
@@ -30324,15 +30557,19 @@ msgstr ""
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
@@ -30368,7 +30605,7 @@ msgstr ""
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
@@ -30388,7 +30625,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30397,7 +30634,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr ""
@@ -30413,12 +30649,12 @@ msgstr ""
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr ""
@@ -30426,7 +30662,7 @@ msgstr ""
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr ""
@@ -30458,7 +30694,7 @@ msgstr ""
msgid "You need to have \"Share\" permission"
msgstr ""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr ""
@@ -30478,7 +30714,7 @@ msgstr ""
msgid "You need write permission on {0} {1} to rename"
msgstr ""
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
@@ -30525,7 +30761,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30602,7 +30838,7 @@ msgstr ""
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr ""
@@ -30644,7 +30880,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30666,7 +30902,7 @@ msgstr ""
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30685,9 +30921,9 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
-msgstr ""
+msgstr "en"
#: frappe/public/js/frappe/ui/sort_selector.html:5
#: frappe/public/js/frappe/ui/sort_selector.js:48
@@ -30708,7 +30944,7 @@ msgstr ""
msgid "cProfile Output"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr ""
@@ -30724,7 +30960,9 @@ msgid "canceled"
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30748,7 +30986,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30806,7 +31044,7 @@ msgstr ""
msgid "descending"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr ""
@@ -30816,7 +31054,7 @@ msgstr ""
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr ""
@@ -30858,12 +31096,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr ""
@@ -30919,12 +31161,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr ""
@@ -30939,6 +31181,20 @@ msgstr ""
msgid "import"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -30978,16 +31234,11 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr ""
@@ -31006,15 +31257,15 @@ msgstr ""
msgid "mm/dd/yyyy"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr ""
@@ -31076,7 +31327,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr ""
@@ -31149,7 +31400,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -31233,11 +31484,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr ""
@@ -31335,11 +31586,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31375,11 +31628,11 @@ msgstr ""
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31396,8 +31649,8 @@ msgstr ""
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31410,13 +31663,13 @@ msgid "{0} Chart"
msgstr ""
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31450,11 +31703,11 @@ msgstr ""
msgid "{0} Map"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31462,7 +31715,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr ""
@@ -31475,11 +31728,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr ""
@@ -31541,7 +31794,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31570,16 +31823,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr ""
@@ -31596,11 +31852,19 @@ msgstr ""
msgid "{0} days ago"
msgstr "{0} dagen geleden"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
@@ -31625,7 +31889,7 @@ msgstr "{0} u"
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31646,7 +31910,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr ""
@@ -31654,7 +31922,15 @@ msgstr ""
msgid "{0} is a not a valid zip file"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr ""
@@ -31662,6 +31938,15 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31671,22 +31956,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr ""
@@ -31699,10 +31998,14 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31719,12 +32022,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31732,23 +32035,23 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr ""
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31764,6 +32067,11 @@ msgstr ""
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr ""
@@ -31772,10 +32080,12 @@ msgstr ""
msgid "{0} is not like {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr ""
@@ -31784,36 +32094,50 @@ msgstr ""
msgid "{0} is now default print format for {1} doctype"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} is verplicht"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr ""
@@ -31841,35 +32165,35 @@ msgstr "{0} minuten geleden"
msgid "{0} months ago"
msgstr "{0} maanden geleden"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31886,11 +32210,11 @@ msgid "{0} not allowed to be renamed"
msgstr ""
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31919,7 +32243,7 @@ msgstr ""
msgid "{0} records deleted"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr ""
@@ -31944,7 +32268,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr ""
@@ -31958,7 +32282,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr ""
@@ -31966,7 +32290,7 @@ msgstr ""
msgid "{0} self assigned this task: {1}"
msgstr ""
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr ""
@@ -32034,7 +32358,7 @@ msgstr ""
msgid "{0} weeks ago"
msgstr "{0} weken geleden"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32046,7 +32370,7 @@ msgstr "{0} j"
msgid "{0} years ago"
msgstr "{0} jaar geleden"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr ""
@@ -32054,11 +32378,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32070,11 +32394,11 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr ""
@@ -32082,87 +32406,59 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr ""
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr ""
@@ -32170,15 +32466,59 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32191,15 +32531,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr ""
@@ -32219,11 +32559,11 @@ msgstr ""
msgid "{count} rows selected"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr ""
diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po
index 847060eb9c..7bb88807cc 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -28,7 +28,7 @@ msgstr "!="
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Company History\""
-msgstr "Historia firmy"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:202
msgid "\"Parent\" signifies the parent table in which this row must be added"
@@ -38,9 +38,9 @@ msgstr "\"Parent\" oznacza tabelę nadrzędną, w której ten wiersz ma zostać
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Team Members\" or \"Management\""
-msgstr "Członkowie zespołu lub Zarząd"
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "gowogin"
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. i współtwórcy"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr ""
@@ -90,19 +90,19 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' nie jest prawidłowym numerem IBAN"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nie jest prawidłowym adresem URL"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Obowiązkowy)"
@@ -119,7 +119,7 @@ msgstr "+ Dodaj / Usuń pola"
#. State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "0 - Draft; 1 - Submitted; 2 - Cancelled"
-msgstr "0 - Projekt; 1 - Wysłane; 2 - Anulowane"
+msgstr ""
#. Description of the 'Minimum Password Score' (Select) field in DocType
#. 'System Settings'
@@ -138,9 +138,9 @@ msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "0 is highest"
-msgstr "0 jest najwyższą wartością"
+msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Prawda i 0 = Fałsz"
@@ -159,7 +159,7 @@ msgstr "1 dzień"
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 raport"
@@ -190,7 +190,7 @@ msgstr "Miesiąc temu"
msgid "1 of 2"
msgstr "1 z 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 rekord zostanie wyeksportowany"
@@ -555,18 +555,7 @@ msgid "* * * * *\n"
"* - Any value\n"
"/ - Step values\n"
"
\n"
-msgstr "* * * * *\n"
-"┬ ┬ ┬ ┬ ┬ ┬\n"
-"│ │ │ │ │\n"
-"│ │ │ │ └ dzień tygodnia (0 - 6) (0 to niedziela)\n"
-"│ │ │ └───── miesiąc (1 - 12)\n"
-"│ │ └────────── dzień miesiąca (1 - 31)\n"
-"│ └─────────────── godzina (0 - 23)\n"
-"└───────────────────── minuta (0 - 59)\n\n"
-"---\n\n"
-"* - Dowolna wartość\n"
-"/ - Wartości kroków\n"
-"
\n"
+msgstr ""
#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
@@ -598,21 +587,21 @@ msgstr "Ostrzeżenie: To pole jest generowane przez system i mo
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "="
-msgstr "="
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">"
-msgstr ">"
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">="
-msgstr ">="
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "Nazwa DocType musi zaczynać się literą i może składać się wyłącznie z liter, cyfr, spacji, podkreśleń i myślników"
@@ -626,7 +615,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "Pole o nazwie {0} już istnieje w {1}"
@@ -650,7 +639,7 @@ msgstr ""
#. Description of the 'Symbol' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "A symbol for this currency. For e.g. $"
-msgstr "Symbol waluty. Np. $"
+msgstr ""
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
msgid "A template already exists for field {0} of {1}"
@@ -670,67 +659,67 @@ msgstr "Słowo samo w sobie jest łatwe do odgadnięcia."
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A0"
-msgstr "A0"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A1"
-msgstr "A1"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A2"
-msgstr "A2"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A3"
-msgstr "A3"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A4"
-msgstr "A4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A5"
-msgstr "A5"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A6"
-msgstr "A6"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A7"
-msgstr "A7"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A8"
-msgstr "A8"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A9"
-msgstr "A9"
+msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "ALL"
-msgstr "WSZYSTKO"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr "API"
+msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "API Access"
-msgstr "Dostęp do API"
+msgstr ""
#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -769,7 +758,7 @@ msgstr ""
#. Description of the 'API Key' (Data) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "API Key cannot be regenerated"
-msgstr "Klucz API nie może być ponownie wygenerowany"
+msgstr ""
#: frappe/core/doctype/user/user.js:463
msgid "API Keys"
@@ -784,7 +773,7 @@ msgstr ""
#. Label of the api_method (Data) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "API Method"
-msgstr "Metoda API"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/api_request_log/api_request_log.json
@@ -806,7 +795,7 @@ msgstr "Tajny klucz API"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "ASC"
-msgstr "ROSNĄCO"
+msgstr ""
#. Label of a standard help item
#. Type: Action
@@ -895,7 +884,7 @@ msgstr "Konto"
#. DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Account Deletion Settings"
-msgstr "Ustawienia usuwania konta"
+msgstr ""
#. Name of a role
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -938,14 +927,14 @@ msgstr "Akcja"
#. Label of the action (Small Text) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action / Route"
-msgstr "Akcja / Trasa"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:305
#: frappe/public/js/frappe/widgets/onboarding_widget.js:376
msgid "Action Complete"
msgstr "Akcja ukończona"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Akcja nie powiodła się"
@@ -957,12 +946,12 @@ 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 "Limit czasu akcji (sekundy)"
+msgstr ""
#. Label of the action_type (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action Type"
-msgstr "Rodzaj działania"
+msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:120
msgid "Action {0} completed successfully on {1} {2}. View it {3}"
@@ -994,20 +983,20 @@ msgstr ""
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Akcje"
#. Label of the activate (Check) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
msgid "Activate"
-msgstr "Aktywuj"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
@@ -1031,7 +1020,7 @@ msgstr "Usługa 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 "Domeny aktywne"
+msgstr ""
#. Label of the active_sessions (Table) field in DocType 'User'
#. Label of the active_sessions (Int) field in DocType 'System Health Report'
@@ -1057,20 +1046,20 @@ msgstr "Aktywność"
msgid "Activity Log"
msgstr "Log aktywności"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Dodaj"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Dodaj / Usuń kolumny"
@@ -1078,11 +1067,11 @@ msgstr "Dodaj / Usuń kolumny"
msgid "Add / Update"
msgstr "Dodaj / Aktualizuj"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Dodaj nową regułę"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Dodać załącznik"
@@ -1090,23 +1079,27 @@ msgstr "Dodać załącznik"
#. Label of the add_background_image (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Background Image"
-msgstr "Dodaj obraz tła"
+msgstr ""
#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Bottom"
-msgstr "Dodaj obramowanie na dole"
+msgstr ""
#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Top"
-msgstr "Dodaj obramowanie na górze"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1115,8 +1108,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1134,12 +1127,12 @@ msgstr "Dodaj kontakty"
#. Label of the add_container (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Container"
-msgstr "Dodaj kontener"
+msgstr ""
#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Add Custom Tags"
-msgstr "Dodaj niestandardowe tagi"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
#: frappe/public/js/frappe/widgets/widget_dialog.js:716
@@ -1149,7 +1142,7 @@ msgstr "Dodaj filtry"
#. Label of the add_shade (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Gray Background"
-msgstr "Dodaj szare tło"
+msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
#: frappe/public/js/frappe/ui/group_by/group_by.js:430
@@ -1160,11 +1153,7 @@ msgstr "Dodaj grupę"
msgid "Add Indexes"
msgstr "Dodaj indeksy"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Dodaj wiele"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Dodaj nową regułę uprawnień"
@@ -1177,17 +1166,13 @@ msgstr "Dodaj uczestników"
msgid "Add Query Parameters"
msgstr "Dodaj parametry zapytania"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Dodaj role"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr "Dodaj wiersz"
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Dodaj podpis"
@@ -1206,23 +1191,23 @@ msgstr "Dodaj przestrzeń na górze"
msgid "Add Subscribers"
msgstr "Dodaj subskrybentów"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Dodaj tagi"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Dodaj tagi"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Dodaj szablon"
#. Label of the add_total_row (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Add Total Row"
-msgstr "Dodaj całkowitą liczbę wierszy"
+msgstr ""
#. Label of the add_translate_data (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -1232,7 +1217,7 @@ 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 "Dodaj link do usuwania subskrypcji"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
@@ -1265,19 +1250,19 @@ msgstr "Dodaj komentarz"
msgid "Add a new section"
msgstr "Dodaj nową sekcję"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Dodaj wiersz powyżej bieżącego wiersza"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Dodaj wiersz na dole"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Dodaj wiersz na górze"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Dodaj wiersz poniżej bieżącego wiersza"
@@ -1295,6 +1280,10 @@ msgstr "Dodaj kolumnę"
msgid "Add field"
msgstr "Dodaj pole"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1308,6 +1297,10 @@ msgstr ""
msgid "Add page break"
msgstr "Dodaj podział strony"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Dodaj skrypt dla tabeli podrzędnej"
@@ -1326,7 +1319,7 @@ msgid "Add tab"
msgstr "Dodaj kartę"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr ""
@@ -1366,8 +1359,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Dodano {0} ({1})"
@@ -1381,7 +1374,7 @@ msgstr "Dodano {0} ({1})"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Additional Permissions"
-msgstr "Dodatkowe uprawnienia"
+msgstr ""
#. Name of a DocType
#. Label of the address (Link) field in DocType 'Contact'
@@ -1421,7 +1414,7 @@ msgstr "Szablon adresu"
#: frappe/contacts/doctype/address/address.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Title"
-msgstr "Tytuł adresu"
+msgstr ""
#: frappe/contacts/doctype/address/address.py:71
msgid "Address Title is mandatory."
@@ -1430,7 +1423,7 @@ msgstr "Tytuł adresu jest obowiązkowy."
#. Label of the address_type (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Address Type"
-msgstr "Typ adresu"
+msgstr ""
#. Description of the 'Address' (Small Text) field in DocType 'Website
#. Settings'
@@ -1457,7 +1450,7 @@ msgstr "Dodaje niestandardowy skrypt klienta do DocType"
msgid "Adds a custom field to a DocType"
msgstr "Dodaje niestandardowe pole do DocType"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Administracja"
@@ -1484,15 +1477,15 @@ msgstr "Administracja"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr ""
@@ -1501,23 +1494,23 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Advanced"
-msgstr "Zaawansowany"
+msgstr ""
#. Label of the advanced_control_section (Section Break) field in DocType 'User
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Advanced Control"
-msgstr "Zaawansowana kontrola"
+msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Wyszukiwanie zaawansowane"
#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Advanced Settings"
-msgstr "Zaawansowane ustawienia"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:64
#: frappe/public/js/frappe/ui/filters/filter.js:70
@@ -1527,12 +1520,12 @@ msgstr "Po"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Cancel"
-msgstr "Po anulowaniu"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Delete"
-msgstr "Po usunięciu"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -1557,7 +1550,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 "Po zapisaniu (przesłany dokument)"
+msgstr ""
#. Label of the section_break_5 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1567,7 +1560,7 @@ msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Submit"
-msgstr "Po przesłaniu"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
@@ -1580,7 +1573,7 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Aggregate Function Based On"
-msgstr "Funkcja agregująca na podstawie"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410
msgid "Aggregate Function field is required to create a dashboard chart"
@@ -1589,9 +1582,9 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Alert"
-msgstr "Alarm"
+msgstr ""
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1604,17 +1597,26 @@ msgstr ""
#. Label of the align_labels_right (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Align Labels to the Right"
-msgstr "Wyrównaj etykiety po prawej"
+msgstr ""
#. Label of the right (Check) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Align Right"
-msgstr "Wyrównaj do prawej"
+msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:479
msgid "Align Value"
msgstr ""
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1647,7 +1649,7 @@ msgstr ""
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Cały dzień"
@@ -1659,11 +1661,11 @@ msgstr ""
msgid "All Records"
msgstr "Wszystkie rekordy"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr ""
@@ -1683,7 +1685,7 @@ msgstr ""
#. Label of the allocated_to (Link) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
msgid "Allocated To"
-msgstr "Przydzielonych Do"
+msgstr ""
#. Label of the allow (Link) field in DocType 'User Permission'
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
@@ -1702,14 +1704,14 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow Auto Repeat"
-msgstr "Zezwól na automatyczne powtarzanie"
+msgstr ""
#. Label of the allow_bulk_edit (Check) field in DocType 'DocField'
#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow Bulk Edit"
-msgstr "Zezwól na dużą liczbę edycji"
+msgstr ""
#. Label of the allow_edit (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
@@ -1733,53 +1735,53 @@ msgstr ""
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
-msgstr "Pozwól gościowi"
+msgstr ""
#. Label of the allow_guest_to_view (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Guest to View"
-msgstr "Pozostawić do gości Zobacz"
+msgstr ""
#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Guests to Upload Files"
-msgstr "Zezwalaj gościom na przesyłanie plików"
+msgstr ""
#. Label of the allow_import (Check) field in DocType 'DocType'
#. Label of the allow_import (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow Import (via Data Import Tool)"
-msgstr "Zezwolić na przywóz (poprzez dane narzędzia importu)"
+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 "Zezwalaj na logowanie po błędzie"
+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 "Zezwalaj na logowanie przy użyciu numeru telefonu komórkowego"
+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 "Zezwalaj na logowanie przy użyciu nazwy użytkownika"
+msgstr ""
#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Allow Modules"
-msgstr "Zezwalaj na moduły"
+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 "Pozwól na Drukowanie dla Anulowanych"
+msgstr ""
#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
@@ -1791,12 +1793,12 @@ msgstr ""
#. Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Allow Read On All Link Options"
-msgstr "Zezwól na odczyt wszystkich opcji łącza"
+msgstr ""
#. Label of the allow_rename (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Rename"
-msgstr "Zezwól na zmianę nazwy"
+msgstr ""
#. Label of the roles_permission (Section Break) field in DocType 'Role
#. Permission for Page and Report'
@@ -1805,13 +1807,13 @@ msgstr "Zezwól na zmianę nazwy"
#: 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 "Pozostawić Roles"
+msgstr ""
#. Label of the allow_self_approval (Check) field in DocType 'Workflow
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow Self Approval"
-msgstr "Zezwalaj na samoobsługę"
+msgstr ""
#. Label of the enable_telemetry (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -1822,7 +1824,7 @@ msgstr ""
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow approval for creator of the document"
-msgstr "Zezwalaj na zatwierdzenie twórcy dokumentu"
+msgstr ""
#. Label of the allow_comments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1839,7 +1841,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow document creation via Email"
-msgstr "Zezwalaj na tworzenie dokumentów przez e-mail"
+msgstr ""
#. Label of the allow_edit (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1857,7 +1859,7 @@ msgstr "Opcja \"Zezwalaj na masową edycję\" pozwala na edycję wielu rekordów
#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Allow events in timeline"
-msgstr "Zezwalaj na wydarzenia na osi czasu"
+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'
@@ -1867,7 +1869,7 @@ msgstr "Zezwalaj na wydarzenia na osi czasu"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow in Quick Entry"
-msgstr "Zezwalaj w szybkim wpisie"
+msgstr ""
#. Label of the allow_incomplete (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1886,19 +1888,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 "Zezwól na Wysłanie"
+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 "Pozwól tylko na jedną sesję na użytkownika"
+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 "Pozostawić Podział strony wewnątrz tabel"
+msgstr ""
#. Label of the allow_print (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1913,7 +1915,7 @@ msgstr ""
#. Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Allow saving if mandatory fields are not filled"
-msgstr "Pozwól oszczędności, jeśli wymagane pola nie są wypełnione"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:424
msgid "Allow sending usage data for improving applications"
@@ -1922,12 +1924,12 @@ 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 "Zezwól użytkownikowi na logowanie się tylko po tych godzinach (0-24)"
+msgstr ""
#. Description of the 'Login Before' (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Allow user to login only before this hour (0-24)"
-msgstr "Zezwól użytkownikowi na logowanie się tylko przed tymi godzinami (0-24)"
+msgstr ""
#. Description of the 'Login with email link' (Check) field in DocType 'System
#. Settings'
@@ -1938,7 +1940,7 @@ msgstr ""
#. Label of the allowed (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allowed"
-msgstr "Dozwolone"
+msgstr ""
#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
#. Settings'
@@ -1949,7 +1951,7 @@ msgstr ""
#. Label of the allowed_in_mentions (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Allowed In Mentions"
-msgstr "Dozwolony do Oznaczenia"
+msgstr ""
#. Label of the allowed_modules_section (Section Break) field in DocType 'User
#. Type'
@@ -1975,7 +1977,7 @@ msgstr ""
msgid "Allowed embedding domains"
msgstr "Dozwolone domeny osadzania"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -2009,13 +2011,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr ""
@@ -2050,7 +2100,7 @@ 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 "Zawsze dodawaj nagłówek \"Wersja robocza\" podczas drukowania dokumentów w wersji roboczej"
+msgstr ""
#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
#. 'Email Account'
@@ -2071,7 +2121,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Amend"
-msgstr "Modyfikacja"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
@@ -2110,7 +2160,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Zmiana niedozwolona"
@@ -2123,14 +2173,14 @@ msgstr ""
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Wystąpił błąd podczas ustawiania domyślnych ustawień sesji"
#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]"
-msgstr "Plik ikona z .ico rozszerzenia. Powinno być 16 x 16 px. Generowane przy użyciu generator favicon. [favicon-generator.org]"
+msgstr ""
#: frappe/templates/includes/oauth_confirmation.html:38
msgid "An unexpected error occurred while authorizing {}."
@@ -2140,7 +2190,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Analytics"
-msgstr "Analityk"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
@@ -2174,7 +2224,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr ""
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr ""
@@ -2185,9 +2235,9 @@ msgstr ""
#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
-msgstr "Można używać dowolnych języków drukarki opartych na łańcuchach. Pisanie surowych poleceń wymaga znajomości języka ojczystego drukarki dostarczonego przez producenta drukarki. Zapoznaj się z podręcznikiem programisty dostarczonym przez producenta drukarki na temat pisania własnych poleceń. Te polecenia są renderowane po stronie serwera przy użyciu języka Jinja Templating."
+msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2207,7 +2257,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "App"
-msgstr "Aplikacja"
+msgstr ""
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -2237,11 +2287,11 @@ msgstr "Nazwa aplikacji"
msgid "App Name (Client Name)"
msgstr "Nazwa aplikacji (Nazwa klienta)"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "Nie znaleziono aplikacji dla modułu: {0}"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "Aplikacja {0} nie została zainstalowana"
@@ -2252,14 +2302,14 @@ msgstr "Aplikacja {0} nie została zainstalowana"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Append Emails to Sent Folder"
-msgstr "Dołącz wiadomości e-mail do folderu wysłanych"
+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 "Dołącz do"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:202
msgid "Append To can be one of {0}"
@@ -2283,19 +2333,19 @@ msgstr ""
#. 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 aplikacji"
+msgstr ""
#. Label of the app_name (Data) field in DocType 'Installed Application'
#. Label of the app_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/installed_application/installed_application.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Application Name"
-msgstr "Nazwa aplikacji"
+msgstr ""
#. Label of the app_version (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Application Version"
-msgstr "Wersja aplikacji"
+msgstr ""
#: frappe/core/doctype/user_invitation/user_invitation.py:195
msgid "Application is not installed"
@@ -2304,7 +2354,7 @@ msgstr ""
#. Label of the doctype_or_field (Select) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Applied On"
-msgstr "Data zastosowania"
+msgstr ""
#. Label of the doc_type (Link) field in DocType 'Permission Type'
#: frappe/core/doctype/permission_type/permission_type.json
@@ -2315,7 +2365,7 @@ msgstr ""
msgid "Apply"
msgstr "Zastosuj"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2324,11 +2374,15 @@ msgstr ""
msgid "Apply Filters"
msgstr "Zastosuj filtry"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+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 "Zastosuj ścisłe uprawnienia użytkownika"
+msgstr ""
#. Label of the view (Select) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
@@ -2339,7 +2393,7 @@ msgstr "Zastosuj do"
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Apply To All Document Types"
-msgstr "Zastosuj do wszystkich typów dokumentów"
+msgstr ""
#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
@@ -2357,13 +2411,13 @@ 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 "Zastosuj tę regułę, jeśli Użytkownik nie jest właścicielem"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
msgstr ""
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Zastosowanie: {0}"
@@ -2371,18 +2425,11 @@ msgstr "Zastosowanie: {0}"
msgid "Approval Required"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Aplikacje"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2405,16 +2452,16 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr "Czy na pewno chcesz anulować zaproszenie?"
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Czy na pewno chcesz usunąć wszystkie wiersze?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Czy jesteś pewien, że chcesz usunąć ten załącznik?"
@@ -2433,19 +2480,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr "Czy na pewno chcesz usunąć ten rekord?"
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr "Czy na pewno chcesz odrzucić zmiany?"
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "Czy na pewno chcesz wygenerować nowy raport?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Czy na pewno chcesz połączyć {0} z {1}?"
@@ -2465,7 +2512,7 @@ msgstr ""
msgid "Are you sure you want to remove all failed jobs?"
msgstr "Czy na pewno chcesz usunąć wszystkie nieudane zadania?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "Czy na pewno chcesz usunąć filtr {0}?"
@@ -2514,20 +2561,20 @@ msgstr "Zgodnie z twoim żądaniem, Twoje konto i dane dotyczące {0} powiązane
msgid "Ask"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr ""
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
-msgstr "Przypisz warunek"
+msgstr ""
#: frappe/public/js/frappe/form/sidebar/assign_to.js:186
msgid "Assign To"
msgstr "Przypisz do"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Przypisz do"
@@ -2540,7 +2587,7 @@ msgstr "Przypisz do grupy użytkowników"
#. 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign To Users"
-msgstr "Przypisz do użytkowników"
+msgstr ""
#: frappe/public/js/frappe/form/sidebar/assign_to.js:367
msgid "Assign a user"
@@ -2565,7 +2612,7 @@ msgstr "Przypisz do użytkownika w tym polu"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Assigned"
-msgstr "Przydzielony"
+msgstr ""
#. Label of the assigned_by (Link) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41
@@ -2577,7 +2624,7 @@ msgstr "Przypisany przez"
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2666,7 +2713,7 @@ msgstr ""
msgid "Asynchronous"
msgstr "Asynchroniczny"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "W siatce musi być widoczna co najmniej jedna kolumna."
@@ -2691,7 +2738,7 @@ msgstr ""
msgid "Attach"
msgstr "Załącz"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Załącz wydruk dokumentu"
@@ -2734,7 +2781,7 @@ msgstr "Załącz pliki / adresy URL i dodaj do tabeli."
#. Label of the attached_file (Code) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attached File"
-msgstr "Załączony plik"
+msgstr ""
#. Label of the attached_to_doctype (Link) field in DocType 'File'
#: frappe/core/doctype/file/file.json
@@ -2758,7 +2805,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment"
-msgstr "Załącznik"
+msgstr ""
#. Label of the attachment_limit (Int) field in DocType 'Email Account'
#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
@@ -2780,7 +2827,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr "Usunięto Attachment"
+msgstr ""
#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -2789,19 +2836,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Załączniki"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr ""
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr ""
@@ -2852,7 +2906,7 @@ msgstr ""
#. Label of the author (Data) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Author"
-msgstr "Autor"
+msgstr ""
#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -2897,23 +2951,23 @@ msgstr ""
#. 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Authorize Google Calendar Access"
-msgstr "Autoryzuj dostęp do Kalendarza Google"
+msgstr ""
#. Label of the authorize_google_contacts_access (Button) field in DocType
#. 'Google Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Authorize Google Contacts Access"
-msgstr "Autoryzuj dostęp do kontaktów Google"
+msgstr ""
#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Authorize URL"
-msgstr "Autoryzuj adres URL"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Authorized"
-msgstr "Upoważniony"
+msgstr ""
#: frappe/www/attribution.html:20
msgid "Authors"
@@ -2927,7 +2981,7 @@ msgstr "Autorzy / Opiekunowie"
#. Provider Settings'
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Auto"
-msgstr "Automatyczny"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -2939,7 +2993,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Auto Name"
-msgstr "Automatyczna nazwa"
+msgstr ""
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -2980,13 +3034,13 @@ msgstr ""
#. Label of the auto_reply (Section Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply"
-msgstr "Automatyczna odpowiedź"
+msgstr ""
#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply Message"
-msgstr "Wiadomość automatycznej odpowiedzi"
+msgstr ""
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
@@ -3111,7 +3165,7 @@ msgstr ""
#. Label of the awaiting_password (Check) field in DocType 'User Email'
#: frappe/core/doctype/user_email/user_email.json
msgid "Awaiting Password"
-msgstr "Oczekiwanie na hasło"
+msgstr ""
#. Label of the awaiting_password (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -3126,11 +3180,6 @@ msgstr "Świetna robota"
msgid "Awesome, now try making an entry yourself"
msgstr "Wspaniale, teraz spróbuj zrobić własny wpis"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3228,7 +3277,7 @@ msgstr "Powrót do logowania"
#: frappe/website/doctype/social_link_settings/social_link_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Background Color"
-msgstr "Kolor tła"
+msgstr ""
#. Label of the background_image (Attach Image) field in DocType 'Web Page
#. Block'
@@ -3236,17 +3285,12 @@ msgstr "Kolor tła"
msgid "Background Image"
msgstr "Obraz tła"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Zadania w tle"
@@ -3272,7 +3316,7 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Background Workers"
-msgstr "Pracownicy drugoplanowi"
+msgstr ""
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
@@ -3288,7 +3332,7 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Backups"
-msgstr "Kopie zapasowe"
+msgstr ""
#. Label of the backups_size (Float) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -3312,19 +3356,19 @@ msgstr ""
#. Label of the banner (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner"
-msgstr "Baner"
+msgstr ""
#. Label of the banner_html (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner HTML"
-msgstr "Baner HTML"
+msgstr ""
#. Label of the banner_image (Attach Image) field in DocType 'User'
#. Label of the banner_image (Attach Image) field in DocType 'Web Form'
#: frappe/core/doctype/user/user.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Banner Image"
-msgstr "Zdjęcie Baneru"
+msgstr ""
#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -3348,19 +3392,19 @@ msgstr "Kod kreskowy"
#. 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 "Bazowa nazwa wyróżniająca (DN)"
+msgstr ""
#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
#. Label of the base_url (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Base URL"
-msgstr "Podstawowy adres URL"
+msgstr ""
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr ""
@@ -3372,18 +3416,20 @@ msgstr ""
#. Label of the user (Link) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Based on Permissions For User"
-msgstr "Na podstawie uprawnień dla użytkowników"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Basic"
-msgstr "Podstawowy"
+msgstr ""
#. Label of the section_break_3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Basic Info"
msgstr "Informacje podstawowe"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3392,12 +3438,12 @@ msgstr "Przed"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Cancel"
-msgstr "Przed anulowaniem"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Delete"
-msgstr "Przed usunięciem"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3407,7 +3453,7 @@ msgstr "Przed odrzuceniem"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Insert"
-msgstr "Przed wstawieniem"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3422,17 +3468,17 @@ msgstr "Przed zmianą nazwy"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save"
-msgstr "Przed zapisaniem"
+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 "Przed zapisaniem (przesłany dokument)"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Submit"
-msgstr "Przed przesłaniem"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3453,7 +3499,7 @@ msgstr ""
msgid "Beta"
msgstr "Beta"
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr ""
@@ -3464,7 +3510,7 @@ msgstr "Pomiędzy"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Billing"
-msgstr "Dane do faktury"
+msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:27
msgid "Billing Contact"
@@ -3480,12 +3526,12 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "Bio"
-msgstr "Biografia"
+msgstr ""
#. Label of the birth_date (Date) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Birth Date"
-msgstr "Data Urodzenia"
+msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:41
msgid "Blank Template"
@@ -3501,7 +3547,7 @@ msgstr "Moduł bloku"
#: frappe/core/doctype/module_profile/module_profile.json
#: frappe/core/doctype/user/user.json
msgid "Block Modules"
-msgstr "Moduły blokowe"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -3517,7 +3563,7 @@ msgstr "Niebieski"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Bold"
-msgstr "Pogrubienie"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -3537,7 +3583,7 @@ msgstr "Wymagany jest zarówno login, jak i hasło"
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
msgid "Bottom"
-msgstr "Dolny"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -3564,7 +3610,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Bounced"
-msgstr "Odbił"
+msgstr ""
#. Label of the brand (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -3574,23 +3620,16 @@ msgstr ""
#. Label of the brand_html (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand HTML"
-msgstr "HTML marki"
+msgstr ""
#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand Image"
-msgstr "Obraz Marki"
-
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-#: frappe/email/doctype/email_account/email_account.json
-msgid "Brand Logo"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
+#. 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'
@@ -3604,7 +3643,7 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Breadcrumbs"
-msgstr "Okruszki"
+msgstr ""
#. Label of the browser (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -3615,7 +3654,7 @@ msgstr "Przeglądarka"
#. Label of the browser_version (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Browser Version"
-msgstr "Wersja przeglądarki"
+msgstr ""
#: frappe/public/js/frappe/desk.js:19
msgid "Browser not supported"
@@ -3663,7 +3702,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr ""
@@ -3684,7 +3723,7 @@ msgstr ""
msgid "Bulk Update"
msgstr "Aktualizacja zbiorcza"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3696,7 +3735,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -3707,7 +3746,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Button"
-msgstr "Przycisk"
+msgstr ""
#. Label of the button_color (Select) field in DocType 'DocField'
#. Label of the button_color (Select) field in DocType 'Custom Field'
@@ -3721,17 +3760,17 @@ msgstr ""
#. Label of the button_gradients (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Gradients"
-msgstr "Gradienty przycisków"
+msgstr ""
#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Rounded Corners"
-msgstr "Przycisk Zaokrąglone rogi"
+msgstr ""
#. Label of the button_shadows (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Shadows"
-msgstr "Cienie przycisków"
+msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
@@ -3763,7 +3802,7 @@ msgstr ""
#. DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
-msgstr "Pomiń ograniczony adres IP Sprawdź, czy uwierzytelnianie dwuskładnikowe jest włączone"
+msgstr ""
#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
#. 'System Settings'
@@ -3775,7 +3814,7 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
-msgstr "Pomiń sprawdzanie adresu IP z ograniczoną dostępnością, jeśli włączony jest tryb dwuczynnikowy"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -3820,7 +3859,7 @@ 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 "Klasa CSS"
+msgstr ""
#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour
#. Step'
@@ -3845,7 +3884,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr ""
@@ -3859,7 +3898,7 @@ msgstr "Kalendarz"
#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Calendar Name"
-msgstr "Nazwa Kalendarza"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/calendar_view/calendar_view.json
@@ -3876,31 +3915,31 @@ 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 "Wezwanie do działania"
+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 wezwania do działania"
+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 "Wiadomość zwrotna"
+msgstr ""
#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Title"
-msgstr "Tytuł oddzwonienia"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3912,11 +3951,11 @@ msgstr "Kampania"
msgid "Campaign Description (Optional)"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -3926,7 +3965,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -3948,7 +3987,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3958,11 +3997,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr ""
@@ -3974,7 +4013,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4007,7 +4046,7 @@ msgstr ""
msgid "Cancelling documents"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr ""
@@ -4015,7 +4054,7 @@ msgstr ""
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -4023,7 +4062,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4043,11 +4082,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4059,7 +4098,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4067,10 +4106,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr ""
@@ -4079,15 +4122,15 @@ msgstr ""
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4098,11 +4141,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4130,7 +4173,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4143,7 +4186,7 @@ msgstr ""
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr ""
@@ -4159,15 +4202,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4179,7 +4222,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr ""
@@ -4204,7 +4247,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr ""
@@ -4224,21 +4267,21 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
#. Label of the card (Link) field in DocType 'Number Card Link'
#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Card"
-msgstr "Karta"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr ""
@@ -4249,7 +4292,7 @@ msgstr ""
#. Label of the cards (Table) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Cards"
-msgstr "Karty"
+msgstr ""
#. Label of the category (Link) field in DocType 'Help Article'
#: frappe/public/js/frappe/views/interaction.js:72
@@ -4260,22 +4303,24 @@ msgstr "Kategoria"
#. Label of the category_description (Text) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Category Description"
-msgstr "Kategoria Opis"
+msgstr ""
#. Label of the category_name (Data) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Category Name"
-msgstr "Nazwa kategorii"
+msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
-msgstr "Środek"
-
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
@@ -4295,7 +4340,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 "Zmień etykietę (poprzez niestandardowe Translation)"
+msgstr ""
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
@@ -4305,7 +4350,7 @@ msgstr ""
#. Label of the change_password (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Change Password"
-msgstr "Zmień hasło"
+msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
@@ -4349,7 +4394,7 @@ msgstr ""
#. Label of the channel (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Channel"
-msgstr "Kanał"
+msgstr ""
#. Label of the chart (Link) field in DocType 'Dashboard Chart Link'
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
@@ -4359,16 +4404,16 @@ msgstr ""
#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Chart Configuration"
-msgstr "Konfiguracja wykresu"
+msgstr ""
#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
-msgstr "Nazwa wykresu"
+msgstr ""
#. Label of the chart_options (Code) field in DocType 'Dashboard'
#. Label of the chart_options_section (Section Break) field in DocType
@@ -4376,12 +4421,12 @@ msgstr "Nazwa wykresu"
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Options"
-msgstr "Opcje wykresów"
+msgstr ""
#. Label of the source (Link) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Source"
-msgstr "Źródło wykresu"
+msgstr ""
#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -4394,12 +4439,12 @@ msgstr ""
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Charts"
-msgstr "Wykresy"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Chat"
-msgstr "Czat"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -4430,6 +4475,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr ""
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr ""
@@ -4457,7 +4508,7 @@ msgstr ""
#. DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Checking this will hide custom doctypes and reports cards in Links section"
-msgstr "Zaznaczenie tej opcji spowoduje ukrycie niestandardowych typów dokumentów i kart raportów w sekcji Łącza"
+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."
@@ -4481,7 +4532,7 @@ msgstr ""
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4491,7 +4542,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4499,7 +4550,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4517,10 +4568,6 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Choose authentication method to be used by all users"
-msgstr "Wybierz metodę uwierzytelniania, która będzie używana przez wszystkich użytkowników"
-
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
@@ -4532,18 +4579,18 @@ msgstr ""
#. Label of the city (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "City/Town"
-msgstr "Miasto/Miejscowość"
+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:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr ""
@@ -4551,7 +4598,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4577,7 +4624,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4645,26 +4692,26 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Clicked"
-msgstr "Kliknął"
+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 "Klient"
+msgstr ""
#. Label of the client_code_section (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Client Code"
-msgstr "Kod klienta"
+msgstr ""
#. Label of the sb_client_credentials_section (Section Break) field in DocType
#. 'Connected App'
@@ -4673,7 +4720,7 @@ msgstr "Kod klienta"
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Credentials"
-msgstr "Referencje klientów"
+msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
#. Label of the client_id (Data) field in DocType 'OAuth Client'
@@ -4682,7 +4729,7 @@ msgstr "Referencje klientów"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
-msgstr "Identyfikator klienta"
+msgstr ""
#. Label of the client_id (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -4693,7 +4740,7 @@ msgstr ""
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "Informacja klientów"
+msgstr ""
#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
#. Client'
@@ -4720,7 +4767,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
-msgstr "Klient Secret"
+msgstr ""
#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
#. Client'
@@ -4742,7 +4789,7 @@ 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 "Adresy URL klienta"
+msgstr ""
#. Label of the client_script (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -4753,7 +4800,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr ""
@@ -4761,9 +4808,9 @@ msgstr ""
#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Close Condition"
-msgstr "Zamknij stan"
+msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4794,7 +4841,7 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Code"
-msgstr "Kod"
+msgstr ""
#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
#. Code'
@@ -4819,12 +4866,12 @@ msgstr ""
msgid "Collapse"
msgstr "Zwiń"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Zwiń"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Zwiń wszystko"
@@ -4840,7 +4887,7 @@ msgstr "Zwiń wszystko"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Collapsible"
-msgstr "Składany"
+msgstr ""
#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
@@ -4881,7 +4928,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4892,7 +4939,7 @@ msgstr "Kolor"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4921,7 +4968,7 @@ 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 "Przerwa kolumny"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:140
msgid "Column Labels:"
@@ -4937,11 +4984,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -4966,7 +5013,7 @@ msgstr "Kolumny"
#. Label of the columns (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
-msgstr "Kolumny / Pola"
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
@@ -4984,7 +5031,7 @@ msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -4994,17 +5041,17 @@ msgstr ""
#. Label of the comment_by (Data) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment By"
-msgstr "Skomentowane przez"
+msgstr ""
#. Label of the comment_email (Data) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment Email"
-msgstr "Komentarz E-mail"
+msgstr ""
#. Label of the comment_type (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment Type"
-msgstr "Typ Komentarza"
+msgstr ""
#: frappe/desk/form/utils.py:57
msgid "Comment can only be edited by the owner"
@@ -5024,7 +5071,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 "Komentarze i komunikacja będą związane z tym połączonego dokumentu"
+msgstr ""
#: frappe/templates/includes/comments/comments.py:52
msgid "Comments cannot have links or email addresses"
@@ -5038,7 +5085,7 @@ msgstr ""
#. Label of the commit (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Commit"
-msgstr "Popełnić"
+msgstr ""
#. Label of the committed (Check) field in DocType 'Console Log'
#: frappe/desk/doctype/console_log/console_log.json
@@ -5084,7 +5131,7 @@ msgstr ""
#. Label of the communication_type (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Communication Type"
-msgstr "Typ komunikacji"
+msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
msgid "Communication secret not set"
@@ -5100,7 +5147,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Company Introduction"
-msgstr "Wstęp o firmie"
+msgstr ""
#. Label of the company_name (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
@@ -5131,12 +5178,12 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5151,7 +5198,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr ""
@@ -5242,7 +5289,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5303,7 +5350,7 @@ msgstr ""
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr "Szablon e-maila z potwierdzeniem"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
@@ -5331,8 +5378,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5361,7 +5408,7 @@ msgstr ""
#. Label of the console (Code) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Console"
-msgstr "Konsola"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/console_log/console_log.json
@@ -5390,7 +5437,7 @@ msgstr ""
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
-msgstr "Szczegóły kontaktu"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact_email/contact_email.json
@@ -5400,7 +5447,7 @@ msgstr ""
#. Label of the phone_nos (Table) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Numbers"
-msgstr "Numery kontaktowe"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact_phone/contact_phone.json
@@ -5426,7 +5473,7 @@ 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 "Opcje kontaktu, takie jak „Zapytanie o sprzedaż, Zapytanie o wsparcie” itp., Każda na nowej linii lub oddzielone przecinkami."
+msgstr ""
#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -5450,7 +5497,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5461,12 +5508,12 @@ msgstr ""
#. Label of the content_hash (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Content Hash"
-msgstr "Hash zawartości"
+msgstr ""
#. Label of the content_type (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
-msgstr "Typ zawartości"
+msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:88
msgid "Content data shoud be a list"
@@ -5481,12 +5528,12 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Context"
-msgstr "Kontekst"
+msgstr ""
#. Label of the context_script (Code) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Context Script"
-msgstr "Skrypt kontekstowy"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:204
#: frappe/public/js/frappe/widgets/onboarding_widget.js:232
@@ -5502,28 +5549,28 @@ msgstr ""
#. Label of the contributed (Check) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contributed"
-msgstr "Przesłany"
+msgstr ""
#. Label of the contribution_docname (Data) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contribution Document Name"
-msgstr "Nazwa dokumentu wkładu"
+msgstr ""
#. Label of the contribution_status (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contribution Status"
-msgstr "Status wkładu"
+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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "Skopiowano do schowka."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5535,12 +5582,12 @@ msgstr ""
msgid "Copy embed code"
msgstr ""
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr ""
@@ -5551,7 +5598,7 @@ msgstr ""
#. Label of the copyright (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr "Prawa autorskie"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
@@ -5561,7 +5608,7 @@ msgstr "Nie można dostosować podstawowych typów DocTyp."
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr ""
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr ""
@@ -5569,7 +5616,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr ""
@@ -5577,11 +5624,11 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5589,7 +5636,7 @@ msgstr ""
msgid "Could not start up:"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr ""
@@ -5625,7 +5672,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 "Licznik"
+msgstr ""
#. Label of the country (Link) field in DocType 'Address'
#. Label of the country (Link) field in DocType 'Address Template'
@@ -5641,19 +5688,19 @@ msgstr "Licznik"
msgid "Country"
msgstr "Kraj"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
#. Label of the country_name (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Country Name"
-msgstr "Nazwa kraju"
+msgstr ""
#. Label of the county (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "County"
-msgstr "Powiat"
+msgstr ""
#: frappe/public/js/frappe/utils/number_systems.js:23
#: frappe/public/js/frappe/utils/number_systems.js:45
@@ -5668,15 +5715,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
@@ -5689,13 +5737,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr ""
@@ -5706,12 +5754,12 @@ 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 "Twórz kontakty z przychodzących wiadomości e-mail"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Create Entry"
-msgstr "Utwórz wpis"
+msgstr ""
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
@@ -5721,7 +5769,7 @@ 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 "Utwórz dziennik"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41
#: frappe/public/js/frappe/views/treeview.js:378
@@ -5729,7 +5777,7 @@ msgstr "Utwórz dziennik"
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
@@ -5742,7 +5790,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5758,18 +5806,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5786,7 +5834,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr ""
@@ -5805,13 +5853,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Utworzono przez"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr ""
@@ -5846,7 +5902,7 @@ msgstr ""
#: 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 ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
@@ -5895,12 +5951,12 @@ msgstr "Waluta"
#. Label of the currency_name (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Currency Name"
-msgstr "Nazwa waluty"
+msgstr ""
#. Label of the currency_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Currency Precision"
-msgstr "Precyzja walutowa"
+msgstr ""
#. Description of a DocType
#: frappe/geo/doctype/currency/currency.json
@@ -5959,7 +6015,7 @@ msgstr "Niestandardowy"
#. Label of the custom_base_url (Check) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Custom Base URL"
-msgstr "Niestandardowy bazowy adres URL"
+msgstr ""
#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom
#. Block'
@@ -5978,13 +6034,13 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Custom CSS"
-msgstr "Niestandardowy CSS"
+msgstr ""
#. Label of the custom_configuration_section (Section Break) field in DocType
#. 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Custom Configuration"
-msgstr "Konfiguracja niestandardowa"
+msgstr ""
#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -6005,7 +6061,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr ""
@@ -6016,15 +6072,15 @@ msgstr ""
msgid "Custom Field"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr ""
@@ -6037,7 +6093,7 @@ msgstr ""
#. Label of the custom_format (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom Format"
-msgstr "Format niestandardowy"
+msgstr ""
#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP
#. Settings'
@@ -6050,7 +6106,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr ""
@@ -6063,7 +6119,7 @@ msgstr ""
#. Label of the custom_html_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom HTML Help"
-msgstr "Niestandardowe HTML Help"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114
msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered"
@@ -6079,24 +6135,24 @@ msgstr ""
#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Menu Items"
-msgstr "Pozycje menu niestandardowego"
+msgstr ""
#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Custom Options"
-msgstr "Opcje niestandardowe"
+msgstr ""
#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom Overrides"
-msgstr "Niestandardowe zastąpienia"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Custom Report"
-msgstr "Raport niestandardowy"
+msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr ""
@@ -6108,24 +6164,24 @@ msgstr ""
#. Label of the custom_scss (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom SCSS"
-msgstr "Niestandardowy SCSS"
+msgstr ""
#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Sidebar Menu"
-msgstr "Niestandardowe Sidebar Menu"
+msgstr ""
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6148,26 +6204,26 @@ msgstr ""
msgid "Customization"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr ""
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr ""
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Dostosuj"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Dostosuj"
@@ -6264,7 +6320,7 @@ msgstr ""
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr ""
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr ""
@@ -6273,7 +6329,7 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Daily Long"
-msgstr "Codziennie długo"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -6290,7 +6346,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Danger"
-msgstr "Zagrożenie"
+msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -6300,7 +6356,7 @@ msgstr ""
#. Label of the dark_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Dark Color"
-msgstr "Ciemny kolor"
+msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:65
msgid "Dark Theme"
@@ -6321,8 +6377,8 @@ msgstr "Ciemny motyw"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "Panel kontrolny"
@@ -6359,7 +6415,7 @@ msgstr ""
#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Dashboard Name"
-msgstr "Nazwa panelu kontrolnego"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
@@ -6373,7 +6429,7 @@ msgstr "Widok panelu kontrolnego"
#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Dashboards"
-msgstr "Pulpity nawigacyjne"
+msgstr ""
#. Label of the data (Code) field in DocType 'Deleted Document'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -6501,7 +6557,7 @@ msgstr "Data"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
msgid "Date Format"
-msgstr "Format daty"
+msgstr ""
#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
#. Trail'
@@ -6514,7 +6570,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Date and Number Format"
-msgstr "Format daty i numeru"
+msgstr ""
#: frappe/public/js/frappe/form/controls/date.js:253
msgid "Date {0} must be in format: {1}"
@@ -6537,7 +6593,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 "Data-czas"
+msgstr ""
#. Label of the day (Select) field in DocType 'Assignment Rule Day'
#. Label of the day (Select) field in DocType 'Auto Repeat Day'
@@ -6550,7 +6606,7 @@ 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 "Dzień tygodnia"
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:27
msgctxt "Duration"
@@ -6560,19 +6616,19 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
-msgstr "Dni Po"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before"
-msgstr "Dni przed"
+msgstr ""
#. Label of the days_in_advance (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr "Dni przed lub po"
+msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr ""
@@ -6664,7 +6720,7 @@ 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 "Nagłówek domyślny"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
@@ -6684,29 +6740,29 @@ msgstr ""
#. Label of the default_portal_home (Data) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Portal Home"
-msgstr "Domyślna strona główna portalu"
+msgstr ""
#. Label of the default_print_format (Data) field in DocType 'DocType'
#. Label of the default_print_format (Link) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "Domyślny format wydruku"
+msgstr ""
#. Label of the default_print_language (Link) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Default Print Language"
-msgstr "Domyślny język wydruku"
+msgstr ""
#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Default Redirect URI"
-msgstr "Domyślne przekierowanie URI"
+msgstr ""
#. Label of the default_role (Link) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Role at Time of Signup"
-msgstr "Domyślnie Rola w momencie zarejestruj"
+msgstr ""
#: frappe/email/doctype/email_account/email_account_list.js:16
msgid "Default Sending"
@@ -6719,12 +6775,12 @@ msgstr ""
#. Label of the sort_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Field"
-msgstr "Domyślne pole sortowania"
+msgstr ""
#. Label of the sort_order (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Order"
-msgstr "Domyślny porządek sortowania"
+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
@@ -6750,7 +6806,7 @@ msgstr "Domyślny typ użytkownika"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Default Value"
-msgstr "Domyślna wartość"
+msgstr ""
#. Label of the default_view (Select) field in DocType 'DocType'
#. Label of the default_view (Select) field in DocType 'Customize Form'
@@ -6769,11 +6825,11 @@ msgstr ""
msgid "Default display currency"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr ""
@@ -6784,7 +6840,7 @@ msgstr ""
#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Default: \"Contact Us\""
-msgstr "Domyślne: \"Skontaktuj się z nami\""
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/defaultvalue/defaultvalue.json
@@ -6796,7 +6852,7 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
msgid "Defaults"
-msgstr "Wartości domyślne"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:243
msgid "Defaults Updated"
@@ -6830,11 +6886,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6842,7 +6899,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6856,10 +6913,6 @@ msgstr "Usuń"
msgid "Delete Account"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr ""
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6889,7 +6942,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr ""
@@ -6917,6 +6978,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6931,16 +6996,20 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6950,7 +7019,7 @@ 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 "Usunięte"
+msgstr ""
#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
@@ -6965,13 +7034,13 @@ msgstr ""
#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr "Nazwa usunięte"
+msgstr ""
#: frappe/desk/reportview.py:644
msgid "Deleted all documents successfully"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Usunięte!"
@@ -7044,7 +7113,7 @@ msgstr "Zależności i licencje"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Depends On"
-msgstr "Zależny od"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:32
msgid "Descendants Of"
@@ -7078,6 +7147,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7160,16 +7230,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7199,11 +7274,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr ""
@@ -7214,12 +7289,12 @@ 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 "W różnych „stanach” ten dokument może istnieć. Podobnie jak „Otwarte”, „Oczekujące zatwierdzenie” itp."
+msgstr ""
#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Digits"
-msgstr "Cyfry"
+msgstr ""
#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -7230,7 +7305,7 @@ msgstr ""
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Auto Refresh"
-msgstr "Wyłącz automatyczne odświeżanie"
+msgstr ""
#. Label of the disable_automatic_recency_filters (Check) field in DocType
#. 'List View Settings'
@@ -7253,7 +7328,7 @@ 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 "Wyłącz liczbę"
+msgstr ""
#. Label of the disable_document_sharing (Check) field in DocType 'System
#. Settings'
@@ -7274,7 +7349,7 @@ 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 "Wyłącz uwierzytelnianie serwera SMTP"
+msgstr ""
#. Label of the disable_scrolling (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
@@ -7285,7 +7360,7 @@ msgstr ""
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Sidebar Stats"
-msgstr "Wyłącz statystyki paska bocznego"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:146
msgid "Disable Signup for your site"
@@ -7295,7 +7370,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Standard Email Footer"
-msgstr "Wyłącz Standardowy Email stopka"
+msgstr ""
#. Label of the disable_system_update_notification (Check) field in DocType
#. 'System Settings'
@@ -7351,10 +7426,11 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr ""
@@ -7368,11 +7444,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Odrzucać"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7416,12 +7492,12 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Display"
-msgstr "Wyświetl"
+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 "Wyświetlania zależy"
+msgstr ""
#. Label of the depends_on (Code) field in DocType 'DocField'
#. Label of the display_depends_on (Code) field in DocType 'Workspace Sidebar
@@ -7446,11 +7522,11 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7458,7 +7534,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7470,7 +7546,7 @@ msgstr ""
#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Events"
-msgstr "Doc Wydarzenia"
+msgstr ""
#. Label of the doc_status (Select) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -7513,7 +7589,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7536,7 +7611,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7549,7 +7623,7 @@ msgstr ""
msgid "DocType"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr ""
@@ -7564,7 +7638,7 @@ msgstr ""
#. Label of the doctype_event (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "DocType Event"
-msgstr "Zdarzenie DocType"
+msgstr ""
#. Name of a DocType
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
@@ -7598,7 +7672,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
-msgstr "Widok DocType"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.py:670
msgid "DocType can not be merged"
@@ -7617,10 +7691,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr ""
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7632,21 +7702,21 @@ 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 "DocType, na którym ma zastosowanie ten przepływ pracy."
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr ""
@@ -7660,7 +7730,7 @@ msgstr ""
msgid "Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7681,7 +7751,7 @@ msgstr ""
#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
#: frappe/public/js/frappe/views/render_preview.js:42
msgid "Document"
-msgstr "Dokument"
+msgstr ""
#. Label of the actions (Table) field in DocType 'DocType'
#. Label of the document_actions_section (Section Break) field in DocType
@@ -7689,7 +7759,7 @@ msgstr "Dokument"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Actions"
-msgstr "Działania na dokumencie"
+msgstr ""
#. Label of the document_follow_notifications_section (Section Break) field in
#. DocType 'User'
@@ -7699,14 +7769,14 @@ msgstr "Działania na dokumencie"
msgid "Document Follow"
msgstr ""
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr ""
#. Label of the document_name (Data) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Document Link"
-msgstr "Link do dokumentu"
+msgstr ""
#. Label of the section_break_12 (Section Break) field in DocType 'Email
#. Account'
@@ -7720,21 +7790,21 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Links"
-msgstr "Linki do dokumentów"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7753,8 +7823,8 @@ msgstr ""
msgid "Document Name"
msgstr ""
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7772,7 +7842,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr ""
@@ -7795,7 +7865,7 @@ msgstr ""
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Document Share"
-msgstr "Udostępnianie dokumentu"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/document_share_key/document_share_key.json
@@ -7823,7 +7893,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document States"
-msgstr "Stany Dokumentu"
+msgstr ""
#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:210
#: frappe/public/js/frappe/model/model.js:137
@@ -7833,12 +7903,12 @@ msgstr ""
#. Label of the tag (Link) field in DocType 'Tag Link'
#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Tag"
-msgstr "Tag dokumentu"
+msgstr ""
#. Label of the title (Data) field in DocType 'Tag Link'
#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Title"
-msgstr "Tytuł dokumentu"
+msgstr ""
#. Label of the document_type (Link) field in DocType 'Assignment Rule'
#. Label of the reference_type (Link) field in DocType 'Milestone'
@@ -7876,7 +7946,7 @@ msgstr "Tytuł dokumentu"
#: 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:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7896,18 +7966,18 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr ""
#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr "Typ dokumentu do śledzenia"
+msgstr ""
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
@@ -7916,7 +7986,7 @@ msgstr ""
#. Label of the user_doctypes (Table) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types"
-msgstr "Typy dokumentów"
+msgstr ""
#. Label of the select_doctypes (Table) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
@@ -7929,27 +7999,27 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr ""
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr ""
@@ -7961,11 +8031,11 @@ msgstr ""
msgid "Document not Relinked"
msgstr ""
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
@@ -7981,21 +8051,17 @@ msgstr ""
msgid "Document {0} has been set to state {1} by {2}"
msgstr ""
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr ""
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr "Link do dokumentacji"
+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 "Adres URL dokumentacji"
+msgstr ""
#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
msgid "Documents"
@@ -8036,13 +8102,13 @@ msgstr ""
#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domains HTML"
-msgstr "Domeny HTML"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
#. Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr "Nie znaczniki HTML Kodowanie HTML, takich jak <script> lub po prostu jakby znaków <i>, ponieważ mogą one być celowo stosowana w tej dziedzinie"
+msgstr ""
#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
@@ -8054,12 +8120,12 @@ msgstr ""
#: frappe/workflow/doctype/workflow/workflow.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Don't Override Status"
-msgstr "Nie zastępują status"
+msgstr ""
#. Label of the mute_emails (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Don't Send Emails"
-msgstr "Nie wysyłaj e-maili"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
@@ -8085,7 +8151,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Donut"
-msgstr "Pączek"
+msgstr ""
#: frappe/public/js/form_builder/components/EditableInput.vue:43
msgid "Double click to edit label"
@@ -8122,7 +8188,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr ""
@@ -8193,7 +8259,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Dropdowns"
-msgstr "Listy rozwijane"
+msgstr ""
#. Label of the date (Date) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
@@ -8203,10 +8269,10 @@ 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 "Termin wykonania oparty na"
+msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr ""
@@ -8214,19 +8280,15 @@ msgstr ""
msgid "Duplicate Entry"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr ""
@@ -8234,6 +8296,18 @@ msgstr ""
msgid "Duplicate field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8260,20 +8334,20 @@ msgstr ""
#. 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Dynamic Filters"
-msgstr "Filtry dynamiczne"
+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 "Filtry dynamiczne 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 "Sekcja filtrów dynamicznych"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Name of a DocType
@@ -8294,17 +8368,17 @@ msgstr ""
#. 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Dynamic Report Filters"
-msgstr "Dynamiczne filtry raportów"
+msgstr ""
#. Label of the dynamic_route (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Route"
-msgstr "Trasa dynamiczna"
+msgstr ""
#. Label of the dynamic_template (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Template"
-msgstr "Szablon dynamiczny"
+msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
msgid "ESC"
@@ -8321,9 +8395,10 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8334,7 +8409,7 @@ msgstr ""
msgid "Edit"
msgstr "Edytuj"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Edytuj"
@@ -8344,7 +8419,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Edytuj"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Edytuj"
@@ -8365,15 +8440,15 @@ msgstr ""
msgid "Edit Custom Block"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "Edytuj DocType"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Edytuj DocType"
@@ -8387,7 +8462,7 @@ msgstr ""
msgid "Edit Filters"
msgstr "Edytuj filtry"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "Edytuj filtry"
@@ -8400,7 +8475,7 @@ msgstr ""
msgid "Edit Format"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8458,7 +8533,7 @@ msgstr ""
msgid "Edit Shortcut"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8481,11 +8556,11 @@ msgstr ""
msgid "Edit the {0} Doctype"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr ""
@@ -8541,6 +8616,7 @@ msgstr ""
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8556,12 +8632,14 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8594,9 +8672,9 @@ 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 "Nazwa konta e-mail"
+msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr ""
@@ -8625,7 +8703,7 @@ 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 "Adres e-mail, którego kontakty Google mają być synchronizowane."
+msgstr ""
#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
@@ -8645,7 +8723,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr "Stopka dla e-maila"
+msgstr ""
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
@@ -8677,7 +8755,7 @@ msgstr ""
#. Label of the email_ids (Table) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Email IDs"
-msgstr "E-mail identyfikatory"
+msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
@@ -8688,7 +8766,7 @@ msgstr ""
#. Label of the email_inbox (Section Break) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr "Skrzynka odbiorcza e-mail"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/email_queue/email_queue.json
@@ -8741,22 +8819,22 @@ msgstr ""
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email Settings"
-msgstr "Ustawienia wiadomości e-mail"
+msgstr ""
#. Label of the email_signature (Text Editor) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Email Signature"
-msgstr "Sygnatura wiadomości e-mail"
+msgstr ""
#. Label of the email_status (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Status"
-msgstr "Stan email"
+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 "Opcja synchronizacji poczty elektronicznej"
+msgstr ""
#. Label of the email_template (Link) field in DocType 'Communication'
#. Name of a DocType
@@ -8775,7 +8853,7 @@ 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 "E-mail do"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
@@ -8794,7 +8872,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8827,13 +8905,13 @@ 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 "Wiadomości e-mail będą wysyłane z następnymi możliwymi działaniami przepływu pracy"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:34
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -8841,7 +8919,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -8852,7 +8930,7 @@ msgstr ""
#: frappe/integrations/doctype/google_contacts/google_contacts.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
-msgstr "Włączyć"
+msgstr ""
#. Label of the enable_action_confirmation (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
@@ -8872,18 +8950,18 @@ msgstr ""
#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Auto Reply"
-msgstr "Włącz automatyczną odpowiedź"
+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 "Włącz automatyczne łączenie w dokumentach"
+msgstr ""
#. Label of the enable_comments (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr "Włącz komentarze"
+msgstr ""
#. Label of the enable_dynamic_client_registration (Check) field in DocType
#. 'OAuth Settings'
@@ -8895,7 +8973,7 @@ msgstr ""
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Enable Email Notifications"
-msgstr "Włącz powiadomienia e-mail"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
@@ -8918,7 +8996,7 @@ msgstr ""
#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Onboarding"
-msgstr "Włącz onboarding"
+msgstr ""
#. Label of the enable_outgoing (Check) field in DocType 'User Email'
#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
@@ -8932,7 +9010,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Password Policy"
-msgstr "Włącz zasady haseł"
+msgstr ""
#. Label of the enable_prepared_report (Check) field in DocType 'Role
#. Permission for Page and Report'
@@ -8943,7 +9021,7 @@ 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 "Włącz serwer druku"
+msgstr ""
#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
#. Notification Settings'
@@ -8959,7 +9037,7 @@ 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 "Włącz drukowanie surowe"
+msgstr ""
#: frappe/core/doctype/report/report.js:39
msgid "Enable Report"
@@ -8968,7 +9046,7 @@ 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 "Włącz zaplanowane zadania"
+msgstr ""
#: frappe/core/doctype/rq_job/rq_job_list.js:32
msgid "Enable Scheduler"
@@ -8977,12 +9055,12 @@ msgstr ""
#. Label of the enable_security (Check) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Enable Security"
-msgstr "Włącz zabezpieczenia"
+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 "Włącz logowanie społecznościowe"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:139
msgid "Enable Tracking Page Views"
@@ -9110,7 +9188,7 @@ msgstr ""
#. Label of the end_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "End Date Field"
-msgstr "Pole Data zakończenia"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.py:208
msgid "End Date cannot be before Start Date!"
@@ -9136,12 +9214,12 @@ msgstr ""
#. Label of the ends_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr "Kończy się"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Energy Point"
-msgstr "Punkt energetyczny"
+msgstr ""
#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
@@ -9160,18 +9238,18 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr ""
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
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 "Wprowadź Typ Formularza"
+msgstr ""
#: frappe/public/js/frappe/ui/messages.js:94
msgctxt "Title of prompt dialog"
@@ -9191,11 +9269,15 @@ msgstr ""
msgid "Enter folder name"
msgstr ""
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+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 "Wpisz parametry statycznego URL tutaj (np. nadawca=ERPNext, nazwa użytkownika=ERPNext, hasło=1234 itd.)"
+msgstr ""
#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
#. Settings'
@@ -9221,7 +9303,7 @@ msgstr ""
msgid "Entity Type"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Równa się"
@@ -9255,7 +9337,7 @@ msgstr "Równa się"
msgid "Error"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr ""
@@ -9270,12 +9352,12 @@ msgstr ""
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ""
@@ -9313,15 +9395,15 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9337,15 +9419,15 @@ msgstr ""
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9355,6 +9437,12 @@ msgstr ""
msgid "Errors"
msgstr ""
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9366,13 +9454,18 @@ msgstr ""
#. Label of the event_category (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr "Kategoria wydarzenia"
+msgstr ""
#. Label of the event_frequency (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9396,13 +9489,13 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder.json
#: frappe/desk/doctype/event/event.json
msgid "Event Type"
-msgstr "Typ wydarzenia"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "Wydarzenia"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr ""
@@ -9416,7 +9509,7 @@ msgstr ""
#. Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]"
-msgstr "Np. "Kolory": ["# d1d8dd", "# ff5858"]"
+msgstr ""
#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder_query/recorder_query.json
@@ -9424,25 +9517,26 @@ msgid "Exact Copies"
msgstr ""
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr "Przykład"
+msgstr ""
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Example: \"/desk\""
-msgstr "Przykład: „/ desk”"
+msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr "Przykład: # Drzewo / Konto"
+msgstr ""
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr "Przykład: 00001"
+msgstr ""
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
@@ -9459,7 +9553,7 @@ msgstr ""
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Excel"
-msgstr "Przewyższać"
+msgstr ""
#: frappe/public/js/frappe/form/controls/password.js:90
msgid "Excellent"
@@ -9472,7 +9566,7 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Exception"
-msgstr "Wyjątek"
+msgstr ""
#. Label of the execute_section (Section Break) field in DocType 'System
#. Console'
@@ -9494,7 +9588,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9515,28 +9609,28 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Expert"
-msgstr "Ekspert"
+msgstr ""
#. Label of the expiration_time (Datetime) field in DocType 'OAuth
#. Authorization Code'
@@ -9550,7 +9644,7 @@ msgstr ""
#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Expire Notification On"
-msgstr "Wygasają zawiadomienie o"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'User Invitation'
@@ -9564,7 +9658,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Expires In"
-msgstr "Wygasa za"
+msgstr ""
#. Label of the expires_on (Date) field in DocType 'Document Share Key'
#: frappe/core/doctype/document_share_key/document_share_key.json
@@ -9574,27 +9668,28 @@ 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 "Czas wygaśnięcia strony z obrazem QR Code"
+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/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr ""
@@ -9618,7 +9713,7 @@ msgstr ""
#. Label of the export_from (Data) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Export From"
-msgstr "Eksportuj z"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:544
msgid "Export Import Log"
@@ -9633,11 +9728,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr ""
@@ -9653,6 +9748,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9665,7 +9764,7 @@ msgstr ""
msgid "Export without main header"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr ""
@@ -9676,7 +9775,7 @@ msgstr ""
#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr "Expose Odbiorcy"
+msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
@@ -9696,7 +9795,7 @@ msgstr ""
#. Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Expression, Optional"
-msgstr "Ekspresja, opcjonalna"
+msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -9705,7 +9804,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr ""
@@ -9754,12 +9853,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr ""
@@ -9822,7 +9926,7 @@ msgstr ""
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9834,7 +9938,7 @@ msgstr ""
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr ""
@@ -9850,7 +9954,7 @@ msgstr ""
msgid "Failed to request login to Frappe Cloud"
msgstr "Nie udało się poprosić o zalogowanie do Frappe Cloud"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr ""
@@ -9885,14 +9989,14 @@ 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 the fax (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr "Faks"
+msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr ""
@@ -9909,7 +10013,7 @@ msgstr "Kobieta"
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr "Pobierz z"
+msgstr ""
#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
@@ -9952,8 +10056,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9963,7 +10067,7 @@ msgstr "Pole"
msgid "Field \"route\" is mandatory for Web Views"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -9971,16 +10075,16 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr ""
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
#. Label of the description (Text) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr "Opis pola"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10017,18 +10121,18 @@ msgstr ""
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
-msgstr "Pole, które reprezentuje Grupę Stan transakcji (jeśli pole nie istnieje, zostanie utworzone nowe, niewidoczne Pole klienta)"
+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 "Pole do śledzenia"
+msgstr ""
#: frappe/custom/doctype/property_setter/property_setter.py:52
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10036,11 +10140,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10062,7 +10166,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Nazwa pola"
@@ -10071,7 +10175,7 @@ msgstr "Nazwa pola"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10079,7 +10183,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10095,7 +10199,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10133,7 +10237,7 @@ msgstr "Pola"
#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Fields Multicheck"
-msgstr "Pola Multicheck"
+msgstr ""
#: frappe/core/doctype/file/file.py:441
msgid "Fields `file_name` or `file_url` must be set for File"
@@ -10143,14 +10247,14 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
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 "Pola oddzielone przecinkami (,) zostaną uwzględnione w "Szukaj według" listy w oknie dialogowym Szukaj"
+msgstr ""
#. Label of the fieldtype (Select) field in DocType 'Report Column'
#. Label of the fieldtype (Select) field in DocType 'Report Filter'
@@ -10165,9 +10269,9 @@ msgstr "Pola oddzielone przecinkami (,) zostaną uwzględnione w "Szukaj we
#: 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 "Typ pola"
+msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10194,7 +10298,7 @@ msgstr ""
#. Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "Informacje o pliku"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
@@ -10203,12 +10307,12 @@ msgstr ""
#. Label of the file_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "Nazwa pliku"
+msgstr ""
#. Label of the file_size (Int) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "Rozmiar pliku"
+msgstr ""
#. Label of the section_break_ryki (Section Break) field in DocType 'System
#. Health Report'
@@ -10229,7 +10333,7 @@ msgstr ""
#. Label of the file_url (Code) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "URL Pliku"
+msgstr ""
#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
@@ -10243,12 +10347,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10275,17 +10379,22 @@ msgstr "Pliki"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filtr"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+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 "Filtruj dane"
+msgstr ""
#. Label of the filter_list (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -10295,24 +10404,24 @@ 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 "Filtr Meta"
+msgstr ""
#. Label of the filter_name (Data) field in DocType 'List Filter'
#: frappe/desk/doctype/list_filter/list_filter.json
-#: frappe/public/js/frappe/list/list_filter.js:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Nazwa filtru"
#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Filtruj wartości"
+msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10331,10 +10440,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10358,14 +10471,14 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
#. Label of the filters_config (Code) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Configuration"
-msgstr "Konfiguracja filtrów"
+msgstr ""
#. Label of the filters_display (HTML) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10382,15 +10495,11 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "Filtry JSON"
+msgstr ""
#. Label of the filters_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "Sekcja filtrów"
-
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
@@ -10400,7 +10509,7 @@ msgstr ""
#. Description of the 'Script' (Code) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Filters will be accessible via filters.
Send output as result = [result], or for old style data = [columns], [result]"
-msgstr "Filtry będą dostępne za pośrednictwem filters .
Wyślij dane wyjściowe jako result = [result] lub dla data = [columns], [result] w starym stylu data = [columns], [result]"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter_list.js:133
msgid "Filters {0}"
@@ -10410,21 +10519,21 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Skończone"
+msgstr ""
#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
@@ -10453,7 +10562,7 @@ 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 "Pierwszy komunikat o sukcesie"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
@@ -10470,7 +10579,7 @@ msgstr ""
#. Label of the flag (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr "Flaga"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10490,7 +10599,7 @@ msgstr ""
#. Label of the float_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr "Precyzja zmiennoprzecinkowa"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10503,13 +10612,13 @@ msgstr "Precyzja zmiennoprzecinkowa"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr "Zagiąć"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10518,7 +10627,7 @@ msgstr ""
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Folder"
-msgstr "Falcówka"
+msgstr ""
#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
#: frappe/email/doctype/imap_folder/imap_folder.json
@@ -10538,12 +10647,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10551,7 +10660,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10559,7 +10668,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10567,19 +10676,19 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
-msgstr "Czcionka"
+msgstr ""
#. Label of the font_properties (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr "Właściwości czcionki"
+msgstr ""
#. Label of the font_size (Int) field in DocType 'Print Format'
#. Label of the font_size (Float) field in DocType 'Print Settings'
@@ -10589,13 +10698,13 @@ msgstr "Właściwości czcionki"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr "Rozmiar czcionki"
+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 "Czcionki"
+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'
@@ -10608,7 +10717,7 @@ msgstr "Czcionki"
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr "Stopka"
+msgstr ""
#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -10634,9 +10743,9 @@ msgstr ""
#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr "Stopka HTML"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10650,12 +10759,12 @@ msgstr ""
#. Label of the footer_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Items"
-msgstr "Składniki Stopki"
+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 "Logo w stopce"
+msgstr ""
#. Label of the footer_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -10665,15 +10774,15 @@ msgstr ""
#. Label of the footer_template (Link) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr "Szablon stopki"
+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 "Wartości szablonu stopki"
+msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10681,7 +10790,7 @@ msgstr ""
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer will display correctly only in PDF"
-msgstr "Stopka będzie wyświetlana poprawnie tylko w formacie PDF"
+msgstr ""
#. Label of the for_doctype (Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10691,7 +10800,7 @@ msgstr ""
#. Description of the 'Row Name' (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "For DocType Link / DocType Action"
-msgstr "Dla DocType Link / DocType Action"
+msgstr ""
#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10706,15 +10815,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10731,39 +10831,35 @@ 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 "Dla wartości"
+msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "Na przykład: {} Otwórz"
+msgstr ""
#. Description of the 'Client script' (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "Aby uzyskać pomoc, zobacz interfejs API skryptu klienta i przykłady"
+msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
@@ -10779,7 +10875,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10789,7 +10885,7 @@ msgstr ""
#: frappe/core/doctype/package_import/package_import.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Force"
-msgstr "Siła"
+msgstr ""
#. Label of the force_re_route_to_default_view (Check) field in DocType
#. 'DocType'
@@ -10829,7 +10925,8 @@ msgstr "Zapomniałeś hasła?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Formularz"
@@ -10857,7 +10954,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Form Settings"
-msgstr "Ustawienia formularza"
+msgstr ""
#. Name of a DocType
#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
@@ -10874,7 +10971,7 @@ msgstr ""
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr "Formularz zakodowany w adresie URL"
+msgstr ""
#. Label of the format (Data) field in DocType 'Workspace Shortcut'
#. Label of the format (Select) field in DocType 'Auto Email Report'
@@ -10887,7 +10984,7 @@ msgstr ""
#. Label of the format_data (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Format Data"
-msgstr "Formatuj dane"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -10907,17 +11004,17 @@ 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 "Prześlij dalej to adresu e-mail"
+msgstr ""
#. Label of the fraction (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Fraction"
-msgstr "Ułamek"
+msgstr ""
#. Label of the fraction_units (Int) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Fraction Units"
-msgstr "Jednostki ułamku"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -11008,7 +11105,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11027,9 +11124,9 @@ 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 "Od pola daty"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11041,7 +11138,7 @@ msgstr ""
#. Label of the sender_full_name (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "From Full Name"
-msgstr "Od pełna nazwa"
+msgstr ""
#. Label of the from_user (Link) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -11055,7 +11152,7 @@ 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 "Pełny"
+msgstr ""
#. Label of the full_name (Data) field in DocType 'Contact'
#. Label of the full_name (Data) field in DocType 'Activity Log'
@@ -11070,7 +11167,7 @@ msgstr "Pełny"
msgid "Full Name"
msgstr ""
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11078,12 +11175,12 @@ msgstr ""
#. Label of the full_width (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Full Width"
-msgstr "Pełna szerokość"
+msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11092,11 +11189,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11159,13 +11256,13 @@ msgstr ""
#. Label of the generate_keys (Button) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Generate Keys"
-msgstr "Generuj klucze"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11175,8 +11272,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11192,7 +11289,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Geolocation"
-msgstr "Geolokalizacja"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
@@ -11210,7 +11307,7 @@ msgstr ""
#. Label of the get_contacts (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Get Contacts"
-msgstr "Pobierz kontakty"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:93
msgid "Get Fields"
@@ -11247,7 +11344,7 @@ 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 "Pobierz rozpoznawany na całym świecie awatara z Gravatar.com"
+msgstr ""
#. Label of the git_branch (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
@@ -11285,9 +11382,9 @@ msgstr "Skróty globalne"
#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Global Unsubscribe"
-msgstr "Globalny Wyrejestrowanie"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11303,7 +11400,7 @@ msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "Idź do strony"
+msgstr ""
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
@@ -11347,7 +11444,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11360,7 +11457,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 "Identyfikator Google Analytics"
+msgstr ""
#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
#. Settings'
@@ -11410,7 +11507,7 @@ msgstr ""
#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr "Identyfikator zdarzenia Kalendarza Google"
+msgstr ""
#. Label of the google_calendar_id (Data) field in DocType 'Event'
#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
@@ -11445,7 +11542,7 @@ msgstr ""
#. Label of the google_contacts_id (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr "Identyfikator kontaktów Google"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
@@ -11469,7 +11566,7 @@ msgstr ""
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr "Czcionka Google"
+msgstr ""
#. Label of the google_meet_link (Small Text) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -11500,7 +11597,7 @@ msgstr ""
#. Label of the grant_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Grant Type"
-msgstr "Grant Rodzaj"
+msgstr ""
#: frappe/public/js/frappe/form/dashboard.js:34
#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
@@ -11562,18 +11659,18 @@ 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 "Grupuj według"
+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 "Grupuj według typu"
+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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11606,14 +11703,14 @@ msgstr ""
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm"
-msgstr "GG: 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 "GG: mm: ss"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -11651,17 +11748,21 @@ msgstr "HTML"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr "Edytor HTML"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr "Strona HTML"
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr "HTML dla sekcji nagłówka. Do wyboru"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
msgid "HTML with jinja support"
@@ -11670,7 +11771,7 @@ msgstr ""
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Half"
-msgstr "Pół"
+msgstr ""
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
@@ -11719,7 +11820,7 @@ msgstr ""
#. Label of the has_web_view (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Has Web View"
-msgstr "Ma Web View"
+msgstr ""
#: frappe/templates/signup.html:19
msgid "Have an account? Login"
@@ -11739,9 +11840,9 @@ msgstr "Nagłówek"
#. Label of the content (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header HTML"
-msgstr "Nagłówek HTML"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11758,7 +11859,7 @@ 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 "Nagłówek i bułka tarta"
+msgstr ""
#. Label of the section_break_38 (Tab Break) field in DocType 'Website
#. Settings'
@@ -11775,9 +11876,9 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Headers"
-msgstr "Nagłówki"
+msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11798,7 +11899,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr "Mapa ciepła"
+msgstr ""
#: frappe/templates/emails/new_user.html:2
msgid "Hello"
@@ -11814,7 +11915,7 @@ msgstr ""
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11847,7 +11948,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 "Pomoc HTML"
+msgstr ""
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -11869,7 +11970,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11905,8 +12006,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -11922,7 +12023,7 @@ 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 "Ukryj blok"
+msgstr ""
#. Label of the hide_border (Check) field in DocType 'DocField'
#. Label of the hide_border (Check) field in DocType 'Custom Field'
@@ -11931,7 +12032,7 @@ msgstr "Ukryj blok"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Border"
-msgstr "Ukryj obramowanie"
+msgstr ""
#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -11943,12 +12044,12 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Hide Copy"
-msgstr "Ukryj Kopie"
+msgstr ""
#. Label of the hide_custom (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Hide Custom DocTypes and Reports"
-msgstr "Ukryj niestandardowe typy dokumentów i raporty"
+msgstr ""
#. Label of the hide_days (Check) field in DocType 'DocField'
#. Label of the hide_days (Check) field in DocType 'Custom Field'
@@ -11957,7 +12058,7 @@ msgstr "Ukryj niestandardowe typy dokumentów i raporty"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Days"
-msgstr "Ukryj dni"
+msgstr ""
#. Label of the hide_descendants (Check) field in DocType 'User Permission'
#: frappe/core/doctype/user_permission/user_permission.json
@@ -11982,7 +12083,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 "Ukryj login"
+msgstr ""
#: frappe/public/js/form_builder/form_builder.bundle.js:43
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
@@ -12001,7 +12102,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Seconds"
-msgstr "Ukryj sekundy"
+msgstr ""
#. Label of the hide_toolbar (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -12011,7 +12112,7 @@ 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 "Ukryj standardowego menu"
+msgstr ""
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
@@ -12036,7 +12137,7 @@ msgstr ""
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hide footer in auto email reports"
-msgstr "Ukryj stopkę w raportach z automatycznych wiadomości e-mail"
+msgstr ""
#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -12057,12 +12158,12 @@ 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 "Najpierw zostanie zastosowana zasada wyższego priorytetu"
+msgstr ""
#. Label of the highlight (Text) field in DocType 'Company History'
#: frappe/website/doctype/company_history/company_history.json
msgid "Highlight"
-msgstr "Leflektor"
+msgstr ""
#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
@@ -12072,7 +12173,7 @@ msgstr ""
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12086,7 +12187,7 @@ msgstr "Strona główna"
#: frappe/core/doctype/role/role.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Home Page"
-msgstr "Strona główna"
+msgstr ""
#. Label of the home_settings (Code) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -12114,14 +12215,14 @@ msgstr ""
#: frappe/core/doctype/server_script/server_script.json
#: frappe/core/doctype/user/user.json
msgid "Hourly"
-msgstr "Cogodzinny"
+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 "Godzinna"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -12132,7 +12233,7 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hourly rate limit for generating password reset links"
-msgstr "Limit stawki godzinowej za generowanie linków do resetowania hasła"
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:29
msgctxt "Duration"
@@ -12142,7 +12243,7 @@ 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"
+msgstr ""
#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -12155,18 +12256,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12185,7 +12286,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 "Identyfikator (nazwa) podmiotu, którego właściwość zostaną ustawione"
+msgstr ""
#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
@@ -12214,10 +12315,9 @@ msgstr ""
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/user_session_display/user_session_display.json
msgid "IP Address"
-msgstr "Adres IP"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12238,11 +12338,16 @@ msgstr "Adres IP"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr ""
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12253,27 +12358,31 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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 "Ikona pojawi się na przycisku"
+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 "Szczegóły tożsamości"
+msgstr ""
#. 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'
#: 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 "Jeśli zastosowano ścisłe uprawnienia użytkownika i zaznaczono uprawnienie użytkownika dla DocType dla użytkownika, wszystkie dokumenty, w których wartość linku jest pusta, nie zostanie wyświetlona temu użytkownikowi"
+msgstr ""
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow'
@@ -12282,15 +12391,15 @@ msgstr "Jeśli zastosowano ścisłe uprawnienia użytkownika i zaznaczono uprawn
#: 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 "Jeśli Zaznaczone stan przepływu pracy nie zastąpi statusu w widoku listy"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr ""
@@ -12303,7 +12412,7 @@ msgstr ""
#. Description of the 'Is Active' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr "Jeśli zaznaczone, to wszystkie pozostałe obiegi stają się nieaktywne."
+msgstr ""
#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print
#. Format'
@@ -12315,18 +12424,18 @@ msgstr ""
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "If checked, users will not see the Confirm Access dialog."
-msgstr "Jeśli jest zaznaczone, użytkownicy nie będą widzieć okno Potwierdzanie dostępu."
+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 "Jeśli wyłączone, ta rola zostanie usunięty z wszystkich użytkowników."
+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 "Jeśli ta opcja jest włączona, użytkownik może zalogować się z dowolnego adresu IP przy użyciu uwierzytelniania dwustopniowego, można to również ustawić dla wszystkich użytkowników w ustawieniach systemu"
+msgstr ""
#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -12342,12 +12451,12 @@ msgstr ""
#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, changes to the document are tracked and shown in timeline"
-msgstr "Jeśli ta opcja jest włączona, zmiany w dokumencie są śledzone i wyświetlane na osi czasu"
+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 "Jeśli ta opcja jest włączona, widoki dokumentów są śledzone, co może się zdarzyć wiele razy"
+msgstr ""
#. Description of the 'Only allow System Managers to upload public files'
#. (Check) field in DocType 'System Settings'
@@ -12358,13 +12467,13 @@ 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 "Jeśli ta opcja jest włączona, dokument jest oznaczony jako widoczny, gdy użytkownik otworzy go po raz pierwszy"
+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 "Jeśli jest włączona, powiadomienie pojawi się na liście powiadomień w prawym górnym rogu paska nawigacyjnego."
+msgstr ""
#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
#. Settings'
@@ -12376,13 +12485,13 @@ 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 "Jeśli ta opcja jest włączona, użytkownicy, którzy logują się z ograniczonego adresu IP, nie będą monitowani o dwu czynnika uwierzytelniania"
+msgstr ""
#. Description of the 'Notify Users On Every Login' (Check) field in DocType
#. 'Note'
#: frappe/desk/doctype/note/note.json
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
-msgstr "Jeśli jest włączona, użytkownicy będą informowani za każdym razem, gdy się zalogują. Jeśli nie jest włączona, użytkownicy będą informowani tylko raz."
+msgstr ""
#. Description of the 'Default Workspace' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -12392,37 +12501,45 @@ 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 "Jeśli nie standardowy port (np 587)"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525."
-msgstr "Jeśli nietypowy port (np. 587). Jeśli używasz Google Cloud, spróbuj port 2525."
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr "Jeśli niestandardowy port (np. POP3: 995/110, IMAP: 993/143)"
+msgstr ""
#. Description of the 'Currency Precision' (Select) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If not set, the currency precision will depend on number format"
-msgstr "Jeśli nie zostanie ustawiona, dokładność waluty zależy od formatu liczb"
+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 ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
@@ -12447,7 +12564,7 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "If user is the owner"
-msgstr "Jeśli użytkownik jest właścicielem"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:204
msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted."
@@ -12472,7 +12589,7 @@ msgstr ""
#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "If you set this, this Item will come in a drop-down under the selected parent."
-msgstr "Jeśli to ustawisz, ten przedmiot pojawi się w rozwijanym menu pod wybranym rodzicem."
+msgstr ""
#: frappe/templates/emails/administrator_logged_in.html:3
msgid "If you think this is unauthorized, please change the Administrator password."
@@ -12486,7 +12603,7 @@ msgstr ""
#. Description of the 'Source Text' (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "If your data is in HTML, please copy paste the exact HTML code with the tags."
-msgstr "Jeśli dane są w formacie HTML, należy skopiować wklejania kodu HTML z tagów."
+msgstr ""
#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
@@ -12496,7 +12613,7 @@ msgstr "Jeśli dane są w formacie HTML, należy skopiować wklejania kodu HTML
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore User Permissions"
-msgstr "Ignoruj uprawnienia użytkowników"
+msgstr ""
#. Label of the ignore_xss_filter (Check) field in DocType 'DocField'
#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field'
@@ -12506,7 +12623,7 @@ msgstr "Ignoruj uprawnienia użytkowników"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore XSS Filter"
-msgstr "Ignoruj filtr XSS"
+msgstr ""
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Account'
@@ -12520,9 +12637,9 @@ msgstr ""
#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Ignored Apps"
-msgstr "Ignorowane aplikacje"
+msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr ""
@@ -12558,14 +12675,14 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Image"
-msgstr "Obrazek"
+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 "Pole obrazu"
+msgstr ""
#. Label of the image_height (Float) field in DocType 'Letter Head'
#. Label of the footer_image_height (Float) field in DocType 'Letter Head'
@@ -12576,7 +12693,7 @@ 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 "Link do obrazu"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:209
msgid "Image View"
@@ -12588,11 +12705,11 @@ msgstr "Widok obrazka"
msgid "Image Width"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr ""
@@ -12626,7 +12743,7 @@ msgstr ""
msgid "Impersonated by {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12637,18 +12754,19 @@ msgstr ""
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Implicit"
-msgstr "Bezwarunkowy"
+msgstr ""
#. Label of the import (Check) field in DocType 'Custom DocPerm'
#. Label of the import (Check) field in DocType 'DocPerm'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12660,13 +12778,13 @@ msgstr ""
#. Label of the import_file (Attach) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import File"
-msgstr "Importować plik"
+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 "Błędy i ostrzeżenia dotyczące importu plików"
+msgstr ""
#. Label of the import_log_section (Section Break) field in DocType 'Data
#. Import'
@@ -12677,12 +12795,12 @@ 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 "Importuj podgląd dziennika"
+msgstr ""
#. Label of the import_preview (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Preview"
-msgstr "Podgląd importu"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:41
msgid "Import Progress"
@@ -12696,12 +12814,12 @@ msgstr ""
#. Label of the import_type (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Type"
-msgstr "Typ importu"
+msgstr ""
#. Label of the import_warnings (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Warnings"
-msgstr "Importuj ostrzeżenia"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:117
msgid "Import Zip"
@@ -12710,7 +12828,7 @@ msgstr ""
#. Label of the google_sheets_url (Data) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import from Google Sheets"
-msgstr "Importuj z Arkuszy Google"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:612
msgid "Import template should be of type .csv, .xlsx or .xls"
@@ -12744,14 +12862,14 @@ msgstr ""
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In Days"
-msgstr "W dniach"
+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 "W Filtrze"
+msgstr ""
#. Label of the in_global_search (Check) field in DocType 'DocField'
#. Label of the in_global_search (Check) field in DocType 'Custom Field'
@@ -12761,7 +12879,7 @@ msgstr "W Filtrze"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Global Search"
-msgstr "W Global Search"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.js:88
msgid "In Grid View"
@@ -12793,7 +12911,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Preview"
-msgstr "W podglądzie"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
@@ -12806,7 +12924,7 @@ msgstr ""
#. Label of the in_reply_to (Link) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "In Reply To"
-msgstr "W odpowiedzi na"
+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
@@ -12814,18 +12932,18 @@ msgstr "W odpowiedzi na"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Standard Filter"
-msgstr "W standardowym filtrem"
+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 "W punktach. Domyślnie jest 9."
+msgstr ""
#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In seconds"
-msgstr "W sekundy"
+msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:209
msgid "Inactive"
@@ -12859,7 +12977,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 "Obejmują Szukaj w górnym pasku"
+msgstr ""
#: frappe/website/doctype/website_theme/website_theme.js:61
msgid "Include Theme from Apps"
@@ -12868,18 +12986,18 @@ 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 "Wyślij łącze do widoku internetowego dokumentu w wiadomości e-mail"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr ""
@@ -12946,11 +13064,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr ""
@@ -12974,7 +13092,7 @@ 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 "Indeksuj strony internetowe do wyszukiwania"
+msgstr ""
#: frappe/core/doctype/recorder/recorder.py:132
msgid "Index created successfully on column {0} of doctype {1}"
@@ -12995,14 +13113,14 @@ 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 "Wskaźnik"
+msgstr ""
#. Label of the indicator_color (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Indicator Color"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr ""
@@ -13027,7 +13145,7 @@ 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 "Początkowa Sync Hrabia"
+msgstr ""
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -13049,15 +13167,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr ""
@@ -13076,19 +13194,19 @@ msgstr ""
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Insert New Records"
-msgstr "Wstaw nowe rekordy"
+msgstr ""
#. Label of the insert_style (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Insert Style"
-msgstr "Wstaw Styl"
+msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "Zainstaluj {0} z Marketplace"
@@ -13114,15 +13232,15 @@ msgstr "Zainstalowane aplikacje"
msgid "Instructions"
msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13173,7 +13291,7 @@ msgstr "Integracje"
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Integrations can use this field to set email delivery status"
-msgstr "Integracja może użyć tego pola, aby ustawić stan przesyłki e-mail"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -13190,7 +13308,7 @@ msgstr ""
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr ""
@@ -13199,6 +13317,11 @@ msgstr ""
msgid "Internal record of document shares"
msgstr ""
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13208,7 +13331,7 @@ msgstr ""
#. 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Introduce your company to the website visitor."
-msgstr "Przedstaw firmę użytkownikowi, który odwiedza Twoją stronę."
+msgstr ""
#. Label of the introduction_section (Section Break) field in DocType 'Contact
#. Us Settings'
@@ -13224,7 +13347,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Introductory information for the Contact Us Page"
-msgstr "Informacje wprowadzające na stronie Kontakt"
+msgstr ""
#. Label of the introspection_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -13238,13 +13361,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13284,7 +13407,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13292,7 +13415,8 @@ msgstr ""
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr ""
@@ -13300,8 +13424,8 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13325,7 +13449,7 @@ msgstr ""
msgid "Invalid Login Token"
msgstr ""
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr ""
@@ -13333,7 +13457,7 @@ msgstr ""
msgid "Invalid Mail Server. Please rectify and try again."
msgstr ""
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr ""
@@ -13344,8 +13468,8 @@ msgstr ""
msgid "Invalid Operation"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr ""
@@ -13357,7 +13481,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr ""
@@ -13370,11 +13494,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13383,7 +13507,7 @@ msgstr ""
msgid "Invalid Search Field {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr ""
@@ -13402,7 +13526,7 @@ msgstr ""
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr ""
@@ -13414,7 +13538,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13422,19 +13546,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13442,18 +13566,22 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr ""
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr ""
@@ -13462,11 +13590,11 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13474,11 +13602,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13486,11 +13614,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13498,7 +13626,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13515,19 +13643,19 @@ msgstr ""
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13551,11 +13679,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13572,31 +13700,31 @@ msgstr ""
msgid "Invalid username or password"
msgstr "Nieprawidłowa nazwa użytkownika lub hasło"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr ""
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Inverse"
-msgstr "Odwrotny"
+msgstr ""
#: frappe/core/doctype/user_invitation/user_invitation.py:95
msgid "Invitation already accepted"
@@ -13673,12 +13801,12 @@ msgstr ""
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Complete"
-msgstr "Jest pełny"
+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 "Zakończony"
+msgstr ""
#. Label of the is_current (Check) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -13695,7 +13823,7 @@ 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 "Czy Pole niestandardowe"
+msgstr ""
#. Label of the is_default (Check) field in DocType 'Address Template'
#. Label of the is_default (Check) field in DocType 'User Permission'
@@ -13715,9 +13843,9 @@ msgstr ""
#. Label of the is_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Folder"
-msgstr "Czy Folder"
+msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr ""
@@ -13733,7 +13861,7 @@ msgstr ""
#. Label of the is_home_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Home Folder"
-msgstr "Czy Home Folder"
+msgstr ""
#. Label of the reqd (Check) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
@@ -13744,12 +13872,12 @@ msgstr ""
#. State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Is Optional State"
-msgstr "Jest stanem opcjonalnym"
+msgstr ""
#. Label of the is_primary (Check) field in DocType 'Contact Email'
#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Is Primary"
-msgstr "Jest podstawowa"
+msgstr ""
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
msgid "Is Primary Address"
@@ -13759,36 +13887,36 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
-msgstr "Jest podstawowym kontaktem"
+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 "Jest podstawową komórką"
+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 "Jest podstawowym telefonem"
+msgstr ""
#. Label of the is_private (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Private"
-msgstr "Jest prywatny"
+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 "Jest publiczny"
+msgstr ""
#. Label of the is_published_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Published Field"
-msgstr "Pole jest publikowany"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr ""
@@ -13821,12 +13949,12 @@ msgstr ""
#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Skipped"
-msgstr "Jest pominięty"
+msgstr ""
#. Label of the is_spam (Check) field in DocType 'Email Rule'
#: frappe/email/doctype/email_rule/email_rule.json
msgid "Is Spam"
-msgstr "Czy Spam"
+msgstr ""
#. Label of the is_standard (Check) field in DocType 'Navbar Item'
#. Label of the is_standard (Select) field in DocType 'Report'
@@ -13845,7 +13973,7 @@ msgstr "Czy Spam"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/email/doctype/notification/notification.json
msgid "Is Standard"
-msgstr "Standardowy"
+msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -13866,7 +13994,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Table"
-msgstr "Czy Table"
+msgstr ""
#. Label of the is_table_field (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -13876,12 +14004,12 @@ msgstr ""
#. Label of the is_tree (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Tree"
-msgstr "Jest drzewo"
+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 "Jest unikalny"
+msgstr ""
#. Label of the is_virtual (Check) field in DocType 'DocType'
#. Label of the is_virtual (Check) field in DocType 'Custom Field'
@@ -13904,12 +14032,12 @@ msgstr ""
#. Label of the item_label (Data) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Label"
-msgstr "Etykieta pozycji"
+msgstr ""
#. Label of the item_type (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Type"
-msgstr "Typ przedmiotu"
+msgstr ""
#: frappe/utils/nestedset.py:229
msgid "Item cannot be added to its own descendants"
@@ -13955,12 +14083,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 ""
#. Description of the 'Javascript' (Code) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}"
-msgstr "Format JavaScript: raporty frappe.query [ 'ReportName'] = {}"
+msgstr ""
#. Label of the javascript (Code) field in DocType 'Report'
#. Label of the javascript_section (Section Break) field in DocType 'Custom
@@ -13972,7 +14100,7 @@ msgstr "Format JavaScript: raporty frappe.query [ 'ReportName'] = {}"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_script/website_script.json
msgid "Javascript"
-msgstr "JavaScript"
+msgstr ""
#: frappe/www/login.html:74
msgid "Javascript is disabled on your browser"
@@ -14033,8 +14161,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr ""
@@ -14110,7 +14238,7 @@ msgstr ""
#: frappe/integrations/doctype/webhook_header/webhook_header.json
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Key"
-msgstr "Klucz"
+msgstr ""
#. Label of a standard help item
#. Type: Action
@@ -14166,22 +14294,22 @@ msgstr ""
#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Email Field"
-msgstr "LDAP email Pole"
+msgstr ""
#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP First Name Field"
-msgstr "LDAP Imię Pole"
+msgstr ""
#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group"
-msgstr "Grupa LDAP"
+msgstr ""
#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Field"
-msgstr "Pole grupy LDAP"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
@@ -14193,7 +14321,7 @@ msgstr ""
#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Mappings"
-msgstr "Mapowania grup LDAP"
+msgstr ""
#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
#. Settings'
@@ -14204,17 +14332,17 @@ msgstr ""
#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Last Name Field"
-msgstr "Pole nazwisk LDAP"
+msgstr ""
#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Middle Name Field"
-msgstr "Pole nazwy środkowej LDAP"
+msgstr ""
#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Mobile Field"
-msgstr "Pole mobilne LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
msgid "LDAP Not Installed"
@@ -14223,12 +14351,12 @@ msgstr ""
#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Phone Field"
-msgstr "Pole telefonu LDAP"
+msgstr ""
#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search String"
-msgstr "Wyszukiwanie LDAP String"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
@@ -14243,7 +14371,7 @@ msgstr ""
#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Security"
-msgstr "Zabezpieczenia LDAP"
+msgstr ""
#. Label of the ldap_server_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
@@ -14254,7 +14382,7 @@ msgstr ""
#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Url"
-msgstr "LDAP URL serwera"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
@@ -14267,12 +14395,12 @@ msgstr ""
#. DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP User Creation and Mapping"
-msgstr "Tworzenie i mapowanie użytkowników LDAP"
+msgstr ""
#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Username Field"
-msgstr "Pole Nazwa użytkownika LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:310
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:429
@@ -14357,7 +14485,7 @@ msgstr ""
msgid "Label and Type"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr ""
@@ -14380,7 +14508,7 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Język"
@@ -14388,12 +14516,12 @@ msgstr "Język"
#. Label of the language_code (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr "Kod języka"
+msgstr ""
#. Label of the language_name (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr "Nazwa Język"
+msgstr ""
#. Label of the last_10_active_users (Code) field in DocType 'System Health
#. Report'
@@ -14424,12 +14552,20 @@ msgstr ""
#. Label of the last_active (Datetime) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr "Czas ostatniej aktywności"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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 "Ostatnia egzekucja"
+msgstr ""
#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
@@ -14439,17 +14575,17 @@ msgstr ""
#. Label of the last_ip (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr "Ostatnio używany IP"
+msgstr ""
#. Label of the last_known_versions (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Known Versions"
-msgstr "Ostatnio znane wersje"
+msgstr ""
#. Label of the last_login (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr "Ostatnie Logowanie"
+msgstr ""
#: frappe/email/doctype/notification/notification.js:32
msgid "Last Modified Date"
@@ -14464,7 +14600,7 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/public/js/frappe/ui/filters/filter.js:643
msgid "Last Month"
-msgstr "W zeszłym miesiącu"
+msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
@@ -14480,13 +14616,13 @@ 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 "Data ostatniego resetowania hasła"
+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:647
msgid "Last Quarter"
-msgstr "Ostatni kwartał"
+msgstr ""
#. Label of the last_received_at (Datetime) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -14507,12 +14643,12 @@ 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 "Ostatnia synchronizacja"
+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 "Ostatnia synchronizacja włączona"
+msgstr ""
#. Label of the last_updated (Datetime) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -14532,24 +14668,29 @@ msgstr ""
#. Label of the last_user (Link) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr "Ostatni użytkownik"
+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:639
msgid "Last Week"
-msgstr "Zeszły tydzień"
+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:655
msgid "Last Year"
-msgstr "Ostatni rok"
+msgstr ""
#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
msgstr ""
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
@@ -14565,7 +14706,7 @@ msgstr ""
#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Leave blank to repeat always"
-msgstr "Zostaw puste by zawsze powtarzać"
+msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
#: frappe/email/doctype/email_account/email_account.py:720
@@ -14577,9 +14718,15 @@ msgstr ""
msgid "Ledger"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14667,13 +14814,13 @@ msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Letter"
-msgstr "List"
+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:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14684,25 +14831,25 @@ 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 "Szef literowy na podstawie"
+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 "Obraz głowy listu"
+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 "Nazwa nagłówka"
+msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14710,7 +14857,7 @@ msgstr ""
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head in HTML"
-msgstr "Nagłówek w HTMLu"
+msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
#. Label of the permlevel (Int) field in DocType 'DocPerm'
@@ -14724,7 +14871,7 @@ msgstr "Nagłówek w HTMLu"
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr ""
@@ -14757,7 +14904,7 @@ msgstr ""
#. Label of the light_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Light Color"
-msgstr "Jasny kolor"
+msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:60
msgid "Light Theme"
@@ -14765,7 +14912,7 @@ msgstr "Jasny motyw"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr ""
@@ -14789,14 +14936,14 @@ msgstr ""
msgid "Limit"
msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
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 "Linia"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -14834,7 +14981,7 @@ msgstr "Połączyć"
#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Link Cards"
-msgstr "Karty łączące"
+msgstr ""
#. Label of the link_count (Int) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
@@ -14854,12 +15001,12 @@ msgstr ""
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link DocType"
-msgstr "DocType link"
+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 "Połącz typ dokumentu"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
@@ -14875,7 +15022,7 @@ msgstr ""
#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link Fieldname"
-msgstr "Link Nazwa pola"
+msgstr ""
#. Label of the link_filters (JSON) field in DocType 'DocField'
#. Label of the link_filters (JSON) field in DocType 'Custom Field'
@@ -14895,14 +15042,14 @@ msgstr ""
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Name"
-msgstr "Łącze Nazwa"
+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 "link Title"
+msgstr ""
#. Label of the link_to (Dynamic Link) field in DocType 'Desktop Icon'
#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
@@ -14915,11 +15062,11 @@ msgstr "link Title"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
-msgstr "Łączyć z"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
@@ -14933,7 +15080,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
@@ -14954,14 +15101,14 @@ 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 "Link do strony, którą chcesz otworzyć. Pozostaw puste, jeśli chcesz, aby to dominująca grupa."
+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 "Związany"
+msgstr ""
#: frappe/public/js/frappe/form/linked_with.js:23
msgid "Linked With"
@@ -14976,6 +15123,7 @@ msgstr "LinkedIn"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14997,10 +15145,10 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
-msgstr "Lista"
+msgstr ""
#. Label of the list__search_settings_section (Section Break) field in DocType
#. 'DocField'
@@ -15028,7 +15176,7 @@ msgstr ""
msgid "List Settings"
msgstr "Ustawienia listy"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -15042,7 +15190,7 @@ msgstr "Widok listy"
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr ""
@@ -15051,7 +15199,7 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
-msgstr "Lista jako [{ "label": _ ( "Praca"), "drogi": "Jobs"}]"
+msgstr ""
#. Description of the 'Send Notification to' (Small Text) field in DocType
#. 'Email Account'
@@ -15069,16 +15217,16 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Load Balancing"
-msgstr "Równoważenie obciążenia"
+msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15096,10 +15244,10 @@ msgstr "Załaduj więcej"
#: 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr ""
@@ -15116,8 +15264,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15127,7 +15275,8 @@ msgid "Loading..."
msgstr ""
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
@@ -15144,7 +15293,7 @@ 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 "Dane dziennika"
+msgstr ""
#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear'
#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
@@ -15200,15 +15349,20 @@ msgstr ""
msgid "Login"
msgstr ""
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
-msgstr "Logowanie po godzinie"
+msgstr ""
#. Label of the login_before (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login Before"
-msgstr "Logowanie przed godziną"
+msgstr ""
#: frappe/public/js/frappe/desk.js:256
msgid "Login Failed please try again"
@@ -15275,7 +15429,7 @@ msgstr ""
msgid "Login to {0}"
msgstr "Logowanie do {0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr ""
@@ -15324,7 +15478,7 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/me.html:91
msgid "Logout"
-msgstr "Wyloguj"
+msgstr ""
#: frappe/core/doctype/user/user.js:195
msgid "Logout All Sessions"
@@ -15334,16 +15488,15 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Logout All Sessions on Password Reset"
-msgstr "Wyloguj się ze wszystkich sesji po zresetowaniu hasła"
+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 "Wyloguj się ze wszystkich urządzeń po zmianie hasła"
+msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Logi"
@@ -15364,7 +15517,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Long Text"
-msgstr "Długi tekst"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
msgid "Looks like you didn't change the value"
@@ -15374,7 +15527,7 @@ msgstr "Wygląda na to, że nie zmieniłeś wartości"
msgid "Looks like you haven’t added any third party apps."
msgstr "Wygląda na to, że nie dodałeś żadnych aplikacji zewnętrznych."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "Wygląda na to, że nie otrzymałeś żadnych powiadomień."
@@ -15401,17 +15554,17 @@ msgstr "Szanowna Pani"
#. Label of the main_section (Text Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section"
-msgstr "Główna Sekcja"
+msgstr ""
#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (HTML)"
-msgstr "Główna sekcja (HTML)"
+msgstr ""
#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (Markdown)"
-msgstr "Główna sekcja (Markdown)"
+msgstr ""
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
@@ -15435,7 +15588,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
-msgstr "Make „Nazwa” można przeszukiwać w Global Search"
+msgstr ""
#. Label of the make_attachment_public (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -15497,7 +15650,7 @@ msgstr "Obowiązkowy"
#: 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 "Obowiązkowe zależy od"
+msgstr ""
#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -15524,7 +15677,7 @@ msgstr ""
msgid "Mandatory fields required in {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
@@ -15554,7 +15707,7 @@ 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 "Zmapuj parametry trasy na zmienne formularza. Przykład /project/<name>"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:923
msgid "Mapping column {0} to field {1}"
@@ -15586,7 +15739,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "Oznacz wszystko jako przeczytane"
@@ -15621,12 +15774,12 @@ 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 "Edytor Markdown"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Marked As Spam"
-msgstr "Oznaczono jako spam"
+msgstr ""
#. Name of a role
#: frappe/website/doctype/utm_campaign/utm_campaign.json
@@ -15638,9 +15791,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15673,7 +15829,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 "Maksymalna długość"
+msgstr ""
#. Label of the max_report_rows (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15683,7 +15839,7 @@ 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 "Maksymalna wartość"
+msgstr ""
#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -15702,14 +15858,14 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "Maksymalny"
+msgstr ""
#: frappe/core/doctype/file/file.py:342
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
@@ -15723,20 +15879,27 @@ msgstr "Osiągnięto maksymalny limit załączników {0}."
msgid "Maximum {0} rows allowed"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Ja"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15772,20 +15935,20 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Mention"
-msgstr "Wzmianka"
+msgstr ""
#. Label of the enable_email_mention (Check) field in DocType 'Notification
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr "Wzmianki"
+msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15819,13 +15982,13 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Wiadomość"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Wiadomość"
@@ -15833,19 +15996,19 @@ msgstr "Wiadomość"
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr "Przykłady wiadomości"
+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 "Identyfikator wiadomości"
+msgstr ""
#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr "Parametr Wiadomości"
+msgstr ""
#: frappe/templates/includes/contact.js:36
msgid "Message Sent"
@@ -15856,7 +16019,7 @@ msgstr "Widomość wysłana"
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr ""
@@ -15901,7 +16064,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr "Meta tagi"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
@@ -15951,9 +16114,9 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Metoda"
+msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -15971,7 +16134,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
msgid "Middle Name"
-msgstr "Drugie imię"
+msgstr ""
#. Label of a field in the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
@@ -15999,7 +16162,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Minimum Password Score"
-msgstr "Minimalny Wynik Hasła"
+msgstr ""
#. Label of the minor (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
@@ -16042,7 +16205,7 @@ msgstr "Panna"
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16062,7 +16225,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16127,7 +16290,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16163,7 +16326,7 @@ msgstr ""
#. Label of the module_name (Data) field in DocType 'Module Def'
#: frappe/core/doctype/module_def/module_def.json
msgid "Module Name"
-msgstr "Nazwa Modułu"
+msgstr ""
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -16174,9 +16337,8 @@ msgstr ""
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16193,7 +16355,7 @@ msgstr ""
msgid "Module to Export"
msgstr ""
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16207,7 +16369,7 @@ msgstr ""
#. Label of the modules_html (HTML) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr "Moduły HTML"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -16264,7 +16426,7 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr "Miesięcznie"
+msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:39
#: frappe/public/js/frappe/form/multi_select_dialog.js:45
@@ -16295,7 +16457,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
-msgstr "Więcej informacji"
+msgstr ""
#: frappe/website/doctype/help_article/templates/help_article.html:19
#: frappe/website/doctype/help_article/templates/help_article.html:33
@@ -16306,9 +16468,9 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr "Więcej contentu do dolnej strony."
+msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr ""
@@ -16323,7 +16485,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr ""
@@ -16335,19 +16497,19 @@ msgstr ""
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16359,7 +16521,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr ""
@@ -16394,7 +16556,7 @@ msgstr ""
#. Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr "Musi być publicznie dostępnym adresem URL Arkuszy Google"
+msgstr ""
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
@@ -16420,7 +16582,7 @@ msgstr ""
#. Label of the mute_sounds (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Mute Sounds"
-msgstr "Wycisz dźwięki"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:45
msgid "Mx"
@@ -16477,7 +16639,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr ""
@@ -16489,7 +16651,7 @@ msgstr ""
msgid "Name of the new Print Format"
msgstr ""
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr ""
@@ -16506,7 +16668,7 @@ msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr "Nazwa"
+msgstr ""
#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
@@ -16528,7 +16690,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr ""
@@ -16552,57 +16714,57 @@ msgstr ""
msgid "Navbar Settings"
msgstr ""
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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 "Szablon paska nawigacyjnego"
+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 "Wartości szablonu paska nawigacyjnego"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Przejdź w dół listy"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Przejdź w górę listy"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16624,6 +16786,7 @@ msgstr "Nigdy"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16640,7 +16803,7 @@ msgstr "Nowa aktywność"
#: 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16656,8 +16819,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr ""
@@ -16706,7 +16869,7 @@ msgstr ""
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16727,8 +16890,8 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr ""
@@ -16755,8 +16918,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16764,7 +16927,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16807,32 +16970,32 @@ msgstr ""
msgid "New value to be set"
msgstr "Nowa wartość do ustawienia"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Nowy rekord \"{0}\""
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Nowy rekord \"{0}\" utworzono"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr ""
@@ -16844,7 +17007,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16865,7 +17028,7 @@ msgstr ""
msgid "Next"
msgstr "Następny"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "Następny"
@@ -16890,14 +17053,18 @@ msgstr ""
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Next Action Email Template"
-msgstr "Następny szablon wiadomości e-mail"
+msgstr ""
+
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 "Następne działania HTML"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -16922,7 +17089,7 @@ 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 "Następny dzień harmonogramu"
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
msgid "Next Scheduled Date"
@@ -16931,7 +17098,7 @@ msgstr ""
#. Label of the next_state (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Next State"
-msgstr "Następne Województwo"
+msgstr ""
#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -16943,7 +17110,7 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Next Sync Token"
-msgstr "Następny token synchronizacji"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:691
msgid "Next Week"
@@ -16964,20 +17131,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nie"
@@ -17003,7 +17174,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "No Copy"
-msgstr "Brak kopii"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
#: frappe/email/doctype/auto_email_report/auto_email_report.py:309
@@ -17047,7 +17218,7 @@ msgstr ""
msgid "No Google Calendar Event to sync."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17066,23 +17237,23 @@ msgstr ""
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "Brak nowych powiadomień"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr ""
@@ -17102,11 +17273,11 @@ msgstr ""
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr ""
@@ -17114,7 +17285,7 @@ msgstr ""
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17122,7 +17293,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17138,7 +17309,7 @@ msgstr ""
msgid "No Tags"
msgstr "Brak tagów"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "Brak nadchodzących wydarzeń"
@@ -17158,7 +17329,7 @@ msgstr ""
msgid "No changes in document"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17222,7 +17393,7 @@ msgstr ""
msgid "No file attached"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "Nie znaleziono filtrów"
@@ -17263,18 +17434,18 @@ 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 "Nie rzędów (max 500)"
+msgstr ""
#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
@@ -17283,7 +17454,7 @@ msgstr ""
msgid "No permission to read {0}"
msgstr ""
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr ""
@@ -17299,7 +17470,7 @@ msgstr ""
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr ""
@@ -17307,7 +17478,7 @@ msgstr ""
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17319,11 +17490,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17335,7 +17507,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17344,7 +17516,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17361,7 +17533,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Non Negative"
-msgstr "Nieujemne"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:33
msgid "Non-Conforming"
@@ -17387,12 +17559,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr ""
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17434,7 +17606,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17443,7 +17615,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17452,8 +17624,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17473,7 +17645,7 @@ msgstr ""
msgid "Not Sent"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr ""
@@ -17487,15 +17659,15 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr ""
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr ""
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17503,7 +17675,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17523,11 +17695,11 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Nie znaleziono"
@@ -17540,11 +17712,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17572,7 +17744,7 @@ msgstr ""
msgid "Note:"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17584,7 +17756,7 @@ msgstr ""
#. 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 "Uwaga: Aby uzyskać najlepsze wyniki, obrazy muszą być tego samego rozmiaru i szerokości muszą być większe niż wysokość."
+msgstr ""
#. Description of the 'Allow only one session per user' (Check) field in
#. DocType 'System Settings'
@@ -17604,7 +17776,7 @@ msgstr ""
msgid "Notes:"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "Nie ma nic nowego"
@@ -17616,8 +17788,8 @@ msgstr ""
msgid "Nothing left to undo"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17628,11 +17800,13 @@ msgid "Nothing to update"
msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "Powiadomienie"
@@ -17648,7 +17822,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "Ustawienia powiadomień"
@@ -17657,11 +17831,6 @@ msgstr "Ustawienia powiadomień"
msgid "Notification Subscribed Document"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17679,13 +17848,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Powiadom."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -17693,37 +17864,37 @@ msgstr ""
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Notifications and bulk mails will be sent from this outgoing server."
-msgstr "Powiadomienia i poczta zbiorcza będzie wysyłana z tego serwera poczty wychodzącej."
+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 "Powiadamiaj użytkowników o każdym logowaniu"
+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 "Powiadom przez e-mail"
+msgstr ""
#. Label of the notify_by_email (Check) field in DocType 'DocShare'
#: frappe/core/doctype/docshare/docshare.json
msgid "Notify by email"
-msgstr "Informuj za pomocą Maila"
+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 "Informuj jeśli Tematy bez odpowiedzi"
+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 "Informuj jeśli Tematy bez do (w min)"
+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 "Informuj użytkownikom popup podczas logowania"
+msgstr ""
#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
@@ -17733,7 +17904,7 @@ msgstr ""
#. Label of the phone (Data) field in DocType 'Contact Phone'
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr "Numer"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
@@ -17771,12 +17942,12 @@ 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 "Liczba kopii zapasowych"
+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 "Liczba grup"
+msgstr ""
#. Label of the number_of_queries (Int) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -17795,14 +17966,14 @@ 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 "Liczba kolumn polu siatka (Liczba kolumn w siatce powinno być mniejsze niż 11)"
+msgstr ""
#. Description of the 'Columns' (Int) field in DocType 'DocField'
#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr "Liczba kolumn dla pola w widoku listy lub siatki (Liczba kolumn powinna być mniejsza niż 11)"
+msgstr ""
#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
#. DocType 'System Settings'
@@ -17845,7 +18016,7 @@ msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "OAuth Client ID"
-msgstr "Identyfikator klienta OAuth"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -17895,7 +18066,7 @@ msgstr ""
#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP Issuer Name"
-msgstr "Nazwa Emitenta OTP"
+msgstr ""
#. Label of the otp_sms_template (Small Text) field in DocType 'System
#. Settings'
@@ -17921,7 +18092,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17934,12 +18105,12 @@ msgstr ""
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Off"
-msgstr "Poza"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Office"
-msgstr "Biuro"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -17961,7 +18132,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17969,7 +18140,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -17977,7 +18148,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Older backups will be automatically deleted"
-msgstr "Starsze kopie zapasowe będą automatycznie usuwane"
+msgstr ""
#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health
#. Report'
@@ -18036,7 +18207,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18080,7 +18251,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18096,11 +18267,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18119,16 +18290,16 @@ 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 "Zezwól tylko na edycję dla"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Only Send Records Updated in Last X Hours"
-msgstr "Tylko wysyłanie rekordów z ostatnich X godzin"
+msgstr ""
#: frappe/core/doctype/file/file.py:167
msgid "Only System Managers can make this file public."
@@ -18144,11 +18315,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18191,7 +18362,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18214,8 +18385,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18235,7 +18406,7 @@ msgstr ""
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Open Documents"
-msgstr "Otwórz dokumenty"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
@@ -18245,12 +18416,16 @@ msgstr "Otwórz pomoc"
#. Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr "Otwórz dokument referencyjny"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
msgstr "Otwórz ustawienia"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Aplikacje Open Source dla Sieci"
@@ -18258,14 +18433,14 @@ msgstr "Aplikacje Open Source dla Sieci"
#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Open URL in a New Tab"
-msgstr "Otwórz adres URL w nowej karcie"
+msgstr ""
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18277,11 +18452,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otwórz element listy"
@@ -18296,16 +18471,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18326,7 +18501,7 @@ msgstr "OpenLDAP"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Opened"
-msgstr "Otwarty"
+msgstr ""
#. Label of the operation (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
@@ -18337,7 +18512,7 @@ msgstr "Operacja"
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18363,19 +18538,19 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Optional: Always send to these ids. Each Email Address on a new row"
-msgstr "Opcjonalnie: Zawsze wysyłaj do tych identyfikatorów. Każdy adres e-mail na nowy wiersz"
+msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr "Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest prawdziwe"
+msgstr ""
#. Label of the options (Small Text) field in DocType 'DocField'
#. Label of the options (Data) field in DocType 'Report Column'
@@ -18397,16 +18572,16 @@ msgstr "Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest pra
msgid "Options"
msgstr "Opcje"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
#. Label of the options_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr "Opcje Pomocy"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18414,7 +18589,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18422,7 +18597,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18436,9 +18611,9 @@ 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 "Zamówienie"
+msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18446,20 +18621,24 @@ msgstr ""
#. 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 "Historia Organizacji"
+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 "Nagłówek Historii Organizacji"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18473,7 +18652,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr "Inne"
+msgstr ""
#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -18521,7 +18700,7 @@ msgstr ""
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Output"
-msgstr "Wydajność"
+msgstr ""
#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
msgid "Overview"
@@ -18534,18 +18713,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18557,7 +18738,7 @@ msgstr ""
#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr "Rozmiar Strony PDF"
+msgstr ""
#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -18567,9 +18748,9 @@ msgstr ""
#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr "Ustawienia PDF"
+msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18577,11 +18758,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18682,12 +18863,12 @@ 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 "Bloki konstrukcyjne strony"
+msgstr ""
#. Label of the page_html (Section Break) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page HTML"
-msgstr "Strona HTML"
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
@@ -18700,7 +18881,7 @@ msgstr ""
#. Label of the page_name (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page Name"
-msgstr "Nazwa strony"
+msgstr ""
#. Label of the page_number (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -18717,7 +18898,7 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Page Settings"
-msgstr "Ustawienia strony"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
@@ -18740,7 +18921,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18756,7 +18937,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18767,7 +18948,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18800,11 +18981,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18816,9 +18997,9 @@ 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 "Nadrzędna etykieta"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18843,11 +19024,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18866,7 +19047,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18880,7 +19061,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr "Nieaktywny"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the password_settings (Section Break) field in DocType 'System
@@ -18903,20 +19084,20 @@ msgstr "Nieaktywny"
msgid "Password"
msgstr "Hasło"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
#. Label of the password_reset_limit (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Password Reset Link Generation Limit"
-msgstr "Limit generowania linków do resetowania hasła"
+msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18927,7 +19108,7 @@ 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 "Hasło do bazy DN"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
@@ -18945,11 +19126,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18961,7 +19142,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18982,7 +19163,7 @@ msgstr ""
#: frappe/core/doctype/package_release/package_release.json
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch"
-msgstr "Ścieżka"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/patch_log/patch_log.json
@@ -19016,14 +19197,14 @@ msgstr ""
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr "Ścieżka do certyfikatu serwera"
+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 "Ścieżka do prywatnego pliku kluczy"
+msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19057,7 +19238,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr "Oczekuje na zatwierdzenie"
+msgstr ""
#. Label of the pending_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19074,7 +19255,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Verification"
-msgstr "Oczekuje na weryfikację"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -19088,7 +19269,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "Odsetek"
+msgstr ""
#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
#. Report'
@@ -19101,22 +19282,22 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Perm Level"
-msgstr "Poziom Perm"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Permanent"
-msgstr "Stały"
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19124,7 +19305,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19134,12 +19319,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19148,11 +19333,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19161,7 +19341,7 @@ 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 "Reguły dostępu"
+msgstr ""
#. Label of the permission_type (Select) field in DocType 'Permission
#. Inspector'
@@ -19183,7 +19363,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19194,13 +19373,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: 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 "Uprawnienia"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19212,11 +19390,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19240,7 +19418,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Osobiste"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -19286,25 +19464,25 @@ msgstr "Telefon"
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr "Ciasto"
+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 "Kod PIN"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -19332,7 +19510,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Plant"
-msgstr "Zakład"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
@@ -19350,7 +19528,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19366,7 +19544,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19374,11 +19552,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19390,11 +19568,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19426,7 +19604,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19456,10 +19634,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19472,7 +19650,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19546,15 +19724,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19570,7 +19748,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19590,7 +19768,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19598,7 +19776,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19648,11 +19826,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19660,7 +19838,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19680,7 +19858,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19692,7 +19870,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19720,7 +19898,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19800,7 +19978,7 @@ 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 "Pozycja"
+msgstr ""
#: frappe/templates/discussions/comment_box.html:29
#: frappe/templates/discussions/reply_card.html:15
@@ -19817,7 +19995,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Postal"
-msgstr "Pocztowy"
+msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -19839,13 +20017,13 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr "Precyzja liczb"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19860,12 +20038,12 @@ msgstr "Wolę nie mówić"
#. Label of the is_primary_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Billing Address"
-msgstr "Preferowany adres rozliczeniowy"
+msgstr ""
#. Label of the is_shipping_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Shipping Address"
-msgstr "Preferowany adres dostawy"
+msgstr ""
#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
@@ -19873,7 +20051,7 @@ msgstr "Preferowany adres dostawy"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr "Prefiks"
+msgstr ""
#. Name of a DocType
#. Label of the prepared_report (Check) field in DocType 'Report'
@@ -19897,11 +20075,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19909,7 +20087,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Naciśnij klawisz Alt, aby uruchomić dodatkowe skróty w menu i pasku bocznym"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19927,19 +20105,19 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
#. Label of the preview_html (HTML) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr "Podgląd HTML"
+msgstr ""
#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr "Podgląd wiadomości"
+msgstr ""
#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
@@ -19971,16 +20149,16 @@ msgstr ""
msgid "Previous"
msgstr "Poprzedni"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Poprzedni"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -19994,7 +20172,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Primary"
-msgstr "Główny"
+msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:27
msgid "Primary Address"
@@ -20003,7 +20181,7 @@ msgstr ""
#. Label of the primary_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Primary Color"
-msgstr "Kolor podstawowy"
+msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:23
msgid "Primary Contact"
@@ -20033,19 +20211,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20063,8 +20241,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20108,7 +20287,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20129,7 +20308,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide"
-msgstr "Ukryj Druk"
+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'
@@ -20139,13 +20318,13 @@ msgstr "Ukryj Druk"
#: 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 "Wydrukuj \"Ukryte\" jeżeli nie została podana wartość"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20153,13 +20332,13 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "Serwer druku"
+msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20176,12 +20355,12 @@ 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 "Nazwa Stylu drukowania"
+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 "Podgląd Wydruku Stylu"
+msgstr ""
#. Label of the print_width (Data) field in DocType 'DocField'
#. Label of the print_width (Data) field in DocType 'Custom Field'
@@ -20190,28 +20369,28 @@ msgstr "Podgląd Wydruku Stylu"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr "Szerokość Wydruku"
+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 "Wydrukuj Szerokość pola, jeśli pole jest kolumna w tabeli"
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "Broszura z firmowym"
+msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20219,17 +20398,17 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "Nazwa drukarki"
+msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20272,13 +20451,13 @@ msgstr ""
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "Protip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} , aby wysłać dokument odniesienia"
+msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20318,9 +20497,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20332,7 +20511,7 @@ 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 "Właściwość zależy od"
+msgstr ""
#. Name of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -20347,7 +20526,7 @@ msgstr ""
#. Label of the property_type (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr "Typ Właściwości"
+msgstr ""
#. Label of the protect_attached_files (Check) field in DocType 'DocType'
#. Label of the protect_attached_files (Check) field in DocType 'Customize
@@ -20372,7 +20551,7 @@ msgstr ""
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr "Dostawca"
+msgstr ""
#. Label of the provider_name (Data) field in DocType 'Connected App'
#. Label of the provider_name (Data) field in DocType 'Social Login Key'
@@ -20381,7 +20560,7 @@ msgstr "Dostawca"
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Provider Name"
-msgstr "Nazwa dostawcy"
+msgstr ""
#. Option for the 'Event Type' (Select) field in DocType 'Event'
#. Label of the public (Check) field in DocType 'Note'
@@ -20390,7 +20569,7 @@ msgstr "Nazwa dostawcy"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr ""
@@ -20451,23 +20630,23 @@ msgstr ""
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr "Wyciągnij z Kalendarza Google"
+msgstr ""
#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr "Wyciągnij z Kontaktów Google"
+msgstr ""
#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr "Wyciągnął z Kalendarza Google"
+msgstr ""
#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr "Pobrano z kontaktów Google"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.js:209
msgid "Pulling emails..."
@@ -20513,13 +20692,13 @@ msgstr ""
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr "Przekaż do Kalendarza Google"
+msgstr ""
#. Label of the push_to_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr "Przekaż do kontaktów Google"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
@@ -20540,7 +20719,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20561,18 +20740,18 @@ msgstr ""
#: frappe/core/doctype/recorder_query/recorder_query.json
#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr "Zapytanie"
+msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr "Zapytanie / skrypt"
+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 "Opcje Zapytania"
+msgstr ""
#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
@@ -20602,7 +20781,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20623,7 +20802,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20664,7 +20843,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20699,7 +20878,7 @@ msgstr ""
#. 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "RAW Information Log"
-msgstr "Dziennik informacji RAW"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/rq_job/rq_job.json
@@ -20754,7 +20933,16 @@ msgstr ""
#. 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 ""
+
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
@@ -20764,7 +20952,7 @@ msgstr "Raw email"
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20782,7 +20970,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20793,11 +20981,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20827,14 +21016,14 @@ 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 "Tylko do odczytu zależy"
+msgstr ""
#. Label of the read_only_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20842,13 +21031,13 @@ msgstr ""
#. Label of the read_by_recipient (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient"
-msgstr "Czytaj od odbiorcy"
+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 "Odczytany przez odbiorcę"
+msgstr ""
#: frappe/desk/doctype/note/note.js:10
msgid "Read mode"
@@ -20874,7 +21063,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20899,24 +21088,24 @@ msgstr ""
#. 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr "Pole Odbiorca według dokumentu"
+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 "Odbiorca według roli"
+msgstr ""
#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr "Parametr Odbiorcy"
+msgstr ""
#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20925,7 +21114,7 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr "Adresat"
+msgstr ""
#. Label of the recipient_account_field (Data) field in DocType 'DocType'
#. Label of the recipient_account_field (Data) field in DocType 'Customize
@@ -20938,7 +21127,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr "Odbiorca Wypisany"
+msgstr ""
#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
@@ -20946,7 +21135,7 @@ msgstr "Odbiorca Wypisany"
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr "Adresaci"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/recorder/recorder.json
@@ -20967,7 +21156,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -20998,19 +21187,19 @@ msgstr ""
#. DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr "Przekierowanie URI związany z Kodeksem Autentyczna"
+msgstr ""
#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Redirect URIs"
-msgstr "Przekierowanie URI"
+msgstr ""
#. Label of the redirect_url (Small Text) field in DocType 'User'
#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
#: frappe/core/doctype/user/user.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr "Adres przekierowania"
+msgstr ""
#. Description of the 'Default App' (Select) field in DocType 'System Settings'
#. Description of the 'Default App' (Select) field in DocType 'User'
@@ -21033,12 +21222,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21091,14 +21280,14 @@ msgstr ""
#. Label of the reference_name (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr "Referencyjna nazwa DocName"
+msgstr ""
#. Label of the reference_doctype (Link) field in DocType 'Error Log'
#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/error_log/error_log.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr "Odniesienie do DocType"
+msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
@@ -21110,7 +21299,7 @@ msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.json
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr "DocName Odniesienia"
+msgstr ""
#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
@@ -21221,7 +21410,7 @@ msgstr ""
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/communication/communication.json
msgid "Reference Owner"
-msgstr "Odniesienie Właściciel"
+msgstr ""
#. Label of the reference_report (Data) field in DocType 'Report'
#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
@@ -21230,19 +21419,19 @@ msgstr "Odniesienie Właściciel"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr "Raport referencyjny"
+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 "Typ odnośnika"
+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 "Nazwa Odniesienia"
+msgstr ""
#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
@@ -21254,12 +21443,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21274,9 +21463,9 @@ 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 "Odśwież Arkusz Google"
+msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21289,9 +21478,9 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr "Odśwież token"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21302,7 +21491,7 @@ msgstr ""
msgid "Refreshing..."
msgstr "Odświeżanie..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21348,10 +21537,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Odśwież"
@@ -21363,7 +21550,7 @@ msgstr "Wczytaj plik ponownie"
msgid "Reload List"
msgstr "Odśwież listę"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Odśwież raport"
@@ -21374,7 +21561,7 @@ msgstr "Odśwież raport"
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr "Pamiętaj ostatnio wybrane wartości"
+msgstr ""
#. Label of the remind_at (Datetime) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
@@ -21382,7 +21569,7 @@ msgstr "Pamiętaj ostatnio wybrane wartości"
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21462,9 +21649,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21492,7 +21679,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21504,17 +21691,17 @@ msgstr ""
#. Label of the repeat_on (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr "Powtórz w"
+msgstr ""
#. Label of the repeat_till (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr "Powtarzaj do"
+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 "Powtórz w dzień"
+msgstr ""
#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -21524,12 +21711,12 @@ 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 "Powtórz w ostatnim dniu miesiąca"
+msgstr ""
#. Label of the repeat_this_event (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr "Powtórz to Wydarzenie"
+msgstr ""
#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
@@ -21539,7 +21726,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21602,6 +21789,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21616,10 +21804,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21639,7 +21826,7 @@ msgstr ""
#. Label of the report_description (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr "Opis raportu"
+msgstr ""
#: frappe/core/doctype/report/report.py:156
msgid "Report Document Error"
@@ -21654,7 +21841,7 @@ msgstr ""
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr "Raport Filtry"
+msgstr ""
#. Label of the report_hide (Check) field in DocType 'DocField'
#. Label of the report_hide (Check) field in DocType 'Custom Field'
@@ -21663,13 +21850,13 @@ msgstr "Raport Filtry"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr "Ukryj Raport"
+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 "Informacje o raporcie"
+msgstr ""
#. Name of a role
#: frappe/core/doctype/report/report.json
@@ -21688,7 +21875,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21716,20 +21903,16 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr "Typ raportu"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:204
msgid "Report View"
msgstr "Widok raportu"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21740,7 +21923,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21752,7 +21935,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21760,12 +21943,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr "Raport nie został zapisany (wystąpiły błędy)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21788,7 +21971,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21796,7 +21979,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21820,7 +22003,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
-msgstr "Żądaj danych"
+msgstr ""
#. Label of the request_description (Data) field in DocType 'Integration
#. Request'
@@ -21853,22 +22036,22 @@ msgstr ""
#. Label of the request_structure (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
-msgstr "Struktura zapytania"
+msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
#. Label of the request_url (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request URL"
-msgstr "Żądaj adresu URL"
+msgstr ""
#. Title of the request-to-delete-data Web Form
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
@@ -21884,7 +22067,7 @@ msgstr ""
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Require Trusted Certificate"
-msgstr "Wymagaj zaufanego certyfikatu"
+msgstr ""
#. Description of the 'LDAP search path for Groups' (Data) field in DocType
#. 'LDAP Settings'
@@ -21951,7 +22134,7 @@ msgstr ""
#. Label of the reset_password_key (Data) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Reset Password Key"
-msgstr "Zresetuj Klucz Hasła"
+msgstr ""
#. Label of the reset_password_link_expiry_duration (Duration) field in DocType
#. 'System Settings'
@@ -21977,7 +22160,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22023,7 +22206,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Response"
-msgstr "Odpowiedź"
+msgstr ""
#. Label of the response_headers (Code) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
@@ -22033,9 +22216,9 @@ msgstr ""
#. Label of the response_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
-msgstr "Typ odpowiedzi"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22044,7 +22227,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22064,7 +22247,12 @@ msgstr ""
#. Label of the restrict_ip (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr "Ogranicz IP"
+msgstr ""
+
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
@@ -22074,27 +22262,27 @@ msgstr "Ogranicz 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 "Ogranicz do domeny"
+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 "Ogranicz do domeny"
+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 "Ogranicz dostęp dla użytkownika tylko dla tego adresu IP. Możesz dodać wiele adresów IP oddzielając je przecinkiem. Możesz podać również kawełek adresu IP np. (111.111.111)"
+msgstr ""
#: frappe/public/js/frappe/list/list_view.js:199
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Ograniczenia"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22141,9 +22329,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22178,8 +22372,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22194,8 +22386,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22217,7 +22408,7 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr "Nazwa roli"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Users Workspace
@@ -22239,7 +22430,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr "Menedżer uprawnień ról"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Menedżer uprawnień ról"
@@ -22247,11 +22438,9 @@ msgstr "Menedżer uprawnień ról"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22271,9 +22460,9 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr "Rola i Poziom"
+msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22313,20 +22502,20 @@ msgstr ""
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles Assigned"
-msgstr "Przypisane Role"
+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 "Role HTML"
+msgstr ""
#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
#. and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr "Role Html"
+msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:7
msgid "Roles can be set for users from their User page."
@@ -22385,27 +22574,27 @@ msgstr ""
#. Label of the route_redirects (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Route Redirects"
-msgstr "Przekierowania trasy"
+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:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22426,13 +22615,13 @@ msgstr ""
#. Label of the row_name (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Row Name"
-msgstr "Nazwa wiersza"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:509
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22451,14 +22640,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22473,15 +22662,15 @@ msgstr ""
#. Label of the rule (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr "Reguła"
+msgstr ""
#. Label of the section_break_3 (Section Break) field in DocType 'Document
#. Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr "Warunki reguł"
+msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22493,29 +22682,29 @@ 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 "Zasady określające przejście w stan pracy."
+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 "Reguły, w jaki sposób stany są przejściami, jak następny stan i która rola może zmieniać stan itp."
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rules with higher priority number will be applied first."
-msgstr "Reguły o wyższym priorytecie zostaną zastosowane jako pierwsze."
+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 "Uruchamiaj zadania tylko codziennie, jeśli nieaktywne przez (dni)"
+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 "Uruchamiane tylko zaplanowane zadania, jeśli zaznaczone"
+msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Minutes"
@@ -22538,7 +22727,7 @@ msgstr ""
#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "SMS Gateway URL"
-msgstr "Adres URL bramki SMS"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/sms_log/sms_log.json
@@ -22561,7 +22750,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22595,14 +22784,14 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "SSL/TLS Mode"
-msgstr "Tryb SSL / TLS"
+msgstr ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
@@ -22629,7 +22818,7 @@ msgstr ""
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Salesforce"
-msgstr "Siły sprzedaży"
+msgstr ""
#. Label of the salutation (Link) field in DocType 'Contact'
#. Name of a DocType
@@ -22646,7 +22835,7 @@ msgstr ""
#. Label of the sample (HTML) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr "Próba"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -22667,22 +22856,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22695,7 +22885,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22703,7 +22893,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22721,20 +22911,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Zapisane filtry"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Zapisywanie"
@@ -22743,11 +22933,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Zapisywanie"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22797,7 +22987,7 @@ 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 "Zaplanowane zadanie"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
@@ -22840,7 +23030,7 @@ msgstr ""
#: frappe/core/doctype/scheduler_event/scheduler_event.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Scheduler Event"
-msgstr "Harmonogram wydarzenia"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.py:124
msgid "Scheduler Inactive"
@@ -22905,7 +23095,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Script"
-msgstr "Skrypt"
+msgstr ""
#. Name of a role
#: frappe/core/doctype/server_script/server_script.json
@@ -22915,12 +23105,12 @@ msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Script Report"
-msgstr "Skrypt Raportu"
+msgstr ""
#. Label of the script_type (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Script Type"
-msgstr "Typ Skryptu"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/website_script/website_script.json
@@ -22951,7 +23141,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22969,9 +23159,9 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr "Pola Wyszukiwania"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -22979,7 +23169,7 @@ msgstr ""
#. Search Settings'
#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Search Priorities"
-msgstr "Priorytety wyszukiwania"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132
msgid "Search Results"
@@ -22989,7 +23179,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -23006,12 +23196,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23042,7 +23232,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
msgid "Section"
-msgstr "Sekcja"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -23057,7 +23247,7 @@ msgstr "Sekcja"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Section Break"
-msgstr "Podział Sekcji"
+msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:421
msgid "Section Heading"
@@ -23083,15 +23273,15 @@ msgstr ""
msgid "Security Settings"
msgstr "Ustawienia zabezpieczeń"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Zobacz całą aktywność"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23120,12 +23310,12 @@ msgstr ""
#. Label of the seen_by_section (Section Break) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr "Widziany przez"
+msgstr ""
#. Label of the seen_by (Table) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr "Widziany przez tabeli"
+msgstr ""
#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -23141,24 +23331,26 @@ msgstr "Widziany przez tabeli"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23174,7 +23366,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Wybierz kolumny"
@@ -23195,7 +23387,7 @@ msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Select Date Range"
-msgstr "Wybierz zakres dat"
+msgstr ""
#. Label of the doc_type (Link) field in DocType 'Web Form'
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28
@@ -23207,7 +23399,7 @@ msgstr ""
#. Label of the reference_doctype (Link) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Select Doctype"
-msgstr "Wybierz DocType"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50
#: frappe/workflow/page/workflow_builder/workflow_builder.js:50
@@ -23218,13 +23410,13 @@ msgstr "Wybierz typ dokumentu"
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23233,7 +23425,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23242,19 +23434,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23279,16 +23471,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23298,7 +23490,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Wybierz format wydruku"
@@ -23323,7 +23515,7 @@ msgstr ""
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr "Wybierz Transakcję"
+msgstr ""
#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
@@ -23334,12 +23526,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23356,11 +23542,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23376,7 +23562,7 @@ msgstr "Wybierz istniejący format, aby edytować lub utworzyć nowy format."
#. 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 "Wybierz zdjęcie szerokości ok 150px z przezroczystym tłem aby otrzymać najlepszy rezultat."
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
@@ -23386,13 +23572,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Wybierz element listy"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Wybierz wiele elementów listy"
@@ -23412,7 +23598,7 @@ 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 "Wybierz etykietę po której chcesz dodać nowe pole."
+msgstr ""
#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
@@ -23426,7 +23612,7 @@ msgstr ""
msgid "Select {0}"
msgstr "Wybierz {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23449,17 +23635,22 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Send After"
-msgstr "Wyślij Po"
+msgstr ""
#. Label of the event (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr "Wyślij alarm na"
+msgstr ""
+
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr "Wyślij powiadomienie e-mailem"
+msgstr ""
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -23481,23 +23672,23 @@ 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 "Wyślij mi kopię wychodzących wiadomości e-mail"
+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 "Wyślij powiadomienie do"
+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 "Wysyłaj powiadomienia o śledzonych przeze mnie dokumentach"
+msgstr ""
#. Label of the thread_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr "Wysyłaj powiadomienia o wątkach e-mail"
+msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
@@ -23506,9 +23697,9 @@ 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 "Wyślij Druk w formacie PDF"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23516,22 +23707,22 @@ msgstr ""
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr "Wyślij powiadomienie systemowe"
+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"
+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"
+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 "Wyślij alert, jeśli termin odpowiada wartości tego pola jest"
+msgstr ""
#. Description of the 'Reference Datetime' (Select) field in DocType
#. 'Notification'
@@ -23542,18 +23733,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 "Wyślij alert w przypadku zmian wartości tego pola jest"
+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 "Wyślij rano e-mail z przypomnieniem"
+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 "Wyślij dni przed lub po dacie odniesienia"
+msgstr ""
#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
#. Document State'
@@ -23565,26 +23756,26 @@ msgstr ""
#. 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr "Wyślij zapytania na te adresy e-mail"
+msgstr ""
#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:220
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr "Wyślij tylko wtedy, gdy nie ma żadnych danych"
+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 "Wyślij wiadomość do maila wypisz"
+msgstr ""
#. Label of the sender (Data) field in DocType 'Event'
#. Label of the sender (Data) field in DocType 'ToDo'
@@ -23610,7 +23801,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23663,7 +23854,7 @@ msgstr ""
#. Label of the read_receipt (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr "Wysłane potwierdzenie odbioru"
+msgstr ""
#. Label of the sent_to (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
@@ -23673,12 +23864,12 @@ msgstr ""
#. Label of the sent_or_received (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr "Wysłane lub Otrzymane"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sent/Received Email"
-msgstr "Wysłane / odebrane wiadomości e-mail"
+msgstr ""
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
@@ -23694,7 +23885,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Series List for this Transaction"
-msgstr "Lista serii dla tej transakcji"
+msgstr ""
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
@@ -23704,7 +23895,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23712,9 +23903,9 @@ msgstr ""
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
-msgstr "Działanie serwera"
+msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23722,7 +23913,7 @@ msgstr ""
#. Label of the server_ip (Data) field in DocType 'Network Printer Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Server IP"
-msgstr "IP serwera"
+msgstr ""
#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
@@ -23741,11 +23932,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23773,16 +23968,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Domyślne ustawienia sesji"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Zapisano domyślne ustawienia sesji"
@@ -23821,16 +24014,16 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr "Ustaw baner z obrazka"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
-msgstr "Ustaw opcje domyślne dla wszystkich wykresów w tym panelu (np. „Colors”: [„# d1d8dd”, „# ff5858”])"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
#: frappe/desk/doctype/number_card/number_card.js:384
@@ -23849,7 +24042,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23866,7 +24059,7 @@ msgstr ""
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr "Ustaw nowe hasło"
+msgstr ""
#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
@@ -23890,10 +24083,10 @@ msgstr "Ustaw właściwości"
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr "Ustaw właściwość po alertu"
+msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23901,7 +24094,7 @@ 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 "Ustaw rola"
+msgstr ""
#: frappe/core/doctype/user/user.js:129
#: frappe/core/page/permission_manager/permission_manager.js:72
@@ -23911,14 +24104,14 @@ msgstr ""
#. Label of the value (Small Text) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr "Ustaw wartość"
+msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -23949,7 +24142,7 @@ 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 "Ustaw niestandardowy dokładność polu Float lub walut"
+msgstr ""
#. Description of the 'Precision' (Select) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -24022,8 +24215,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24032,7 +24225,7 @@ msgstr "Ustawienia"
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr "Menu ustawień"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -24046,11 +24239,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24058,12 +24251,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24092,13 +24285,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24106,14 +24300,14 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "Dzielone"
+msgstr ""
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
@@ -24122,7 +24316,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr "Wysyłka"
+msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:31
msgid "Shipping Address"
@@ -24131,7 +24325,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Sklep"
+msgstr ""
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
@@ -24166,16 +24360,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr "Pokaż wartości bezwzględne"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Pokaż wszystko"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24221,7 +24409,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24234,18 +24422,18 @@ msgstr ""
#. 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 "Pokaż wycieczkę po formularzu"
+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 "Pokaż cały błąd i zezwalaj na raportowanie problemów dla programisty"
+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 "Pokaż pełny formularz?"
+msgstr ""
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -24273,7 +24461,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24285,7 +24473,7 @@ 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 "Pokaż statystyki procentowe"
+msgstr ""
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
@@ -24303,7 +24491,7 @@ msgstr "Pokaż podgląd"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr "Pokaż podgląd podglądu"
+msgstr ""
#. Label of the show_processlist (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
@@ -24351,7 +24539,7 @@ msgstr "Pokaż tagi"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr "Pokaż tytuł"
+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
@@ -24393,7 +24581,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24404,7 +24592,7 @@ msgstr "Pokaż całą aktywność"
#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr "Pokaż jako cc"
+msgstr ""
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24421,12 +24609,12 @@ msgstr ""
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr "Pokaż pełny formularz zamiast szybkiego wpisu"
+msgstr ""
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Pokaż w sekcji Module"
+msgstr ""
#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
#. Login Key'
@@ -24437,7 +24625,7 @@ 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 "Pokaż w filtrze"
+msgstr ""
#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
@@ -24463,7 +24651,7 @@ msgstr ""
#. Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr "Pokaż różnicę procentową według tego przedziału czasu"
+msgstr ""
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24473,7 +24661,7 @@ msgstr "Pokaż pasek boczny"
#. 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 "Pokaż tytuł w oknie przeglądarki jako "Prefiks - tytuł""
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
msgid "Show {0} List"
@@ -24512,17 +24700,17 @@ msgstr ""
#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr "Elementy paska bocznego"
+msgstr ""
#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr "Ustawienia paska bocznego"
+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 "Pasek boczny i Komentarze"
+msgstr ""
#. Label of the sign_out (Button) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -24535,7 +24723,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24562,7 +24750,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr "Podpis"
+msgstr ""
#: frappe/www/login.html:168
msgid "Signup Disabled"
@@ -24593,7 +24781,7 @@ msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr "Liczba jednoczesnych sesji"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
@@ -24635,7 +24823,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
-msgstr "Przejdź Authorization"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
@@ -24658,7 +24846,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24674,7 +24862,7 @@ msgstr "Skype"
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr "Luźny"
+msgstr ""
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -24696,17 +24884,17 @@ msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr "Pokaz slajdów"
+msgstr ""
#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr "Elementy pokazu slajdów"
+msgstr ""
#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr "Nazwa pokazu slajdów"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/website_slideshow/website_slideshow.json
@@ -24733,19 +24921,19 @@ 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 "Mały tekst"
+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 "Najmniejszy Waluta Frakcja Wartość"
+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 "Najmniejsza jednostka frakcji krążących (monety). Na przykład 1 centa do USD i powinien zostać wprowadzony w 0,01"
+msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Snippet and more variables: {0}"
@@ -24760,7 +24948,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Type"
-msgstr "Typ łącza społecznościowego"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
@@ -24773,12 +24961,12 @@ msgstr ""
#. Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr "Dostawca logowania społecznościowego"
+msgstr ""
#. Label of the social_logins (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr "Społeczne logowanie"
+msgstr ""
#. Label of the socketio_ping_check (Select) field in DocType 'System Health
#. Report'
@@ -24795,7 +24983,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Soft-Bounced"
-msgstr "Soft-odbił"
+msgstr ""
#. Label of the software_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -24833,15 +25021,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24856,7 +25044,7 @@ msgstr ""
#. Label of the sort_field (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr "Sortuj pola"
+msgstr ""
#. Label of the sort_options (Check) field in DocType 'DocField'
#. Label of the sort_options (Check) field in DocType 'Custom Field'
@@ -24870,15 +25058,15 @@ msgstr ""
#. Label of the sort_order (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr "Kolejność"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24927,7 +25115,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -24966,6 +25154,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24973,6 +25162,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25016,7 +25206,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr "Standardowe Sidebar Menu"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:40
msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
@@ -25040,8 +25230,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25059,7 +25249,7 @@ msgstr ""
#. Label of the start_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr "Pole daty rozpoczęcia"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:111
msgid "Start Import"
@@ -25094,7 +25284,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr "Rozpoczęty"
+msgstr ""
#. Label of the started_at (Datetime) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -25108,7 +25298,7 @@ msgstr ""
#. Label of the starts_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr "Zaczyna się"
+msgstr ""
#. Label of the state (Data) field in DocType 'Token Cache'
#. Label of the state (Link) field in DocType 'Workflow Document State'
@@ -25132,7 +25322,7 @@ msgstr ""
#: frappe/contacts/doctype/address/address.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr "Stan / prowincja"
+msgstr ""
#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
#. Label of the states (Table) field in DocType 'Customize Form'
@@ -25141,12 +25331,12 @@ msgstr "Stan / prowincja"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr "Województwa"
+msgstr ""
#. Label of the parameters (Table) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr "Parametry statyczne"
+msgstr ""
#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
@@ -25163,7 +25353,7 @@ 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 "Statystyki Interwał czasowy"
+msgstr ""
#. Label of the status (Select) field in DocType 'Auto Repeat'
#. Label of the status (Select) field in DocType 'Contact'
@@ -25213,7 +25403,7 @@ msgstr "Statystyki Interwał czasowy"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25236,14 +25426,14 @@ msgstr ""
#. Label of the step (Link) field in DocType 'Onboarding Step Map'
#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Step"
-msgstr "Krok"
+msgstr ""
#. Label of the steps (Table) field in DocType 'Form Tour'
#. Label of the steps (Table) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr "Kroki"
+msgstr ""
#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
@@ -25251,7 +25441,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25288,7 +25478,7 @@ msgstr ""
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr "Sklepy JSON z ostatnich znanych wersjach o różnych zainstalowanych aplikacji. Jest on stosowany, aby zobaczyć informacje o wersji."
+msgstr ""
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
@@ -25315,38 +25505,38 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr "Styl"
+msgstr ""
#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr "Ustawienia stylu"
+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 "Styl reprezentuje kolor przycisku: sukces - zielony, niebezpieczeństwo - czerwony, - odwróć - czarny, podstawowa - ciemnoniebieski, info - jasnoniebieskie, ostrzeżenie - pomarańczowy"
+msgstr ""
#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr "Arkusz stylów"
+msgstr ""
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr "Waluta zdawkowa. Np. \"grosz\""
+msgstr ""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr "Subdomeny obsługuje erpnext.com"
+msgstr ""
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr "Subdomena"
+msgstr ""
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -25365,7 +25555,7 @@ msgstr "Subdomena"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Temat"
@@ -25377,9 +25567,9 @@ msgstr "Temat"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr "Pole tematu"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25400,14 +25590,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25435,9 +25625,9 @@ 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 "Prześlij po imporcie"
+msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25461,11 +25651,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25491,19 +25681,19 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Subsidiary"
-msgstr "Pomocniczy"
+msgstr ""
#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Subtitle"
-msgstr "Podtytuł"
+msgstr ""
#. Option for the 'Icon Style' (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
@@ -25526,12 +25716,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25546,7 +25736,7 @@ msgstr ""
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr "Sukces wiadomość"
+msgstr ""
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
@@ -25573,7 +25763,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25598,7 +25788,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25623,7 +25813,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25664,7 +25854,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25677,7 +25867,7 @@ msgstr "Zmień motyw"
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25691,7 +25881,7 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr "Synchronizuj"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
@@ -25717,12 +25907,12 @@ 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 "Synchronizuj z Kalendarzem Google"
+msgstr ""
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr "Synchronizuj z Kontaktami Google"
+msgstr ""
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
@@ -25746,9 +25936,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25758,7 +25946,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25885,6 +26073,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25899,7 +26088,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25963,23 +26151,28 @@ msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr "Powiadomienie systemowe"
+msgstr ""
#. Label of the system_page (Check) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr "Strona systemowa"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+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 "Menedżerowie systemów są domyślnie dozwoleni"
+msgstr ""
#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
@@ -25991,6 +26184,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26026,7 +26225,7 @@ msgstr "Tabela"
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26035,14 +26234,14 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
#. Label of the table_html (HTML) field in DocType 'Version'
#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr "Tabela HTML"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -26051,9 +26250,9 @@ msgstr "Tabela HTML"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr "Tabela MultiSelect"
+msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26061,11 +26260,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26085,17 +26284,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Tagi"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26168,18 +26367,18 @@ msgstr "Plik szablonu"
#. Label of the template_options (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr "Opcje szablonu"
+msgstr ""
#. Label of the template_warnings (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr "Ostrzeżenia szablonu"
+msgstr ""
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26213,22 +26412,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 "Tekst"
+msgstr ""
#. Label of the text_align (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr "Wyrównie tekst"
+msgstr ""
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr "Kolor tekstu"
+msgstr ""
#. Label of the text_content (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr "Zawartość tekstowa"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -26239,7 +26438,7 @@ msgstr "Zawartość tekstowa"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr "Edytor tekstu"
+msgstr ""
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
@@ -26275,7 +26474,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26327,7 +26526,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26475,7 +26682,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26487,6 +26694,42 @@ msgstr ""
msgid "The total number of user document types limit has been crossed."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 ""
@@ -26494,7 +26737,7 @@ msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr "Zaczep zostanie uruchomiony, jeśli to wyrażenie jest prawdziwe"
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183
msgid "The {0} is already on auto repeat {1}"
@@ -26507,7 +26750,7 @@ msgstr ""
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr "Motyw"
+msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
@@ -26517,18 +26760,18 @@ msgstr "Zmieniono motyw"
#. Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr "Konfiguracja motywu"
+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 motywu"
+msgstr ""
#: frappe/workflow/doctype/workflow/workflow.js:125
msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Nie ma żadnych nadchodzących wydarzeń."
@@ -26536,7 +26779,7 @@ msgstr "Nie ma żadnych nadchodzących wydarzeń."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26545,7 +26788,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26557,11 +26800,11 @@ msgstr ""
msgid "There is no data to be exported"
msgstr ""
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Obecnie nie ma nic nowego do pokazania."
@@ -26569,7 +26812,7 @@ msgstr "Obecnie nie ma nic nowego do pokazania."
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26585,7 +26828,7 @@ msgstr ""
msgid "There was an error saving filters"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Wystąpiły błędy"
@@ -26593,11 +26836,11 @@ msgstr "Wystąpiły błędy"
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr ""
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr ""
@@ -26622,7 +26865,7 @@ msgstr ""
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr "Te wartości będą automatycznie aktualizowane w transakcjach, a także będzie przydatne aby ograniczyć uprawnienia dla tego użytkownika w transakcji zawierających te wartości."
+msgstr ""
#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
@@ -26632,7 +26875,7 @@ msgstr ""
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr "Uwierzytelnianie przy pomocy trzeciej strony"
+msgstr ""
#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
@@ -26666,11 +26909,11 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26683,18 +26926,18 @@ 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 "Ta karta będzie dostępna dla wszystkich użytkowników, jeśli zostanie ustawiona"
+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 "Ten wykres będzie dostępny dla wszystkich użytkowników, jeśli jest ustawiony"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:212
msgid "This doctype has no orphan fields to trim"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26710,15 +26953,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26731,7 +26974,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26756,18 +26999,18 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr "Format ten jest używany, jeśli Format danego kraju nie znaleziono"
+msgstr ""
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
msgid "This geolocation provider is not supported yet."
@@ -26779,7 +27022,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26811,7 +27054,7 @@ msgstr ""
#. 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 "Jest to numer ostatniej transakcji utworzonego z tym prefiksem"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
@@ -26821,15 +27064,15 @@ msgstr ""
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr ""
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr ""
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26837,7 +27080,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr ""
@@ -26861,7 +27104,7 @@ msgstr ""
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr ""
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -26879,13 +27122,13 @@ msgstr ""
#. 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown in a modal after routing"
-msgstr "Zostanie to pokazane w trybie modalnym po routingu"
+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 "Zostanie to pokazane użytkownikowi w oknie dialogowym po przekierowaniu do raportu"
+msgstr ""
#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
@@ -26905,14 +27148,14 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr ""
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
#. Label of the thumbnail_url (Small Text) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Thumbnail URL"
-msgstr "Miniatura URL"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -26936,6 +27179,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26943,6 +27187,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26952,7 +27197,7 @@ msgstr ""
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time Format"
-msgstr "Format czasu"
+msgstr ""
#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -26962,7 +27207,7 @@ msgstr ""
#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr "Szereg czasowy"
+msgstr ""
#. Label of the based_on (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -26994,12 +27239,12 @@ msgstr "Strefa czasowa"
#. Label of the time_zones (Text) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time Zones"
-msgstr "Strefy czasowe"
+msgstr ""
#. Label of the time_format (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time format"
-msgstr "Format czasu"
+msgstr ""
#. Label of the time_in_queries (Float) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -27010,7 +27255,7 @@ msgstr ""
#. 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 "Czas w sekundach, aby zachować kod QR na serwerze. Min: 240"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
msgid "Time series based on is required to create a dashboard chart"
@@ -27025,11 +27270,6 @@ msgstr ""
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Ponadczasowa noc"
@@ -27047,25 +27287,25 @@ msgstr ""
#. Label of the timeline_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Timeline Field"
-msgstr "Oś czasu Pole"
+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 "Linki na osi czasu"
+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 "Timeline Nazwa"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
@@ -27082,7 +27322,7 @@ 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 "Szereg czasowy"
+msgstr ""
#. Label of the timespan (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -27136,7 +27376,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27152,14 +27392,14 @@ msgstr "Tytuł"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr "Pole tytułu"
+msgstr ""
#. Label of the title_prefix (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr "Prefiks tytułu"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27217,7 +27457,7 @@ msgstr ""
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr "Do CC"
+msgstr ""
#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
#. Email Report'
@@ -27245,7 +27485,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -27298,35 +27538,18 @@ msgstr "Do zrobienia"
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Przełącz na pełną szerokość"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Przełącz boczny pasek"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Zmień motyw"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr "Znak"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/token_cache/token_cache.json
@@ -27358,7 +27581,7 @@ msgid "Tomorrow"
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr ""
@@ -27366,15 +27589,19 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -27428,12 +27655,12 @@ msgstr ""
#. Label of the topic (Link) field in DocType 'Discussion Reply'
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr "Temat"
+msgstr ""
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr ""
@@ -27448,7 +27675,7 @@ msgstr ""
msgid "Total Errors (last 1 day)"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr ""
@@ -27461,7 +27688,7 @@ msgstr ""
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Total Subscribers"
-msgstr "Wszystkich zapisani"
+msgstr ""
#. Label of the total_users (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -27506,22 +27733,22 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr "Śledzenie zmian"
+msgstr ""
#. Label of the track_email_status (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr "Śledź status e-mail"
+msgstr ""
#. Label of the track_field (Data) field in DocType 'Milestone'
#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr "Pole toru"
+msgstr ""
#. Label of the track_seen (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr "Tor widziany"
+msgstr ""
#. Label of the track_steps (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -27533,7 +27760,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr "Śledź wyświetlenia"
+msgstr ""
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
@@ -27548,7 +27775,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27563,7 +27790,7 @@ msgstr ""
#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr "Zasady transakcji"
+msgstr ""
#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
@@ -27573,7 +27800,7 @@ msgstr ""
#. Label of the transitions (Table) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr "Przejścia"
+msgstr ""
#. Label of the translatable (Check) field in DocType 'DocField'
#. Label of the translatable (Check) field in DocType 'Custom Field'
@@ -27582,9 +27809,9 @@ msgstr "Przejścia"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr "Przetłumaczalny"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27595,7 +27822,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr ""
@@ -27606,7 +27833,7 @@ msgstr ""
#. Label of the translated_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr "Tłumaczenie"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/translation/translation.json
@@ -27625,15 +27852,15 @@ msgstr ""
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Trash"
-msgstr "Śmieci"
+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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
-msgstr "Jako drzewo"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:211
msgid "Tree View"
@@ -27642,7 +27869,7 @@ 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 "Struktury drzewne są implementowane za pomocą zestawu zagnieżdżonego"
+msgstr ""
#: frappe/public/js/frappe/views/treeview.js:19
msgid "Tree view is not available for {0}"
@@ -27651,7 +27878,7 @@ msgstr ""
#. Label of the method (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Trigger Method"
-msgstr "Sposób wyzwalania"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
@@ -27664,7 +27891,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 "Wyzwalanie prawidłowych metod, takich jak "before_insert", "after_update", itd (zależy od wybranego DocType)"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:144
msgid "Trim Table"
@@ -27680,8 +27907,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27715,18 +27942,19 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication"
-msgstr "Uwierzytelnianie dwóch czynników"
+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 "Metoda uwierzytelniania dwóch czynników"
+msgstr ""
#. Label of the communication_medium (Select) field in DocType 'Communication'
#. Label of the fieldtype (Select) field in DocType 'DocField'
#. Label of the fieldtype (Select) field in DocType 'Customize Form Field'
#. Label of the type (Data) field in DocType 'Console Log'
#. Label of the type (Select) field in DocType 'Dashboard Chart'
+#. Label of the type (Select) field in DocType 'Event Notifications'
#. 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'
@@ -27740,6 +27968,7 @@ msgstr "Metoda uwierzytelniania dwóch czynników"
#: 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/event_notifications/event_notifications.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
@@ -27748,7 +27977,7 @@ msgstr "Metoda uwierzytelniania dwóch czynników"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27810,7 +28039,7 @@ msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "UNSEEN"
-msgstr "NIEWIDZIALNY"
+msgstr ""
#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -27842,7 +28071,7 @@ msgstr ""
#. Description of the 'Documentation Link' (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "URL for documentation or help"
-msgstr "Adres URL dokumentacji lub pomocy"
+msgstr ""
#: frappe/core/doctype/file/file.py:241
msgid "URL must start with http:// or https://"
@@ -27893,7 +28122,7 @@ 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"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/utm_campaign/utm_campaign.json
@@ -27915,7 +28144,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -27923,7 +28152,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr ""
@@ -27939,7 +28168,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27954,26 +28183,26 @@ msgstr ""
#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr "Stan niepodpisania"
+msgstr ""
#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr ""
@@ -27994,7 +28223,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Unique"
-msgstr "Unikalny"
+msgstr ""
#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -28035,21 +28264,22 @@ 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 "Niewykształcony"
+msgstr ""
#. Label of the unread_notification_sent (Check) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr "Nieprzeczytane Powiadomienie Wysłano"
+msgstr ""
#: frappe/utils/safe_exec.py:498
msgid "Unsafe SQL query"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr ""
@@ -28065,7 +28295,7 @@ msgstr ""
#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr "Metoda Wyrejestrowanie"
+msgstr ""
#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
@@ -28082,11 +28312,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28106,7 +28336,7 @@ msgstr ""
msgid "Unzipping files..."
msgstr ""
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr ""
@@ -28114,13 +28344,13 @@ msgstr ""
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr ""
@@ -28133,13 +28363,13 @@ 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 "Zaktualizuj istniejące rekordy"
+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 "Zaktualizuj Pole"
+msgstr ""
#: frappe/core/doctype/installed_applications/installed_applications.js:6
#: frappe/core/doctype/installed_applications/installed_applications.js:13
@@ -28169,12 +28399,12 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr "Zaktualizuj Numer Serii"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Update Settings"
-msgstr "Zaktualizuj ustawienia"
+msgstr ""
#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
@@ -28185,13 +28415,13 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr "Zaktualizuj Wartość"
+msgstr ""
#: frappe/utils/change_log.py:381
msgid "Update from Frappe Cloud"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr ""
@@ -28199,8 +28429,7 @@ msgstr ""
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr ""
@@ -28212,11 +28441,11 @@ msgstr ""
msgid "Updated To A New Version 🎉"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr ""
@@ -28241,11 +28470,11 @@ msgstr ""
msgid "Updating naming series options"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr ""
@@ -28253,12 +28482,12 @@ msgstr ""
msgid "Updating {0} of {1}, {2}"
msgstr ""
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28279,12 +28508,12 @@ msgstr ""
#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Dropbox"
-msgstr "Przesłano do 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 "Przesłano na Dysk Google"
+msgstr ""
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
@@ -28296,7 +28525,7 @@ 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 "Użyj kodowania ASCII dla hasła"
+msgstr ""
#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
#. Report'
@@ -28306,6 +28535,7 @@ msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr ""
@@ -28314,7 +28544,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr "Wykorzystanie IMAP"
+msgstr ""
#. Label of the use_number_format_from_currency (Check) field in DocType
#. 'System Settings'
@@ -28325,12 +28555,12 @@ msgstr ""
#. Label of the use_post (Check) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Use POST"
-msgstr "Użyj POST"
+msgstr ""
#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr "Użyj wykresu raportu"
+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'
@@ -28339,7 +28569,7 @@ msgstr "Użyj wykresu raportu"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr "Użyj SSL"
+msgstr ""
#. Label of the use_starttls (Check) field in DocType 'Email Account'
#. Label of the use_starttls (Check) field in DocType 'Email Domain'
@@ -28353,7 +28583,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use TLS"
-msgstr "Użyj TLS"
+msgstr ""
#: frappe/utils/password_strength.py:191
msgid "Use a few uncommon words together."
@@ -28377,14 +28607,14 @@ msgstr ""
msgid "Use of sub-query or function is restricted"
msgstr ""
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr ""
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr "Użyj tej fieldName wygenerować tytuł"
+msgstr ""
#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
#. Account'
@@ -28411,9 +28641,8 @@ msgstr ""
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28440,11 +28669,11 @@ msgstr ""
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28485,12 +28714,12 @@ msgstr ""
#. Label of the in_create (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr "Użytkownik nie może stworzyć"
+msgstr ""
#. Label of the read_only (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr "Użytkownik nie może szukać"
+msgstr ""
#: frappe/public/js/frappe/desk.js:550
msgid "User Changed"
@@ -28499,7 +28728,7 @@ msgstr ""
#. Label of the defaults (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr "Standardowe ustawienia Użytkownika"
+msgstr ""
#. Label of the user_details_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -28528,7 +28757,7 @@ msgstr ""
#. Label of the user_emails (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr "E-maile użytkowników"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/user_group/user_group.json
@@ -28549,17 +28778,17 @@ 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 Użytkownika"
+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 "Właściwość identyfikatora użytkownika"
+msgstr ""
#. Label of the user (Link) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr "Identyfikator użytkownika"
+msgstr ""
#. Label of the user_id_field (Select) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
@@ -28573,14 +28802,14 @@ msgstr ""
#. Label of the user_image (Attach Image) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr "Zdjęcie Użytkownika"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/user_invitation/user_invitation.json
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr ""
@@ -28596,19 +28825,19 @@ msgid "User Permission"
msgstr ""
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Uprawnienia użytkownika"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Uprawnienia użytkownika"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr ""
@@ -28652,7 +28881,7 @@ msgstr ""
#. Label of the _user_tags (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "User Tags"
-msgstr "Tagi użytkownika"
+msgstr ""
#. Label of the user_type (Link) field in DocType 'User'
#. Name of a DocType
@@ -28673,15 +28902,15 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr "Użytkownik może zalogować się przy użyciu adresu e-mail lub numeru telefonu komórkowego"
+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 "Użytkownik może zalogować się przy użyciu adresu e-mail lub nazwy użytkownika"
+msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr ""
@@ -28715,27 +28944,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr ""
@@ -28744,11 +28973,11 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr ""
@@ -28773,18 +29002,17 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr ""
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28822,7 +29050,7 @@ msgstr ""
#. Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr "Poprawny"
+msgstr ""
#: frappe/templates/includes/login/login.js:52
#: frappe/templates/includes/login/login.js:65
@@ -28836,7 +29064,7 @@ msgstr ""
#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Validate Field"
-msgstr "Zatwierdź pole"
+msgstr ""
#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
#. Account'
@@ -28855,14 +29083,14 @@ msgstr ""
msgid "Validate SSL Certificate"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr ""
#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr "Ważność"
+msgstr ""
#. Label of the value (Data) field in DocType 'Milestone'
#. Label of the defvalue (Text) field in DocType 'DefaultValue'
@@ -28884,7 +29112,7 @@ msgstr "Ważność"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28894,7 +29122,7 @@ msgstr "Wartość"
#. 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 "Wartość oparta na"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -28904,22 +29132,26 @@ msgstr ""
#. Label of the value_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value Changed"
-msgstr "Wartość Zmieniona"
+msgstr ""
#. Label of the property_value (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr "Wartość, którą należy ustawić"
+msgstr ""
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28931,7 +29163,7 @@ msgstr ""
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28939,7 +29171,7 @@ msgstr ""
#. 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 "Wartość z tego pola zostanie ustawiona jako termin w Do zrobienia"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:713
msgid "Value must be one of {0}"
@@ -28954,9 +29186,15 @@ 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 "Wartość do zweryfikowania"
+msgstr ""
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr ""
@@ -28973,7 +29211,7 @@ msgstr ""
msgid "Value {0} must in {1} format"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr ""
@@ -28982,11 +29220,11 @@ msgstr ""
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr ""
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr ""
@@ -28994,7 +29232,7 @@ msgstr ""
msgid "Verification Link"
msgstr ""
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr ""
@@ -29005,10 +29243,10 @@ msgstr ""
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr "Zweryfikowany"
+msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr ""
@@ -29032,7 +29270,7 @@ msgstr ""
#. Label of the video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr "URL wideo"
+msgstr ""
#. Label of the view_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -29044,7 +29282,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr ""
@@ -29056,7 +29294,7 @@ msgstr ""
msgid "View File"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr ""
@@ -29078,12 +29316,12 @@ msgstr ""
#. Label of the view_properties (Button) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr "Właściwości widoku (przez Customize Form)"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "View Report"
-msgstr "Zobacz raport"
+msgstr ""
#. Label of the view_settings (Section Break) field in DocType 'DocType'
#. Label of the view_settings_section (Section Break) field in DocType
@@ -29091,9 +29329,9 @@ msgstr "Zobacz raport"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr "Ustawienia widoku"
+msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29102,14 +29340,11 @@ msgstr ""
msgid "View Switcher"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29125,7 +29360,7 @@ msgstr ""
msgid "View this in your browser"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr ""
@@ -29139,7 +29374,7 @@ msgstr ""
#. Label of the viewed_by (Data) field in DocType 'View Log'
#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr "Oglądane przez"
+msgstr ""
#. Group in DocType's connections
#. Label of a Card Break in the Build Workspace
@@ -29161,7 +29396,7 @@ msgstr ""
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29177,7 +29412,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Visit"
-msgstr "Wizyta"
+msgstr ""
#: frappe/desk/doctype/desktop_settings/desktop_settings.js:6
msgid "Visit Desktop"
@@ -29209,7 +29444,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29218,7 +29453,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr ""
@@ -29285,7 +29520,7 @@ 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 "Pola formularza internetowego"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
@@ -29302,7 +29537,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr ""
@@ -29326,7 +29561,7 @@ 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 "Wartości szablonów sieci Web"
+msgstr ""
#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
@@ -29362,12 +29597,12 @@ msgstr ""
#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr "Nagłówki Webhook"
+msgstr ""
#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr "Żądanie Webhook"
+msgstr ""
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -29379,27 +29614,27 @@ msgstr ""
#. Label of the webhook_secret (Password) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr "Secret Webhook"
+msgstr ""
#. Label of the sb_security (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr "Bezpieczeństwo Webhook"
+msgstr ""
#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Trigger"
-msgstr "Wyzwalacz Webhook"
+msgstr ""
#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Webhook URL"
-msgstr "Adres URL webhooka"
+msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29454,7 +29689,7 @@ msgstr ""
msgid "Website Search Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr ""
@@ -29519,6 +29754,11 @@ msgstr ""
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29553,7 +29793,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 "Dni robocze"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -29582,7 +29822,7 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Weekly Long"
-msgstr "Tygodniowy Długi"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
@@ -29594,7 +29834,7 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr "Powitalny szablon wiadomości e-mail"
+msgstr ""
#. Label of the welcome_url (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
@@ -29606,15 +29846,15 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Nowości"
@@ -29622,7 +29862,7 @@ msgstr "Nowości"
#. '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 "Po włączeniu umożliwia gościom przesyłanie plików do Twojej aplikacji. Możesz włączyć tę opcję, jeśli chcesz zbierać pliki od użytkownika bez konieczności logowania, na przykład w formularzu internetowym z aplikacjami o pracę."
+msgstr ""
#. Description of the 'Store Attached PDF Document' (Check) field in DocType
#. 'System Settings'
@@ -29636,10 +29876,6 @@ msgstr ""
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29657,7 +29893,7 @@ msgstr ""
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Szerokość"
@@ -29669,7 +29905,7 @@ msgstr "Szerokości można ustawić w px lub %."
#. Label of the wildcard_filter (Check) field in DocType 'Report Filter'
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Wildcard Filter"
-msgstr "Filtr symboli wieloznacznych"
+msgstr ""
#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report
#. Filter'
@@ -29732,7 +29968,7 @@ msgstr ""
#. Master'
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr "Nazwa Akcji Przepływu Pracy"
+msgstr ""
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
@@ -29743,7 +29979,7 @@ msgstr ""
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr "Działanie przepływu pracy nie jest tworzone dla stanów opcjonalnych"
+msgstr ""
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.js:25
@@ -29778,10 +30014,14 @@ msgstr ""
msgid "Workflow Document State"
msgstr ""
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr "Nazwa Przepływu Pracy"
+msgstr ""
#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
@@ -29793,13 +30033,13 @@ msgstr ""
#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr "Pole Stanu Przepływu Pracy"
+msgstr ""
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr ""
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr ""
@@ -29807,7 +30047,7 @@ msgstr ""
msgid "Workflow States Don't Exist"
msgstr ""
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr ""
@@ -29842,18 +30082,15 @@ msgstr ""
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29880,7 +30117,6 @@ 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 "Menedżer obszaru roboczego"
@@ -29894,27 +30130,15 @@ msgstr ""
msgid "Workspace Quick List"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "Ustawienia obszaru roboczego"
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr "Zakończono konfigurację obszaru roboczego"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -29924,13 +30148,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
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 "Widoczność obszaru roboczego"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr ""
@@ -29959,11 +30177,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
-msgstr "Zapisz"
+msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr ""
@@ -29981,7 +30200,7 @@ msgstr ""
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -29996,7 +30215,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr ""
@@ -30044,10 +30263,14 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30056,10 +30279,10 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Tak"
@@ -30095,7 +30318,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30103,7 +30326,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30111,11 +30334,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30138,7 +30361,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -30146,10 +30369,14 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr ""
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -30166,7 +30393,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30174,7 +30401,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -30187,7 +30414,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr ""
@@ -30211,10 +30438,6 @@ msgstr ""
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
@@ -30269,7 +30492,7 @@ msgstr ""
msgid "You can try changing the filters of your report."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr ""
@@ -30299,6 +30522,10 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -30325,7 +30552,6 @@ msgid "You changed {0} to {1}"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr ""
@@ -30334,11 +30560,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
@@ -30350,15 +30572,19 @@ msgstr ""
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
@@ -30394,7 +30620,7 @@ msgstr ""
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
@@ -30414,7 +30640,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30423,7 +30649,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr ""
@@ -30439,12 +30664,12 @@ msgstr ""
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr ""
@@ -30452,7 +30677,7 @@ msgstr ""
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr ""
@@ -30484,7 +30709,7 @@ msgstr ""
msgid "You need to have \"Share\" permission"
msgstr ""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr ""
@@ -30504,7 +30729,7 @@ msgstr ""
msgid "You need write permission on {0} {1} to rename"
msgstr ""
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
@@ -30551,7 +30776,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30628,7 +30853,7 @@ msgstr ""
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr ""
@@ -30656,7 +30881,7 @@ msgstr ""
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr "Twoje imię i nazwisko i adres organizacji w stopce e-mail."
+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."
@@ -30670,7 +30895,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30686,13 +30911,13 @@ 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 "Zero oznacza wysyłanie rekordów w każdej chwili"
+msgstr ""
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:363
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30703,7 +30928,7 @@ msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "after_insert"
-msgstr "po"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -30711,7 +30936,7 @@ msgstr "po"
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -30723,7 +30948,7 @@ msgstr "rosnąco"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr "niebieski"
+msgstr ""
#: frappe/public/js/frappe/form/workflow.js:35
msgid "by Role"
@@ -30734,7 +30959,7 @@ msgstr ""
msgid "cProfile Output"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "kalendarz"
@@ -30750,7 +30975,9 @@ msgid "canceled"
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30774,7 +31001,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30782,7 +31009,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "darkgrey"
-msgstr "ciemno szary"
+msgstr ""
#: frappe/core/page/dashboard_view/dashboard_view.js:65
msgid "dashboard"
@@ -30793,21 +31020,21 @@ msgstr "panel kontrolny"
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd-mm-yyyy"
-msgstr "dd-mm-rrrr"
+msgstr ""
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd.mm.yyyy"
-msgstr "dd.mm.rrrr"
+msgstr ""
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd/mm/yyyy"
-msgstr "dd/mm/rrrr"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
@@ -30832,7 +31059,7 @@ msgstr ""
msgid "descending"
msgstr "malejąco"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr ""
@@ -30840,9 +31067,9 @@ msgstr ""
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
-msgstr "np \"Pomoc \",\" Sprzedaż \",\" Jerry Yang \""
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr ""
@@ -30851,20 +31078,20 @@ msgstr ""
#: 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 "np pop.gmail.com / imap.gmail.com"
+msgstr ""
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
-msgstr "np replies@yourcomany.com. Wszystkie odpowiedzi przyjdą do tej skrzynki."
+msgstr ""
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr "np smtp.gmail.com"
+msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
@@ -30884,12 +31111,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr ""
@@ -30918,7 +31149,7 @@ msgstr ""
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "fairlogin"
-msgstr "Fairlogin"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -30945,19 +31176,19 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr ""
#. Label of the icon (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr "ikona"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -30965,6 +31196,20 @@ msgstr "ikona"
msgid "import"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -31004,16 +31249,11 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr ""
@@ -31023,31 +31263,31 @@ msgstr ""
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm-dd-yyyy"
-msgstr "mm-dd-rrrr"
+msgstr ""
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm/dd/yyyy"
-msgstr "mm/dd/rrrr"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr ""
#. Label of the no_failed (Int) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr "bez nieudanych prób"
+msgstr ""
#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
@@ -31102,7 +31342,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "lub"
@@ -31137,7 +31377,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr "fioletowy"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -31153,7 +31393,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr "czerwony"
+msgstr ""
#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
@@ -31168,14 +31408,14 @@ msgstr ""
#. Label of the response (HTML) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr "odpowiedź"
+msgstr ""
#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -31201,7 +31441,7 @@ msgstr ""
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr "udział"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
@@ -31259,11 +31499,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr ""
@@ -31295,7 +31535,7 @@ msgstr "do twojej przeglądarki"
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "twitter"
-msgstr "świergot"
+msgstr ""
#: frappe/public/js/frappe/change_log.html:7
msgid "updated to {0}"
@@ -31361,11 +31601,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31383,7 +31625,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr "żółty"
+msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
@@ -31394,18 +31636,18 @@ msgstr "wczoraj"
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "yyyy-mm-dd"
-msgstr "rrrr-mm-dd"
+msgstr ""
#: frappe/desk/doctype/event/event.js:87
#: frappe/public/js/frappe/form/footer/form_timeline.js:547
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31422,8 +31664,8 @@ msgstr ""
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31436,13 +31678,13 @@ msgid "{0} Chart"
msgstr ""
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31476,11 +31718,11 @@ msgstr "{0} m"
msgid "{0} Map"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31488,7 +31730,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr ""
@@ -31501,11 +31743,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr ""
@@ -31567,7 +31809,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31596,16 +31838,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr ""
@@ -31622,11 +31867,19 @@ msgstr ""
msgid "{0} days ago"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
@@ -31651,7 +31904,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31672,7 +31925,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr ""
@@ -31680,7 +31937,15 @@ msgstr ""
msgid "{0} is a not a valid zip file"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr ""
@@ -31688,6 +31953,15 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31697,22 +31971,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr "{0} jest obecnie {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr ""
@@ -31725,10 +32013,14 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31745,12 +32037,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31758,23 +32050,23 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr ""
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31790,6 +32082,11 @@ msgstr ""
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr ""
@@ -31798,10 +32095,12 @@ msgstr ""
msgid "{0} is not like {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr ""
@@ -31810,36 +32109,50 @@ msgstr ""
msgid "{0} is now default print format for {1} doctype"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "Wybrano {0} elementy(ów)"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr ""
@@ -31867,35 +32180,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31912,11 +32225,11 @@ msgid "{0} not allowed to be renamed"
msgstr ""
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} z {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31945,7 +32258,7 @@ msgstr ""
msgid "{0} records deleted"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr ""
@@ -31970,7 +32283,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr ""
@@ -31984,7 +32297,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr ""
@@ -31992,7 +32305,7 @@ msgstr ""
msgid "{0} self assigned this task: {1}"
msgstr ""
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr ""
@@ -32060,7 +32373,7 @@ msgstr ""
msgid "{0} weeks ago"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32072,7 +32385,7 @@ msgstr "{0} l"
msgid "{0} years ago"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr ""
@@ -32080,11 +32393,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32096,11 +32409,11 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr ""
@@ -32108,87 +32421,59 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr ""
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr ""
@@ -32196,15 +32481,59 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32217,15 +32546,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr ""
@@ -32245,11 +32574,11 @@ msgstr ""
msgid "{count} rows selected"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr ""
diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po
index b3a5bb7625..ca449b5015 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "\"Principal\" diz respeito à tabela principal na qual deve ser acrescen
msgid "\"Team Members\" or \"Management\""
msgstr "\"Membros da Equipa\" ou \"Administração\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr ""
@@ -66,7 +66,7 @@ msgstr ""
msgid "<head> HTML"
msgstr ""
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr ""
@@ -90,19 +90,19 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr "'Destinatários' não especificados"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' não é um IBAN válido"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' não é um URL válido"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' não permitido para o tipo {1} na linha {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Obrigatório)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr ""
@@ -158,7 +158,7 @@ msgstr "1 Dia"
msgid "1 Google Calendar Event synced."
msgstr "1 evento do Google Calendar sincronizado."
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Relatório"
@@ -189,7 +189,7 @@ msgstr "1 mês atrás"
msgid "1 of 2"
msgstr "1 de 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "será exportado 1 registo"
@@ -575,21 +575,21 @@ msgstr ""
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "="
-msgstr "="
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">"
-msgstr ">"
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">="
-msgstr ">="
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
@@ -603,7 +603,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr ""
@@ -922,7 +922,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr ""
@@ -971,13 +971,13 @@ msgstr ""
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr ""
@@ -1034,20 +1034,20 @@ msgstr ""
msgid "Activity Log"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr ""
@@ -1055,11 +1055,11 @@ msgstr ""
msgid "Add / Update"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1079,11 +1079,15 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1092,8 +1096,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1137,11 +1141,7 @@ msgstr ""
msgid "Add Indexes"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr ""
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr ""
@@ -1154,17 +1154,13 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr ""
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr ""
@@ -1183,16 +1179,16 @@ msgstr ""
msgid "Add Subscribers"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr ""
@@ -1242,19 +1238,19 @@ msgstr ""
msgid "Add a new section"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr ""
@@ -1272,6 +1268,10 @@ msgstr ""
msgid "Add field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1285,6 +1285,10 @@ msgstr ""
msgid "Add page break"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr ""
@@ -1303,7 +1307,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr ""
@@ -1343,8 +1347,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr ""
@@ -1434,7 +1438,7 @@ msgstr ""
msgid "Adds a custom field to a DocType"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr ""
@@ -1461,15 +1465,15 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr ""
@@ -1486,8 +1490,8 @@ msgstr ""
msgid "Advanced Control"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr ""
@@ -1568,7 +1572,7 @@ msgstr ""
msgid "Alert"
msgstr ""
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1592,6 +1596,15 @@ msgstr ""
msgid "Align Value"
msgstr ""
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1624,7 +1637,7 @@ msgstr ""
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr ""
@@ -1636,11 +1649,11 @@ msgstr ""
msgid "All Records"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr ""
@@ -1951,7 +1964,7 @@ msgstr ""
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -1985,13 +1998,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr ""
@@ -2086,7 +2147,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr ""
@@ -2099,7 +2160,7 @@ msgstr ""
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2150,7 +2211,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr ""
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr ""
@@ -2163,7 +2224,7 @@ msgstr ""
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2213,11 +2274,11 @@ msgstr ""
msgid "App Name (Client Name)"
msgstr ""
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr ""
@@ -2291,7 +2352,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2300,6 +2361,10 @@ msgstr ""
msgid "Apply Filters"
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2339,7 +2404,7 @@ msgstr ""
msgid "Apply to all Documents Types"
msgstr ""
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr ""
@@ -2347,18 +2412,11 @@ msgstr ""
msgid "Approval Required"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2381,16 +2439,16 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr ""
@@ -2409,19 +2467,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
@@ -2441,7 +2499,7 @@ msgstr ""
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
@@ -2490,7 +2548,7 @@ msgstr ""
msgid "Ask"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr ""
@@ -2503,7 +2561,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2553,7 +2611,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2642,7 +2700,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2667,7 +2725,7 @@ msgstr ""
msgid "Attach"
msgstr "Anexar"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr ""
@@ -2765,19 +2823,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr ""
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr ""
@@ -3102,11 +3167,6 @@ msgstr ""
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3212,17 +3272,12 @@ msgstr ""
msgid "Background Image"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr ""
@@ -3335,8 +3390,8 @@ msgstr ""
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr ""
@@ -3360,6 +3415,8 @@ msgstr ""
msgid "Basic Info"
msgstr ""
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3429,7 +3486,7 @@ msgstr ""
msgid "Beta"
msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr ""
@@ -3557,18 +3614,11 @@ msgstr ""
msgid "Brand Image"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr ""
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
@@ -3639,7 +3689,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr ""
@@ -3660,7 +3710,7 @@ msgstr ""
msgid "Bulk Update"
msgstr ""
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3672,7 +3722,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -3821,7 +3871,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr ""
@@ -3871,12 +3921,12 @@ msgid "Callback Title"
msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Câmera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3888,11 +3938,11 @@ msgstr ""
msgid "Campaign Description (Optional)"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -3902,7 +3952,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -3924,7 +3974,7 @@ msgstr ""
msgid "Cancel"
msgstr "Cancelar"
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Cancelar"
@@ -3934,11 +3984,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Cancelar"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr ""
@@ -3950,7 +4000,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3983,7 +4033,7 @@ msgstr ""
msgid "Cancelling documents"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr ""
@@ -3991,7 +4041,7 @@ msgstr ""
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -3999,7 +4049,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4019,11 +4069,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4035,7 +4085,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4043,10 +4093,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr ""
@@ -4055,15 +4109,15 @@ msgstr ""
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4074,11 +4128,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4106,7 +4160,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4119,7 +4173,7 @@ msgstr ""
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr ""
@@ -4135,15 +4189,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4155,7 +4209,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr ""
@@ -4180,7 +4234,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr ""
@@ -4200,7 +4254,7 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
@@ -4214,7 +4268,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr ""
@@ -4243,17 +4297,19 @@ msgstr ""
msgid "Category Name"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4342,7 +4398,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4407,6 +4463,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr ""
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr ""
@@ -4458,7 +4520,7 @@ msgstr ""
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4468,7 +4530,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4476,7 +4538,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4496,10 +4558,6 @@ msgstr ""
msgid "Choose authentication method to be used by all users"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr ""
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4516,11 +4574,11 @@ msgstr ""
msgid "Clear"
msgstr "Claro"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr ""
@@ -4528,7 +4586,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4554,7 +4612,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4622,7 +4680,7 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
@@ -4730,7 +4788,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr ""
@@ -4740,7 +4798,7 @@ msgstr ""
msgid "Close Condition"
msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4796,12 +4854,12 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4858,7 +4916,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4869,7 +4927,7 @@ msgstr "Cor"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4914,11 +4972,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -4961,7 +5019,7 @@ msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5108,12 +5166,12 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5128,7 +5186,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr ""
@@ -5219,7 +5277,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5308,8 +5366,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5427,7 +5485,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5443,7 +5501,7 @@ msgstr ""
#. Label of the content_type (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
-msgstr "Tipo de Conteúdo"
+msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:88
msgid "Content data shoud be a list"
@@ -5496,11 +5554,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5512,12 +5570,12 @@ msgstr ""
msgid "Copy embed code"
msgstr ""
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr ""
@@ -5538,7 +5596,7 @@ msgstr ""
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr ""
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr ""
@@ -5546,7 +5604,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr ""
@@ -5554,11 +5612,11 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5566,7 +5624,7 @@ msgstr ""
msgid "Could not start up:"
msgstr "Não foi possível iniciar:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr ""
@@ -5618,7 +5676,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
@@ -5645,15 +5703,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
@@ -5666,13 +5725,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr ""
@@ -5706,7 +5765,7 @@ msgstr ""
msgid "Create New"
msgstr "Criar Novo"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Criar Novo"
@@ -5719,7 +5778,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5735,18 +5794,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5763,7 +5822,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr ""
@@ -5782,13 +5841,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr ""
@@ -5982,7 +6049,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr ""
@@ -5993,15 +6060,15 @@ msgstr ""
msgid "Custom Field"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr ""
@@ -6027,7 +6094,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr ""
@@ -6073,7 +6140,7 @@ msgstr ""
msgid "Custom Report"
msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr ""
@@ -6098,11 +6165,11 @@ msgstr ""
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6125,26 +6192,26 @@ msgstr ""
msgid "Customization"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr ""
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr ""
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6241,7 +6308,7 @@ msgstr ""
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr ""
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr ""
@@ -6298,8 +6365,8 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr ""
@@ -6549,7 +6616,7 @@ msgstr ""
msgid "Days Before or After"
msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr ""
@@ -6746,11 +6813,11 @@ msgstr ""
msgid "Default display currency"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr ""
@@ -6807,11 +6874,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6819,7 +6887,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6833,10 +6901,6 @@ msgstr ""
msgid "Delete Account"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr ""
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6866,7 +6930,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr ""
@@ -6894,6 +6966,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6908,16 +6984,20 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6948,7 +7028,7 @@ msgstr ""
msgid "Deleted all documents successfully"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Eliminado!"
@@ -7055,6 +7135,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7137,16 +7218,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7176,11 +7262,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr ""
@@ -7328,10 +7414,11 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Descartar"
@@ -7345,11 +7432,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Descartar"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7423,11 +7510,11 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7435,7 +7522,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7490,7 +7577,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7513,7 +7599,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7526,7 +7611,7 @@ msgstr ""
msgid "DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr ""
@@ -7594,10 +7679,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr ""
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7615,15 +7696,15 @@ msgstr ""
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr ""
@@ -7637,7 +7718,7 @@ msgstr ""
msgid "Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7676,7 +7757,7 @@ msgstr ""
msgid "Document Follow"
msgstr ""
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr ""
@@ -7699,19 +7780,19 @@ msgstr ""
msgid "Document Links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7730,8 +7811,8 @@ msgstr ""
msgid "Document Name"
msgstr ""
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7749,7 +7830,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr ""
@@ -7853,7 +7934,7 @@ msgstr ""
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7873,11 +7954,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr ""
@@ -7906,27 +7987,27 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr ""
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr ""
@@ -7938,11 +8019,11 @@ msgstr ""
msgid "Document not Relinked"
msgstr ""
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
@@ -7958,10 +8039,6 @@ msgstr ""
msgid "Document {0} has been set to state {1} by {2}"
msgstr ""
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr ""
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8099,7 +8176,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr ""
@@ -8183,7 +8260,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr ""
@@ -8191,19 +8268,15 @@ msgstr ""
msgid "Duplicate Entry"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr ""
@@ -8211,6 +8284,18 @@ msgstr ""
msgid "Duplicate field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8298,9 +8383,10 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8311,7 +8397,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8321,7 +8407,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8342,15 +8428,15 @@ msgstr ""
msgid "Edit Custom Block"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8364,7 +8450,7 @@ msgstr ""
msgid "Edit Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr ""
@@ -8377,7 +8463,7 @@ msgstr ""
msgid "Edit Format"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8435,7 +8521,7 @@ msgstr ""
msgid "Edit Shortcut"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8458,11 +8544,11 @@ msgstr ""
msgid "Edit the {0} Doctype"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr ""
@@ -8518,6 +8604,7 @@ msgstr ""
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8533,12 +8620,14 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: 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 +8662,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr ""
@@ -8771,7 +8860,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8810,7 +8899,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -8818,7 +8907,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9137,11 +9226,11 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr ""
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9168,6 +9257,10 @@ msgstr ""
msgid "Enter folder name"
msgstr ""
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9198,7 +9291,7 @@ msgstr ""
msgid "Entity Type"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Iguais"
@@ -9232,7 +9325,7 @@ msgstr "Iguais"
msgid "Error"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr ""
@@ -9247,12 +9340,12 @@ msgstr ""
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ""
@@ -9290,15 +9383,15 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9314,15 +9407,15 @@ msgstr ""
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9332,6 +9425,12 @@ msgstr ""
msgid "Errors"
msgstr ""
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9350,6 +9449,11 @@ msgstr ""
msgid "Event Frequency"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9375,11 +9479,11 @@ msgstr ""
msgid "Event Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr ""
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr ""
@@ -9401,6 +9505,7 @@ msgid "Exact Copies"
msgstr ""
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr ""
@@ -9471,7 +9576,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9492,21 +9597,21 @@ msgstr ""
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr ""
@@ -9558,20 +9663,21 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportar"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Exportar"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr ""
@@ -9610,11 +9716,11 @@ msgstr ""
msgid "Export Type"
msgstr "Tipo de exportação"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr ""
@@ -9630,6 +9736,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9642,7 +9752,7 @@ msgstr ""
msgid "Export without main header"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr ""
@@ -9682,7 +9792,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr ""
@@ -9731,12 +9841,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr ""
@@ -9799,7 +9914,7 @@ msgstr ""
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9811,7 +9926,7 @@ msgstr ""
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr ""
@@ -9827,7 +9942,7 @@ msgstr ""
msgid "Failed to request login to Frappe Cloud"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr ""
@@ -9869,7 +9984,7 @@ msgstr ""
msgid "Fax"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr ""
@@ -9929,8 +10044,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9940,7 +10055,7 @@ msgstr "Campo"
msgid "Field \"route\" is mandatory for Web Views"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -9948,7 +10063,7 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr ""
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -9957,7 +10072,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10005,7 +10120,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10013,11 +10128,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10039,7 +10154,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10048,7 +10163,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10056,7 +10171,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10072,7 +10187,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10120,7 +10235,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10144,7 +10259,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10220,12 +10335,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10252,12 +10367,17 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filtro"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10276,7 +10396,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr ""
@@ -10285,11 +10405,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10308,10 +10428,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10335,7 +10459,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Filtros"
@@ -10366,10 +10490,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10387,14 +10507,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10482,11 +10602,11 @@ msgstr ""
msgid "Fold"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10515,12 +10635,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10528,7 +10648,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10536,7 +10656,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10544,7 +10664,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10613,7 +10733,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10650,7 +10770,7 @@ msgstr ""
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10683,15 +10803,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10715,20 +10826,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10756,7 +10863,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10806,7 +10913,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -10985,7 +11093,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11006,7 +11114,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11047,7 +11155,7 @@ msgstr ""
msgid "Full Name"
msgstr ""
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11060,7 +11168,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11069,11 +11177,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11138,11 +11246,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11152,8 +11260,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11264,7 +11372,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11324,7 +11432,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11550,7 +11658,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11630,6 +11738,10 @@ msgstr ""
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11718,7 +11830,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11754,7 +11866,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11791,7 +11903,7 @@ msgstr "Olá,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11846,7 +11958,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11882,8 +11994,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12049,7 +12161,7 @@ msgstr ""
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12132,18 +12244,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12194,7 +12306,6 @@ msgid "IP Address"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12215,11 +12326,16 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Ícone"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12230,6 +12346,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12261,13 +12381,13 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr ""
@@ -12394,12 +12514,20 @@ msgstr ""
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
@@ -12499,7 +12627,7 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr ""
@@ -12565,11 +12693,11 @@ msgstr ""
msgid "Image Width"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr ""
@@ -12603,7 +12731,7 @@ msgstr ""
msgid "Impersonated by {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12621,11 +12749,12 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12848,15 +12977,15 @@ msgid "Include Web View Link in Email"
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr ""
@@ -12923,11 +13052,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr ""
@@ -12979,7 +13108,7 @@ msgstr ""
msgid "Indicator Color"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr ""
@@ -13026,15 +13155,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr ""
@@ -13064,8 +13193,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr ""
@@ -13091,15 +13220,15 @@ msgstr ""
msgid "Instructions"
msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13167,7 +13296,7 @@ msgstr ""
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr ""
@@ -13176,6 +13305,11 @@ msgstr ""
msgid "Internal record of document shares"
msgstr ""
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13215,13 +13349,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13261,7 +13395,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13269,7 +13403,8 @@ msgstr ""
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr ""
@@ -13277,8 +13412,8 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13302,7 +13437,7 @@ msgstr ""
msgid "Invalid Login Token"
msgstr ""
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr ""
@@ -13310,7 +13445,7 @@ msgstr ""
msgid "Invalid Mail Server. Please rectify and try again."
msgstr ""
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr ""
@@ -13321,8 +13456,8 @@ msgstr ""
msgid "Invalid Operation"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr ""
@@ -13334,7 +13469,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr ""
@@ -13347,11 +13482,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13360,7 +13495,7 @@ msgstr ""
msgid "Invalid Search Field {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr ""
@@ -13379,7 +13514,7 @@ msgstr ""
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr ""
@@ -13391,7 +13526,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13399,19 +13534,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13419,18 +13554,22 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr ""
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr ""
@@ -13439,11 +13578,11 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13451,11 +13590,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13463,11 +13602,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13475,7 +13614,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13492,19 +13631,19 @@ msgstr ""
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13528,11 +13667,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13549,24 +13688,24 @@ msgstr ""
msgid "Invalid username or password"
msgstr ""
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr ""
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13694,7 +13833,7 @@ msgstr ""
msgid "Is Folder"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr ""
@@ -13765,7 +13904,7 @@ msgstr ""
msgid "Is Published Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr ""
@@ -14010,8 +14149,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr ""
@@ -14334,7 +14473,7 @@ msgstr ""
msgid "Label and Type"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr ""
@@ -14357,7 +14496,7 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14403,6 +14542,14 @@ msgstr ""
msgid "Last Active"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14527,6 +14674,11 @@ msgstr ""
msgid "Last synced {0}"
msgstr ""
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "Layout"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
@@ -14554,9 +14706,15 @@ msgstr ""
msgid "Ledger"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14650,7 +14808,7 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14679,7 +14837,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14701,7 +14859,7 @@ msgstr ""
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr ""
@@ -14742,7 +14900,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Gostar"
@@ -14766,7 +14924,7 @@ msgstr ""
msgid "Limit"
msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr ""
@@ -14892,7 +15050,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -14910,7 +15068,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
@@ -14953,6 +15111,7 @@ msgstr ""
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14974,8 +15133,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr ""
@@ -15005,7 +15164,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -15019,7 +15178,7 @@ msgstr ""
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr ""
@@ -15046,7 +15205,7 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
@@ -15055,7 +15214,7 @@ msgstr ""
msgid "Load Balancing"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15073,10 +15232,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr ""
@@ -15093,8 +15252,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15104,7 +15263,8 @@ msgid "Loading..."
msgstr ""
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
@@ -15177,6 +15337,11 @@ msgstr ""
msgid "Login"
msgstr ""
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15252,7 +15417,7 @@ msgstr ""
msgid "Login to {0}"
msgstr ""
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr ""
@@ -15319,8 +15484,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr ""
@@ -15351,7 +15515,7 @@ msgstr ""
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr ""
@@ -15501,7 +15665,7 @@ msgstr ""
msgid "Mandatory fields required in {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
@@ -15563,7 +15727,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15615,9 +15779,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15679,7 +15846,7 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr ""
@@ -15700,20 +15867,27 @@ msgstr ""
msgid "Maximum {0} rows allowed"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15757,12 +15931,12 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15796,13 +15970,13 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr ""
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
@@ -15833,7 +16007,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr ""
@@ -15930,7 +16104,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -16019,7 +16193,7 @@ msgstr ""
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16039,7 +16213,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16104,7 +16278,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16151,9 +16325,8 @@ msgstr ""
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16170,7 +16343,7 @@ msgstr ""
msgid "Module to Export"
msgstr ""
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16285,7 +16458,7 @@ msgstr ""
msgid "More content for the bottom of the page."
msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr ""
@@ -16300,7 +16473,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr ""
@@ -16312,19 +16485,19 @@ msgstr ""
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16336,7 +16509,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr ""
@@ -16454,7 +16627,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr ""
@@ -16466,7 +16639,7 @@ msgstr ""
msgid "Name of the new Print Format"
msgstr ""
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr ""
@@ -16505,7 +16678,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr ""
@@ -16529,11 +16702,6 @@ msgstr ""
msgid "Navbar Settings"
msgstr ""
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16547,39 +16715,44 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16601,6 +16774,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16617,7 +16791,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16633,8 +16807,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr ""
@@ -16683,7 +16857,7 @@ msgstr ""
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16704,8 +16878,8 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr ""
@@ -16732,8 +16906,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16741,7 +16915,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16784,32 +16958,32 @@ msgstr ""
msgid "New value to be set"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr ""
@@ -16821,7 +16995,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16842,7 +17016,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr ""
@@ -16869,12 +17043,16 @@ msgstr ""
msgid "Next Action Email Template"
msgstr ""
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -16941,20 +17119,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -17024,7 +17206,7 @@ msgstr ""
msgid "No Google Calendar Event to sync."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17043,23 +17225,23 @@ msgstr ""
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr ""
@@ -17079,11 +17261,11 @@ msgstr ""
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr ""
@@ -17091,7 +17273,7 @@ msgstr ""
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17099,7 +17281,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17115,7 +17297,7 @@ msgstr ""
msgid "No Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17135,7 +17317,7 @@ msgstr ""
msgid "No changes in document"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17199,7 +17381,7 @@ msgstr ""
msgid "No file attached"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr ""
@@ -17247,11 +17429,11 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
@@ -17260,7 +17442,7 @@ msgstr ""
msgid "No permission to read {0}"
msgstr ""
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr ""
@@ -17276,7 +17458,7 @@ msgstr ""
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr ""
@@ -17284,7 +17466,7 @@ msgstr ""
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17296,11 +17478,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17312,7 +17495,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17321,7 +17504,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17364,12 +17547,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr ""
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17411,7 +17594,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17420,7 +17603,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17429,8 +17612,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17450,7 +17633,7 @@ msgstr ""
msgid "Not Sent"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr ""
@@ -17464,15 +17647,15 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr ""
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr ""
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17480,7 +17663,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17500,11 +17683,11 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr ""
@@ -17517,11 +17700,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17549,7 +17732,7 @@ msgstr ""
msgid "Note:"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17581,7 +17764,7 @@ msgstr ""
msgid "Notes:"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr ""
@@ -17593,8 +17776,8 @@ msgstr ""
msgid "Nothing left to undo"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17605,11 +17788,13 @@ msgid "Nothing to update"
msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr ""
@@ -17625,7 +17810,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17634,11 +17819,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17656,13 +17836,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Notificações"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -17898,7 +18080,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17938,7 +18120,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17946,7 +18128,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18013,7 +18195,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18057,7 +18239,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18073,11 +18255,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18098,7 +18280,7 @@ msgstr ""
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
@@ -18121,11 +18303,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18168,7 +18350,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18191,8 +18373,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18228,6 +18410,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18242,7 +18428,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18254,11 +18440,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18273,16 +18459,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18314,7 +18500,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18340,7 +18526,7 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18374,7 +18560,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
@@ -18383,7 +18569,7 @@ msgstr ""
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18391,7 +18577,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18399,7 +18585,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18415,7 +18601,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18435,8 +18621,12 @@ msgstr ""
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18511,18 +18701,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18546,7 +18738,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18554,11 +18746,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18717,7 +18909,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18733,7 +18925,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18744,7 +18936,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18777,11 +18969,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18795,7 +18987,7 @@ msgstr ""
msgid "Parent Label"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18820,11 +19012,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18843,7 +19035,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18880,11 +19072,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -18893,7 +19085,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18922,11 +19114,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18938,7 +19130,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -19000,7 +19192,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19085,15 +19277,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19101,7 +19293,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19111,12 +19307,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19125,11 +19321,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19160,7 +19351,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19171,13 +19361,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19189,11 +19378,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19263,13 +19452,13 @@ msgstr "Telefone"
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
@@ -19327,7 +19516,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19343,7 +19532,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19351,11 +19540,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19367,11 +19556,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19403,7 +19592,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19433,10 +19622,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19449,7 +19638,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19523,15 +19712,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19547,7 +19736,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19567,7 +19756,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19575,7 +19764,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19625,11 +19814,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19637,7 +19826,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19657,7 +19846,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19669,7 +19858,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19697,7 +19886,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19818,11 +20007,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19874,11 +20063,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19886,7 +20075,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19904,7 +20093,7 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
@@ -19948,16 +20137,16 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20010,19 +20199,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20040,8 +20229,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20085,7 +20275,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20118,11 +20308,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20135,8 +20325,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20175,7 +20365,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20184,11 +20374,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20198,15 +20388,15 @@ msgstr ""
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20255,7 +20445,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20295,9 +20485,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20367,7 +20557,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Público"
@@ -20517,7 +20707,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20579,7 +20769,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20600,7 +20790,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20641,7 +20831,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20733,6 +20923,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20741,7 +20940,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20759,7 +20958,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20770,11 +20969,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20811,7 +21011,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20851,7 +21051,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20893,7 +21093,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20944,7 +21144,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21010,12 +21210,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21231,12 +21431,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21253,7 +21453,7 @@ msgstr ""
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21268,7 +21468,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21279,7 +21479,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21325,10 +21525,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr ""
@@ -21340,7 +21538,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21359,7 +21557,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21439,9 +21637,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21469,7 +21667,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21516,7 +21714,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21579,6 +21777,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21593,10 +21792,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21665,7 +21863,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21699,14 +21897,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21717,7 +21911,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21729,7 +21923,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21737,12 +21931,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21765,7 +21959,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21773,7 +21967,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21832,13 +22026,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -21954,7 +22148,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22012,7 +22206,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22021,7 +22215,7 @@ msgstr ""
msgid "Restore"
msgstr "Restaurar"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22043,6 +22237,11 @@ msgstr ""
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22070,8 +22269,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22118,9 +22317,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22155,8 +22360,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22171,8 +22374,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22216,7 +22418,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22224,11 +22426,9 @@ msgstr ""
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22250,7 +22450,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22369,20 +22569,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22409,7 +22609,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22428,14 +22628,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22458,7 +22658,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22538,7 +22738,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22572,7 +22772,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22644,22 +22844,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22672,7 +22873,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22680,7 +22881,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22698,20 +22899,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr ""
@@ -22720,11 +22921,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22928,7 +23129,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22948,7 +23149,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -22966,7 +23167,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -22983,12 +23184,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23060,15 +23261,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23118,24 +23319,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23151,7 +23354,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23195,13 +23398,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23210,7 +23413,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23219,19 +23422,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23256,16 +23459,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23275,7 +23478,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23311,12 +23514,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23333,11 +23530,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23363,13 +23560,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23403,7 +23600,7 @@ msgstr ""
msgid "Select {0}"
msgstr "Selecione {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23433,6 +23630,11 @@ msgstr ""
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23485,7 +23687,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23548,7 +23750,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
@@ -23587,7 +23789,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23681,7 +23883,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23691,7 +23893,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23718,11 +23920,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23750,16 +23956,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr ""
@@ -23800,7 +24004,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -23826,7 +24030,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23869,8 +24073,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23890,12 +24094,12 @@ msgstr ""
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -23999,8 +24203,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24023,11 +24227,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24035,12 +24239,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24069,13 +24273,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24083,7 +24288,7 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
@@ -24143,16 +24348,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24198,7 +24397,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24250,7 +24449,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24370,7 +24569,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24512,7 +24711,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24635,7 +24834,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24810,15 +25009,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24849,13 +25048,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24904,7 +25103,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -24943,6 +25142,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24950,6 +25150,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25017,8 +25218,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25190,7 +25391,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25228,7 +25429,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25342,7 +25543,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25356,7 +25557,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25377,14 +25578,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25414,7 +25615,7 @@ msgstr ""
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25438,11 +25639,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25468,7 +25669,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
@@ -25503,12 +25704,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25550,7 +25751,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25575,7 +25776,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25600,7 +25801,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25641,7 +25842,7 @@ msgstr "Domingo"
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25654,7 +25855,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25723,9 +25924,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25735,7 +25934,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25862,6 +26061,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25876,7 +26076,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25952,6 +26151,11 @@ msgstr ""
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25968,6 +26172,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26003,7 +26213,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26012,7 +26222,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26030,7 +26240,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26038,11 +26248,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26062,17 +26272,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26156,7 +26366,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26252,7 +26462,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26304,7 +26514,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26452,7 +26670,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26464,6 +26682,42 @@ msgstr ""
msgid "The total number of user document types limit has been crossed."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 ""
@@ -26505,7 +26759,7 @@ msgstr ""
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr ""
@@ -26513,7 +26767,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26522,7 +26776,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26534,11 +26788,11 @@ msgstr ""
msgid "There is no data to be exported"
msgstr ""
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr ""
@@ -26546,7 +26800,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26562,7 +26816,7 @@ msgstr ""
msgid "There was an error saving filters"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr ""
@@ -26570,11 +26824,11 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr ""
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr ""
@@ -26643,11 +26897,11 @@ msgstr "Este ano"
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26671,7 +26925,7 @@ msgstr ""
msgid "This doctype has no orphan fields to trim"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26687,15 +26941,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26708,7 +26962,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26733,11 +26987,11 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
@@ -26756,7 +27010,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26798,15 +27052,15 @@ msgstr ""
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr ""
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr ""
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26814,7 +27068,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr ""
@@ -26838,7 +27092,7 @@ msgstr ""
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr ""
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -26882,7 +27136,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr ""
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
@@ -26913,6 +27167,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26920,6 +27175,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -27002,11 +27258,6 @@ msgstr ""
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
@@ -27038,11 +27289,11 @@ msgstr ""
msgid "Timeline Name"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
@@ -27113,7 +27364,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27136,7 +27387,7 @@ msgstr ""
msgid "Title Prefix"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27222,7 +27473,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -27275,31 +27526,14 @@ msgstr ""
msgid "Today"
msgstr "Hoje"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr ""
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr ""
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27335,7 +27569,7 @@ msgid "Tomorrow"
msgstr "Amanhã"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr ""
@@ -27343,15 +27577,19 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -27407,10 +27645,10 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr ""
@@ -27425,7 +27663,7 @@ msgstr ""
msgid "Total Errors (last 1 day)"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr ""
@@ -27525,7 +27763,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27561,7 +27799,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27572,7 +27810,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr ""
@@ -27608,7 +27846,7 @@ msgstr ""
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr ""
@@ -27657,8 +27895,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27704,6 +27942,7 @@ msgstr ""
#. 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 'Event Notifications'
#. 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'
@@ -27717,6 +27956,7 @@ msgstr ""
#: 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/event_notifications/event_notifications.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
@@ -27725,7 +27965,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27892,7 +28132,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -27900,7 +28140,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr ""
@@ -27916,7 +28156,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27937,20 +28177,20 @@ msgstr ""
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr ""
@@ -28024,9 +28264,10 @@ msgstr ""
msgid "Unsafe SQL query"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr ""
@@ -28059,11 +28300,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28083,7 +28324,7 @@ msgstr ""
msgid "Unzipping files..."
msgstr ""
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr ""
@@ -28091,13 +28332,13 @@ msgstr ""
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr ""
@@ -28168,7 +28409,7 @@ msgstr ""
msgid "Update from Frappe Cloud"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr ""
@@ -28176,8 +28417,7 @@ msgstr ""
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr ""
@@ -28189,11 +28429,11 @@ msgstr ""
msgid "Updated To A New Version 🎉"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr ""
@@ -28218,11 +28458,11 @@ msgstr ""
msgid "Updating naming series options"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr ""
@@ -28230,12 +28470,12 @@ msgstr ""
msgid "Updating {0} of {1}, {2}"
msgstr ""
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28283,6 +28523,7 @@ msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr ""
@@ -28354,7 +28595,7 @@ msgstr ""
msgid "Use of sub-query or function is restricted"
msgstr ""
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr ""
@@ -28388,9 +28629,8 @@ msgstr ""
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28417,11 +28657,11 @@ msgstr ""
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28557,7 +28797,7 @@ msgstr ""
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr ""
@@ -28573,19 +28813,19 @@ msgid "User Permission"
msgstr ""
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr ""
@@ -28658,7 +28898,7 @@ msgstr ""
msgid "User can login using Email id or User Name"
msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr ""
@@ -28692,27 +28932,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr ""
@@ -28721,11 +28961,11 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr ""
@@ -28750,18 +28990,17 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr ""
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28832,7 +29071,7 @@ msgstr ""
msgid "Validate SSL Certificate"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr ""
@@ -28861,7 +29100,7 @@ msgstr ""
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28888,15 +29127,19 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28908,7 +29151,7 @@ msgstr ""
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28933,7 +29176,13 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr ""
@@ -28950,7 +29199,7 @@ msgstr ""
msgid "Value {0} must in {1} format"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr ""
@@ -28959,11 +29208,11 @@ msgstr ""
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr ""
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr ""
@@ -28971,7 +29220,7 @@ msgstr ""
msgid "Verification Link"
msgstr ""
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr ""
@@ -28985,7 +29234,7 @@ msgid "Verified"
msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr ""
@@ -29021,7 +29270,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr ""
@@ -29033,7 +29282,7 @@ msgstr ""
msgid "View File"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr ""
@@ -29070,7 +29319,7 @@ msgstr ""
msgid "View Settings"
msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29079,14 +29328,11 @@ msgstr ""
msgid "View Switcher"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29102,7 +29348,7 @@ msgstr ""
msgid "View this in your browser"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr ""
@@ -29138,7 +29384,7 @@ msgstr ""
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29186,7 +29432,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29195,7 +29441,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr ""
@@ -29279,7 +29525,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr ""
@@ -29376,7 +29622,7 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29431,7 +29677,7 @@ msgstr ""
msgid "Website Search Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr ""
@@ -29496,6 +29742,11 @@ msgstr ""
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29583,15 +29834,15 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr ""
@@ -29613,10 +29864,6 @@ msgstr ""
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29634,7 +29881,7 @@ msgstr ""
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr ""
@@ -29755,6 +30002,10 @@ msgstr ""
msgid "Workflow Document State"
msgstr ""
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -29772,11 +30023,11 @@ msgstr ""
msgid "Workflow State Field"
msgstr ""
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr ""
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr ""
@@ -29784,7 +30035,7 @@ msgstr ""
msgid "Workflow States Don't Exist"
msgstr ""
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr ""
@@ -29819,18 +30070,15 @@ msgstr ""
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29857,7 +30105,6 @@ 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 ""
@@ -29871,27 +30118,15 @@ msgstr ""
msgid "Workspace Quick List"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr ""
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr ""
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -29901,13 +30136,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr ""
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr ""
@@ -29936,11 +30165,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr ""
@@ -29958,7 +30188,7 @@ msgstr ""
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -29973,7 +30203,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr ""
@@ -30021,10 +30251,14 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30033,10 +30267,10 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Sim"
@@ -30072,7 +30306,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30080,7 +30314,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30088,11 +30322,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30115,7 +30349,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -30123,10 +30357,14 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr ""
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -30143,7 +30381,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30151,7 +30389,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -30164,7 +30402,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr ""
@@ -30188,10 +30426,6 @@ msgstr ""
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
@@ -30246,7 +30480,7 @@ msgstr ""
msgid "You can try changing the filters of your report."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr ""
@@ -30276,6 +30510,10 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -30302,7 +30540,6 @@ msgid "You changed {0} to {1}"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr ""
@@ -30311,11 +30548,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
@@ -30327,15 +30560,19 @@ msgstr ""
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
@@ -30371,7 +30608,7 @@ msgstr ""
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
@@ -30391,7 +30628,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30400,7 +30637,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr ""
@@ -30416,12 +30652,12 @@ msgstr ""
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr ""
@@ -30429,7 +30665,7 @@ msgstr ""
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr ""
@@ -30461,7 +30697,7 @@ msgstr ""
msgid "You need to have \"Share\" permission"
msgstr ""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr ""
@@ -30481,7 +30717,7 @@ msgstr ""
msgid "You need write permission on {0} {1} to rename"
msgstr ""
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
@@ -30528,7 +30764,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30605,7 +30841,7 @@ msgstr ""
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr ""
@@ -30647,7 +30883,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30669,7 +30905,7 @@ msgstr ""
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30688,7 +30924,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -30711,7 +30947,7 @@ msgstr ""
msgid "cProfile Output"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr ""
@@ -30727,7 +30963,9 @@ msgid "canceled"
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30751,7 +30989,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30809,7 +31047,7 @@ msgstr ""
msgid "descending"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr ""
@@ -30819,7 +31057,7 @@ msgstr ""
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr ""
@@ -30861,12 +31099,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr ""
@@ -30922,12 +31164,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr ""
@@ -30942,6 +31184,20 @@ msgstr ""
msgid "import"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -30981,16 +31237,11 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr ""
@@ -31009,15 +31260,15 @@ msgstr ""
msgid "mm/dd/yyyy"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "novo"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr ""
@@ -31079,7 +31330,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "ou"
@@ -31152,7 +31403,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -31236,11 +31487,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr ""
@@ -31338,11 +31589,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31378,11 +31631,11 @@ msgstr ""
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31399,8 +31652,8 @@ msgstr ""
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31413,13 +31666,13 @@ msgid "{0} Chart"
msgstr ""
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31453,11 +31706,11 @@ msgstr "{0} M"
msgid "{0} Map"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31465,7 +31718,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr ""
@@ -31478,11 +31731,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr ""
@@ -31544,7 +31797,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31573,16 +31826,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} criado com sucesso"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr ""
@@ -31599,11 +31855,19 @@ msgstr ""
msgid "{0} days ago"
msgstr "há {0} dias"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
@@ -31628,7 +31892,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31649,7 +31913,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} é um campo obrigatório"
@@ -31657,7 +31925,15 @@ msgstr "{0} é um campo obrigatório"
msgid "{0} is a not a valid zip file"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr ""
@@ -31665,6 +31941,15 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31674,22 +31959,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr ""
@@ -31702,10 +32001,14 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} é obrigatório"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31722,12 +32025,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31735,23 +32038,23 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} não é um número de telefone válido"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
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:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31767,6 +32070,11 @@ msgstr ""
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr ""
@@ -31775,10 +32083,12 @@ msgstr ""
msgid "{0} is not like {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr ""
@@ -31787,36 +32097,50 @@ msgstr ""
msgid "{0} is now default print format for {1} doctype"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} é obrigatório"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} itens selecionados"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr ""
@@ -31844,35 +32168,35 @@ msgstr "há {0} minutos"
msgid "{0} months ago"
msgstr "há {0} meses"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} deve ser posterior a {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} deve ser um dos {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} deve ser definido primeiro"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} deve ser único"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31889,11 +32213,11 @@ msgid "{0} not allowed to be renamed"
msgstr "Não é permitido alterar o nome de {0}"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} de {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31922,7 +32246,7 @@ msgstr ""
msgid "{0} records deleted"
msgstr "{0} registos eliminados"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "Vão ser exportados {0} registos"
@@ -31947,7 +32271,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} linha #{1}:"
@@ -31961,7 +32285,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} guardado com sucesso"
@@ -31969,7 +32293,7 @@ msgstr "{0} guardado com sucesso"
msgid "{0} self assigned this task: {1}"
msgstr ""
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr ""
@@ -32037,7 +32361,7 @@ msgstr ""
msgid "{0} weeks ago"
msgstr "há {0} semanas"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32049,7 +32373,7 @@ msgstr ""
msgid "{0} years ago"
msgstr "há {0} anos"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} adicionado"
@@ -32057,11 +32381,11 @@ msgstr "{0} {1} adicionado"
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} já existe"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32073,11 +32397,11 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} não foi encontrado"
@@ -32085,87 +32409,59 @@ msgstr "{0} {1} não foi encontrado"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: O registo submetido não pode ser eliminado. Tem de {2} Cancelar {3} primeiro."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr ""
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Não é possível Corrigir sem Cancelar"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Não é possível Cancelar sem Submeter"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: O campo '{1}' não pode ser definido como Único, uma vez que possui valores não exclusivos"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr ""
@@ -32173,15 +32469,59 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32194,15 +32534,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr ""
@@ -32222,11 +32562,11 @@ msgstr ""
msgid "{count} rows selected"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Concluído"
diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po
index e49baa8d71..31c37526f2 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:51\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr ""
msgid "\"Team Members\" or \"Management\""
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr ""
@@ -66,7 +66,7 @@ msgstr ""
msgid "<head> HTML"
msgstr ""
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr ""
@@ -90,19 +90,19 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr ""
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr ""
@@ -158,7 +158,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr ""
@@ -189,7 +189,7 @@ msgstr ""
msgid "1 of 2"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr ""
@@ -587,7 +587,7 @@ msgstr ""
msgid ">="
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
@@ -601,7 +601,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr ""
@@ -612,7 +612,7 @@ 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 "Uma lista de recursos que o aplicativo cliente terá acesso a depois que o usuário permita.
por exemplo, do projeto"
+msgstr ""
#: frappe/templates/emails/new_user.html:5
msgid "A new account has been created for you at {0}"
@@ -625,7 +625,7 @@ msgstr ""
#. Description of the 'Symbol' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "A symbol for this currency. For e.g. $"
-msgstr "Um símbolo para esta moeda. Por exemplo: R$"
+msgstr ""
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
msgid "A template already exists for field {0} of {1}"
@@ -695,7 +695,7 @@ msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "ALL"
-msgstr "Tudo"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -705,7 +705,7 @@ msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "API Access"
-msgstr "Acesso API"
+msgstr ""
#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -733,7 +733,7 @@ msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Key"
-msgstr "Chave da API"
+msgstr ""
#. Description of the 'Authentication' (Section Break) field in DocType 'Push
#. Notification Settings'
@@ -759,7 +759,7 @@ msgstr ""
#. Label of the api_method (Data) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "API Method"
-msgstr "Método API"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/api_request_log/api_request_log.json
@@ -774,7 +774,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
-msgstr "Segredo da API"
+msgstr ""
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
@@ -913,14 +913,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 "Ação / Rota"
+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:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr ""
@@ -932,7 +932,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 "Tempo Limite de Ação (Segundos)"
+msgstr ""
#. Label of the action_type (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
@@ -969,13 +969,13 @@ msgstr ""
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr ""
@@ -1006,7 +1006,7 @@ msgstr ""
#. Label of the active_domains (Table) field in DocType 'Domain Settings'
#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Active Domains"
-msgstr "Domínios ativos"
+msgstr ""
#. Label of the active_sessions (Table) field in DocType 'User'
#. Label of the active_sessions (Int) field in DocType 'System Health Report'
@@ -1032,20 +1032,20 @@ msgstr ""
msgid "Activity Log"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr ""
@@ -1053,11 +1053,11 @@ msgstr ""
msgid "Add / Update"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1077,11 +1077,15 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1090,8 +1094,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1109,7 +1113,7 @@ msgstr ""
#. Label of the add_container (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Container"
-msgstr "Adicionar recipiente"
+msgstr ""
#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
@@ -1124,7 +1128,7 @@ msgstr ""
#. Label of the add_shade (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Gray Background"
-msgstr "Adicionar fundo cinza"
+msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
#: frappe/public/js/frappe/ui/group_by/group_by.js:430
@@ -1135,11 +1139,7 @@ msgstr ""
msgid "Add Indexes"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr ""
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr ""
@@ -1152,17 +1152,13 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr ""
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr ""
@@ -1181,23 +1177,23 @@ msgstr ""
msgid "Add Subscribers"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr ""
#. Label of the add_total_row (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Add Total Row"
-msgstr "Adicionar Linha de Total"
+msgstr ""
#. Label of the add_translate_data (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -1207,7 +1203,7 @@ msgstr "Adicionar Dados Traduzidos"
#. 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 "Adicionar link para cancelar inscrição"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
@@ -1240,19 +1236,19 @@ msgstr ""
msgid "Add a new section"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr ""
@@ -1270,6 +1266,10 @@ msgstr ""
msgid "Add field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1283,6 +1283,10 @@ msgstr ""
msgid "Add page break"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr ""
@@ -1301,7 +1305,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr ""
@@ -1341,8 +1345,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr ""
@@ -1356,7 +1360,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Additional Permissions"
-msgstr "Permissões Adicionais"
+msgstr ""
#. Name of a DocType
#. Label of the address (Link) field in DocType 'Contact'
@@ -1396,7 +1400,7 @@ msgstr ""
#: frappe/contacts/doctype/address/address.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Title"
-msgstr "Título do Endereço"
+msgstr ""
#: frappe/contacts/doctype/address/address.py:71
msgid "Address Title is mandatory."
@@ -1411,7 +1415,7 @@ 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 "Endereço e outras informações legais que você pode querer colocar no rodapé."
+msgstr ""
#: frappe/contacts/doctype/address/address.py:205
msgid "Addresses"
@@ -1432,7 +1436,7 @@ msgstr ""
msgid "Adds a custom field to a DocType"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr ""
@@ -1459,15 +1463,15 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr ""
@@ -1484,15 +1488,15 @@ msgstr ""
msgid "Advanced Control"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr ""
#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Advanced Settings"
-msgstr "Configurações avançadas"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:64
#: frappe/public/js/frappe/ui/filters/filter.js:70
@@ -1502,12 +1506,12 @@ msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Cancel"
-msgstr "Após Cancelar"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Delete"
-msgstr "Após Excluir"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -1527,12 +1531,12 @@ msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Save"
-msgstr "Após salvar"
+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 "Após salvar (documento enviado)"
+msgstr ""
#. Label of the section_break_5 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1542,7 +1546,7 @@ msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Submit"
-msgstr "Após o envio"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
@@ -1555,7 +1559,7 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Aggregate Function Based On"
-msgstr "Função agregada com base em"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410
msgid "Aggregate Function field is required to create a dashboard chart"
@@ -1564,9 +1568,9 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Alert"
-msgstr "Alerta"
+msgstr ""
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1579,17 +1583,26 @@ msgstr ""
#. Label of the align_labels_right (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Align Labels to the Right"
-msgstr "Alinhar etiquetas à direita"
+msgstr ""
#. Label of the right (Check) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Align Right"
-msgstr "Alinhar à direita"
+msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:479
msgid "Align Value"
msgstr ""
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1622,7 +1635,7 @@ msgstr ""
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr ""
@@ -1634,11 +1647,11 @@ msgstr ""
msgid "All Records"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr ""
@@ -1658,7 +1671,7 @@ msgstr ""
#. Label of the allocated_to (Link) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
msgid "Allocated To"
-msgstr "Atribuído a"
+msgstr ""
#. Label of the allow (Link) field in DocType 'User Permission'
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
@@ -1677,14 +1690,14 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow Auto Repeat"
-msgstr "Permitir repetição automática"
+msgstr ""
#. Label of the allow_bulk_edit (Check) field in DocType 'DocField'
#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow Bulk Edit"
-msgstr "Permitir edição em massa"
+msgstr ""
#. Label of the allow_edit (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
@@ -1708,12 +1721,12 @@ msgstr ""
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
-msgstr "Permitir convidado"
+msgstr ""
#. Label of the allow_guest_to_view (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Guest to View"
-msgstr "Permitir visualização de convidado"
+msgstr ""
#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System
#. Settings'
@@ -1743,18 +1756,18 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Login using User Name"
-msgstr "Permitir Login usando o nome de usuário"
+msgstr ""
#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Allow Modules"
-msgstr "Permitir Módulos"
+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 "Permitir impressão para cancelado"
+msgstr ""
#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
@@ -1766,12 +1779,12 @@ msgstr ""
#. Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Allow Read On All Link Options"
-msgstr "Permitir leitura em todas as opções de link"
+msgstr ""
#. Label of the allow_rename (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Rename"
-msgstr "Permitir Renomear"
+msgstr ""
#. Label of the roles_permission (Section Break) field in DocType 'Role
#. Permission for Page and Report'
@@ -1780,13 +1793,13 @@ msgstr "Permitir Renomear"
#: 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 "Permitir Funções"
+msgstr ""
#. Label of the allow_self_approval (Check) field in DocType 'Workflow
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow Self Approval"
-msgstr "Permitir auto-aprovação"
+msgstr ""
#. Label of the enable_telemetry (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -1797,7 +1810,7 @@ msgstr ""
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow approval for creator of the document"
-msgstr "Permitir aprovação para o criador do documento"
+msgstr ""
#. Label of the allow_comments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1831,7 +1844,7 @@ 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 "Permitir eventos na linha do tempo"
+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'
@@ -1841,7 +1854,7 @@ msgstr "Permitir eventos na linha do tempo"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow in Quick Entry"
-msgstr "Permitir na entrada rápida"
+msgstr ""
#. Label of the allow_incomplete (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1860,13 +1873,13 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow on Submit"
-msgstr "Permitir ao Enviar"
+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 "Permitir apenas uma sessão por usuário"
+msgstr ""
#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print
#. Settings'
@@ -1887,7 +1900,7 @@ msgstr ""
#. Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Allow saving if mandatory fields are not filled"
-msgstr "Permitir salvar se os campos obrigatórios não são preenchidas"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:424
msgid "Allow sending usage data for improving applications"
@@ -1912,7 +1925,7 @@ msgstr ""
#. Label of the allowed (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allowed"
-msgstr "Permitido"
+msgstr ""
#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
#. Settings'
@@ -1923,7 +1936,7 @@ msgstr ""
#. Label of the allowed_in_mentions (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Allowed In Mentions"
-msgstr "Permitido nas menções"
+msgstr ""
#. Label of the allowed_modules_section (Section Break) field in DocType 'User
#. Type'
@@ -1949,7 +1962,7 @@ msgstr ""
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -1983,13 +1996,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr ""
@@ -2024,7 +2085,7 @@ 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 "Sempre adicionar \"Rascunho\" no cabeçalho para impressão de documentos não enviados"
+msgstr ""
#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
#. 'Email Account'
@@ -2045,7 +2106,7 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Amend"
-msgstr "Corrigir"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
@@ -2084,7 +2145,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr ""
@@ -2097,7 +2158,7 @@ msgstr ""
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2114,7 +2175,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Analytics"
-msgstr "Análise"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
@@ -2148,7 +2209,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr ""
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr ""
@@ -2161,7 +2222,7 @@ msgstr ""
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2181,7 +2242,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "App"
-msgstr "Aplicativo"
+msgstr ""
#. Label of the app_id (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -2211,11 +2272,11 @@ msgstr ""
msgid "App Name (Client Name)"
msgstr ""
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr ""
@@ -2233,7 +2294,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Append To"
-msgstr "Acrescente Para"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:202
msgid "Append To can be one of {0}"
@@ -2257,19 +2318,19 @@ msgstr ""
#. 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 do aplicativo"
+msgstr ""
#. Label of the app_name (Data) field in DocType 'Installed Application'
#. Label of the app_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/installed_application/installed_application.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Application Name"
-msgstr "Nome da Aplicação"
+msgstr ""
#. Label of the app_version (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Application Version"
-msgstr "Versão do aplicativo"
+msgstr ""
#: frappe/core/doctype/user_invitation/user_invitation.py:195
msgid "Application is not installed"
@@ -2278,7 +2339,7 @@ msgstr ""
#. Label of the doctype_or_field (Select) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Applied On"
-msgstr "Aplicado em"
+msgstr ""
#. Label of the doc_type (Link) field in DocType 'Permission Type'
#: frappe/core/doctype/permission_type/permission_type.json
@@ -2289,7 +2350,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2298,11 +2359,15 @@ msgstr ""
msgid "Apply Filters"
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+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 "Aplicar permissões de usuário estrito"
+msgstr ""
#. Label of the view (Select) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
@@ -2331,13 +2396,13 @@ 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 "Aplicar esta regra se o usuário é o proprietário"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
msgstr ""
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr ""
@@ -2345,18 +2410,11 @@ msgstr ""
msgid "Approval Required"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2379,16 +2437,16 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr ""
@@ -2407,19 +2465,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
@@ -2439,7 +2497,7 @@ msgstr ""
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
@@ -2488,20 +2546,20 @@ msgstr ""
msgid "Ask"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr ""
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
-msgstr "Atribuir condição"
+msgstr ""
#: frappe/public/js/frappe/form/sidebar/assign_to.js:186
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2514,7 +2572,7 @@ msgstr ""
#. 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign To Users"
-msgstr "Atribuir aos usuários"
+msgstr ""
#: frappe/public/js/frappe/form/sidebar/assign_to.js:367
msgid "Assign a user"
@@ -2539,7 +2597,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Assigned"
-msgstr "Atribuído"
+msgstr ""
#. Label of the assigned_by (Link) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41
@@ -2549,9 +2607,9 @@ 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 "Atribuído por Nome completo"
+msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2580,13 +2638,13 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Assignment Completed"
-msgstr "Atribuição Concluída"
+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 "Dias de atribuição"
+msgstr ""
#. Name of a DocType
#. Label of the assignment_rule (Link) field in DocType 'ToDo'
@@ -2613,7 +2671,7 @@ msgstr ""
#. 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Rules"
-msgstr "Regras de Atribuição"
+msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.py:153
msgid "Assignment Update on {0}"
@@ -2640,7 +2698,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2665,7 +2723,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr ""
@@ -2685,7 +2743,7 @@ 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 "Anexar Imagem"
+msgstr ""
#. Label of the attach_package (Attach) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
@@ -2695,7 +2753,7 @@ msgstr ""
#. Label of the attach_print (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Attach Print"
-msgstr "Anexar cópia"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/WebLink.vue:10
msgid "Attach a web link"
@@ -2708,7 +2766,7 @@ msgstr ""
#. Label of the attached_file (Code) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attached File"
-msgstr "Arquivo anexo"
+msgstr ""
#. Label of the attached_to_doctype (Link) field in DocType 'File'
#: frappe/core/doctype/file/file.json
@@ -2718,12 +2776,12 @@ msgstr ""
#. Label of the attached_to_field (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To Field"
-msgstr "Relacionado ao campo"
+msgstr ""
#. Label of the attached_to_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To Name"
-msgstr "Anexado Para Nome"
+msgstr ""
#: frappe/core/doctype/file/file.py:153
msgid "Attached To Name must be a string or an integer"
@@ -2732,14 +2790,14 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment"
-msgstr "Anexo"
+msgstr ""
#. Label of the attachment_limit (Int) field in DocType 'Email Account'
#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Attachment Limit (MB)"
-msgstr "Limite de Anexo (MB)"
+msgstr ""
#: frappe/core/doctype/file/file.py:348
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
@@ -2749,12 +2807,12 @@ msgstr ""
#. Label of the attachment_link (HTML) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attachment Link"
-msgstr "Link de Anexo"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr "Anexo Removido"
+msgstr ""
#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -2763,19 +2821,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr ""
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr ""
@@ -2793,7 +2858,7 @@ 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 "Dados de URL de autenticação"
+msgstr ""
#: frappe/integrations/doctype/social_login_key/social_login_key.py:96
msgid "Auth URL data should be valid JSON"
@@ -2826,7 +2891,7 @@ msgstr ""
#. Label of the author (Data) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Author"
-msgstr "Autor"
+msgstr ""
#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -2845,7 +2910,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
-msgstr "Código de autorização"
+msgstr ""
#. Label of the authorization_uri (Small Text) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -2865,29 +2930,29 @@ msgstr ""
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Authorize API Indexing Access"
-msgstr "Autorizar acesso de indexação de API"
+msgstr ""
#. Label of the authorize_google_calendar_access (Button) field in DocType
#. 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Authorize Google Calendar Access"
-msgstr "Autorizar acesso ao Google Agenda"
+msgstr ""
#. Label of the authorize_google_contacts_access (Button) field in DocType
#. 'Google Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Authorize Google Contacts Access"
-msgstr "Autorizar o acesso dos Contatos do Google"
+msgstr ""
#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Authorize URL"
-msgstr "Autorizar URL"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Authorized"
-msgstr "Autorizado"
+msgstr ""
#: frappe/www/attribution.html:20
msgid "Authors"
@@ -2913,7 +2978,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Auto Name"
-msgstr "Nome Automático"
+msgstr ""
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -2960,7 +3025,7 @@ msgstr ""
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply Message"
-msgstr "Resposta Automática"
+msgstr ""
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
@@ -3085,12 +3150,12 @@ msgstr ""
#. Label of the awaiting_password (Check) field in DocType 'User Email'
#: frappe/core/doctype/user_email/user_email.json
msgid "Awaiting Password"
-msgstr "Aguardando Senha"
+msgstr ""
#. Label of the awaiting_password (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Awaiting password"
-msgstr "Aguardando Senha"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:195
msgid "Awesome Work"
@@ -3100,11 +3165,6 @@ msgstr ""
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3202,7 +3262,7 @@ msgstr ""
#: frappe/website/doctype/social_link_settings/social_link_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Background Color"
-msgstr "Cor de Fundo"
+msgstr ""
#. Label of the background_image (Attach Image) field in DocType 'Web Page
#. Block'
@@ -3210,17 +3270,12 @@ msgstr "Cor de Fundo"
msgid "Background Image"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr ""
@@ -3246,7 +3301,7 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Background Workers"
-msgstr "Trabalhadores em Segundo Plano"
+msgstr ""
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
@@ -3286,12 +3341,12 @@ msgstr ""
#. Label of the banner (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner"
-msgstr "Faixa"
+msgstr ""
#. Label of the banner_html (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner HTML"
-msgstr "Faixa HTML"
+msgstr ""
#. Label of the banner_image (Attach Image) field in DocType 'User'
#. Label of the banner_image (Attach Image) field in DocType 'Web Form'
@@ -3322,42 +3377,44 @@ 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 "Base de dados de nome distinto (DN)"
+msgstr ""
#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
#. Label of the base_url (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Base URL"
-msgstr "URL Base"
+msgstr ""
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Based on Field"
-msgstr "Com base no campo"
+msgstr ""
#. Label of the user (Link) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Based on Permissions For User"
-msgstr "Com base em permissões para o usuário"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Basic"
-msgstr "Básico"
+msgstr ""
#. Label of the section_break_3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Basic Info"
msgstr ""
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3366,12 +3423,12 @@ msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Cancel"
-msgstr "Antes de Cancelar"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Delete"
-msgstr "Antes de excluir"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3381,7 +3438,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 "Antes da inserção"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3396,17 +3453,17 @@ msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save"
-msgstr "Antes de salvar"
+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 "Antes de salvar (documento enviado)"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Submit"
-msgstr "Antes de enviar"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3427,7 +3484,7 @@ msgstr ""
msgid "Beta"
msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr ""
@@ -3438,7 +3495,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Billing"
-msgstr "Faturamento"
+msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:27
msgid "Billing Contact"
@@ -3459,7 +3516,7 @@ msgstr ""
#. Label of the birth_date (Date) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Birth Date"
-msgstr "Data de nascimento"
+msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:41
msgid "Blank Template"
@@ -3475,7 +3532,7 @@ msgstr ""
#: frappe/core/doctype/module_profile/module_profile.json
#: frappe/core/doctype/user/user.json
msgid "Block Modules"
-msgstr "Bloquear Módulos"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -3491,7 +3548,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Bold"
-msgstr "Negrito"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -3511,7 +3568,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
msgid "Bottom"
-msgstr "Inferior"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -3548,23 +3605,16 @@ msgstr ""
#. Label of the brand_html (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand HTML"
-msgstr "Marca HTML"
+msgstr ""
#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand Image"
-msgstr "Imagem da Marca"
-
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-#: frappe/email/doctype/email_account/email_account.json
-msgid "Brand Logo"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
+#. 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'
@@ -3589,7 +3639,7 @@ msgstr ""
#. Label of the browser_version (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Browser Version"
-msgstr "Versão do navegador"
+msgstr ""
#: frappe/public/js/frappe/desk.js:19
msgid "Browser not supported"
@@ -3599,7 +3649,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Brute Force Security"
-msgstr "Segurança da força bruta"
+msgstr ""
#. Label of the bufferpool_size (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -3637,7 +3687,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr ""
@@ -3658,7 +3708,7 @@ msgstr ""
msgid "Bulk Update"
msgstr ""
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3670,7 +3720,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -3681,7 +3731,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Button"
-msgstr "Botão"
+msgstr ""
#. Label of the button_color (Select) field in DocType 'DocField'
#. Label of the button_color (Select) field in DocType 'Custom Field'
@@ -3695,17 +3745,17 @@ msgstr ""
#. Label of the button_gradients (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Gradients"
-msgstr "Gradientes de botão"
+msgstr ""
#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Rounded Corners"
-msgstr "Botão Cantos Arredondados"
+msgstr ""
#. Label of the button_shadows (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Shadows"
-msgstr "Sombras de botão"
+msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
@@ -3737,7 +3787,7 @@ msgstr ""
#. DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
-msgstr "Ignorar endereço IP restrito, verificar se a autenticação de dois fatores estiver habilitada"
+msgstr ""
#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
#. 'System Settings'
@@ -3749,7 +3799,7 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
-msgstr "Ignorar verificação de endereço IP restrito se dois fatores de autenticação habilitados"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -3794,7 +3844,7 @@ 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 "Classe CSS"
+msgstr ""
#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour
#. Step'
@@ -3819,7 +3869,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr ""
@@ -3833,7 +3883,7 @@ msgstr ""
#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Calendar Name"
-msgstr "Nome do calendário"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/calendar_view/calendar_view.json
@@ -3850,31 +3900,31 @@ 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 "Apelo à ação"
+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 de apelo à ação"
+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 "Mensagem de retorno"
+msgstr ""
#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Title"
-msgstr "Título de retorno"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3886,11 +3936,11 @@ msgstr ""
msgid "Campaign Description (Optional)"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -3900,7 +3950,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -3922,7 +3972,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3932,11 +3982,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr ""
@@ -3948,7 +3998,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3981,7 +4031,7 @@ msgstr ""
msgid "Cancelling documents"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr ""
@@ -3989,7 +4039,7 @@ msgstr ""
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -3997,7 +4047,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4017,11 +4067,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4033,7 +4083,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4041,10 +4091,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr ""
@@ -4053,15 +4107,15 @@ msgstr ""
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4072,11 +4126,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4104,7 +4158,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4117,7 +4171,7 @@ msgstr ""
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr ""
@@ -4133,15 +4187,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4153,7 +4207,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr ""
@@ -4178,7 +4232,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr ""
@@ -4198,21 +4252,21 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
#. Label of the card (Link) field in DocType 'Number Card Link'
#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Card"
-msgstr "Cartão"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr ""
@@ -4223,7 +4277,7 @@ msgstr ""
#. Label of the cards (Table) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Cards"
-msgstr "Postais"
+msgstr ""
#. Label of the category (Link) field in DocType 'Help Article'
#: frappe/public/js/frappe/views/interaction.js:72
@@ -4234,22 +4288,24 @@ msgstr ""
#. Label of the category_description (Text) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Category Description"
-msgstr "Descrição da Categoria"
+msgstr ""
#. Label of the category_name (Data) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Category Name"
-msgstr "Nome da Categoria"
+msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
-msgstr "Centro"
-
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
@@ -4269,7 +4325,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 "Alterar etiqueta (via tradução personalizada)"
+msgstr ""
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
@@ -4279,7 +4335,7 @@ msgstr ""
#. Label of the change_password (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Change Password"
-msgstr "Alterar Senha"
+msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
@@ -4323,7 +4379,7 @@ msgstr ""
#. Label of the channel (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Channel"
-msgstr "Canal"
+msgstr ""
#. Label of the chart (Link) field in DocType 'Dashboard Chart Link'
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
@@ -4333,16 +4389,16 @@ msgstr ""
#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Chart Configuration"
-msgstr "Configuração de Gráfico"
+msgstr ""
#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
-msgstr "Nome do gráfico"
+msgstr ""
#. Label of the chart_options (Code) field in DocType 'Dashboard'
#. Label of the chart_options_section (Section Break) field in DocType
@@ -4350,12 +4406,12 @@ msgstr "Nome do gráfico"
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Options"
-msgstr "Opções de gráfico"
+msgstr ""
#. Label of the source (Link) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Source"
-msgstr "Fonte do gráfico"
+msgstr ""
#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -4368,7 +4424,7 @@ msgstr ""
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Charts"
-msgstr "Gráficos"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -4390,7 +4446,7 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Check"
-msgstr "Verifica"
+msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:99
msgid "Check Request URL"
@@ -4404,6 +4460,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr ""
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr ""
@@ -4412,7 +4474,7 @@ 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 "Marque esta opção se você deseja forçar o usuário a selecionar uma série antes de salvar. Não haverá nenhum padrão se você marcar isso."
+msgstr ""
#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -4455,7 +4517,7 @@ msgstr ""
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4465,7 +4527,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4473,7 +4535,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4491,10 +4553,6 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Choose authentication method to be used by all users"
-msgstr "Escolha o método de autenticação a ser usado por todos os usuários"
-
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
@@ -4506,18 +4564,18 @@ msgstr ""
#. Label of the city (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "City/Town"
-msgstr "Cidade/Município"
+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:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr ""
@@ -4525,7 +4583,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4551,7 +4609,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4619,26 +4677,26 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Clicked"
-msgstr "Clicado"
+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 "Cliente"
+msgstr ""
#. Label of the client_code_section (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Client Code"
-msgstr "Código do cliente"
+msgstr ""
#. Label of the sb_client_credentials_section (Section Break) field in DocType
#. 'Connected App'
@@ -4647,7 +4705,7 @@ msgstr "Código do cliente"
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Credentials"
-msgstr "Credenciais no cliente"
+msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
#. Label of the client_id (Data) field in DocType 'OAuth Client'
@@ -4656,7 +4714,7 @@ msgstr "Credenciais no cliente"
#: 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"
+msgstr ""
#. Label of the client_id (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -4667,7 +4725,7 @@ msgstr ""
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "Informação ao cliente"
+msgstr ""
#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
#. Client'
@@ -4694,7 +4752,7 @@ msgstr ""
#: 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"
+msgstr ""
#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
#. Client'
@@ -4727,7 +4785,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr ""
@@ -4735,9 +4793,9 @@ msgstr ""
#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Close Condition"
-msgstr "Fechar Condição"
+msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4768,7 +4826,7 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Code"
-msgstr "Código"
+msgstr ""
#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
#. Code'
@@ -4793,12 +4851,12 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4814,7 +4872,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Collapsible"
-msgstr "Desmontável"
+msgstr ""
#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
@@ -4822,7 +4880,7 @@ msgstr "Desmontável"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible Depends On"
-msgstr "Depende dobrável"
+msgstr ""
#. Label of the collapsible_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -4855,7 +4913,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4866,7 +4924,7 @@ msgstr ""
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
-#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4895,7 +4953,7 @@ 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 "Quebra de coluna"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:140
msgid "Column Labels:"
@@ -4911,11 +4969,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -4935,12 +4993,12 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr "Colunas"
+msgstr ""
#. Label of the columns (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
-msgstr "Colunas / Campos"
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
@@ -4958,7 +5016,7 @@ msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -4968,7 +5026,7 @@ msgstr ""
#. Label of the comment_by (Data) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment By"
-msgstr "Comentário por"
+msgstr ""
#. Label of the comment_email (Data) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -4998,7 +5056,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 "Comentários e comunicações serão associados com este documento relacionado"
+msgstr ""
#: frappe/templates/includes/comments/comments.py:52
msgid "Comments cannot have links or email addresses"
@@ -5012,7 +5070,7 @@ msgstr ""
#. Label of the commit (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Commit"
-msgstr "Comprometer"
+msgstr ""
#. Label of the committed (Check) field in DocType 'Console Log'
#: frappe/desk/doctype/console_log/console_log.json
@@ -5074,7 +5132,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Company Introduction"
-msgstr "Introdução da Empresa"
+msgstr ""
#. Label of the company_name (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
@@ -5105,12 +5163,12 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5125,7 +5183,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr ""
@@ -5216,7 +5274,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5305,8 +5363,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5364,7 +5422,7 @@ msgstr ""
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
-msgstr "Detalhes do Contato"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact_email/contact_email.json
@@ -5374,7 +5432,7 @@ msgstr ""
#. Label of the phone_nos (Table) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Numbers"
-msgstr "Números de contato"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact_phone/contact_phone.json
@@ -5424,7 +5482,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5455,7 +5513,7 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Context"
-msgstr "Contexto"
+msgstr ""
#. Label of the context_script (Code) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
@@ -5476,12 +5534,12 @@ msgstr ""
#. Label of the contributed (Check) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contributed"
-msgstr "Contribuído"
+msgstr ""
#. Label of the contribution_docname (Data) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contribution Document Name"
-msgstr "Nome do documento de contribuição"
+msgstr ""
#. Label of the contribution_status (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
@@ -5493,11 +5551,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5509,12 +5567,12 @@ msgstr ""
msgid "Copy embed code"
msgstr ""
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr ""
@@ -5525,7 +5583,7 @@ msgstr ""
#. Label of the copyright (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr "Direitos autorais"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
@@ -5535,7 +5593,7 @@ msgstr ""
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr ""
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr ""
@@ -5543,7 +5601,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr ""
@@ -5551,11 +5609,11 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5563,7 +5621,7 @@ msgstr ""
msgid "Could not start up:"
msgstr "Não foi possível iniciar:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr ""
@@ -5599,7 +5657,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 "Contador"
+msgstr ""
#. Label of the country (Link) field in DocType 'Address'
#. Label of the country (Link) field in DocType 'Address Template'
@@ -5615,19 +5673,19 @@ msgstr "Contador"
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
#. Label of the country_name (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Country Name"
-msgstr "Nome do País"
+msgstr ""
#. Label of the county (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "County"
-msgstr "Distrito"
+msgstr ""
#: frappe/public/js/frappe/utils/number_systems.js:23
#: frappe/public/js/frappe/utils/number_systems.js:45
@@ -5642,15 +5700,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
@@ -5663,13 +5722,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr ""
@@ -5685,7 +5744,7 @@ msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Create Entry"
-msgstr "Criar entrada"
+msgstr ""
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
@@ -5703,7 +5762,7 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
@@ -5716,7 +5775,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5732,18 +5791,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5760,7 +5819,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr ""
@@ -5779,13 +5838,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr ""
@@ -5820,7 +5887,7 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Cron Format"
-msgstr "Formato Cron"
+msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
@@ -5869,12 +5936,12 @@ msgstr ""
#. Label of the currency_name (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Currency Name"
-msgstr "Nome da Moeda"
+msgstr ""
#. Label of the currency_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Currency Precision"
-msgstr "Precisão de moeda"
+msgstr ""
#. Description of a DocType
#: frappe/geo/doctype/currency/currency.json
@@ -5952,13 +6019,13 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Custom CSS"
-msgstr "CSS Personalizado"
+msgstr ""
#. Label of the custom_configuration_section (Section Break) field in DocType
#. 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Custom Configuration"
-msgstr "Configuração Personalizada"
+msgstr ""
#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -5979,7 +6046,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr ""
@@ -5990,15 +6057,15 @@ msgstr ""
msgid "Custom Field"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr ""
@@ -6011,7 +6078,7 @@ msgstr ""
#. Label of the custom_format (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom Format"
-msgstr "Formato Personalizado"
+msgstr ""
#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP
#. Settings'
@@ -6024,7 +6091,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr ""
@@ -6037,7 +6104,7 @@ msgstr ""
#. Label of the custom_html_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom HTML Help"
-msgstr "Ajuda HTML Personalizado"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114
msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered"
@@ -6058,19 +6125,19 @@ msgstr ""
#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Custom Options"
-msgstr "Opções Personalizadas"
+msgstr ""
#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom Overrides"
-msgstr "Substituições personalizadas"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Custom Report"
-msgstr "Relatório Personalizado"
+msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr ""
@@ -6082,7 +6149,7 @@ msgstr ""
#. Label of the custom_scss (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom SCSS"
-msgstr "SCSS personalizado"
+msgstr ""
#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
#. Settings'
@@ -6095,11 +6162,11 @@ msgstr ""
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6122,26 +6189,26 @@ msgstr ""
msgid "Customization"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr ""
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr ""
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6238,7 +6305,7 @@ msgstr ""
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr ""
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr ""
@@ -6247,7 +6314,7 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Daily Long"
-msgstr "Diário Longo"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -6264,7 +6331,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Danger"
-msgstr "Perigo"
+msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -6274,7 +6341,7 @@ msgstr ""
#. Label of the dark_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Dark Color"
-msgstr "Cor Escura"
+msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:65
msgid "Dark Theme"
@@ -6295,8 +6362,8 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr ""
@@ -6475,7 +6542,7 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
msgid "Date Format"
-msgstr "Formato de Data"
+msgstr ""
#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
#. Trail'
@@ -6488,7 +6555,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Date and Number Format"
-msgstr "Data e Formato de número"
+msgstr ""
#: frappe/public/js/frappe/form/controls/date.js:253
msgid "Date {0} must be in format: {1}"
@@ -6511,7 +6578,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 "Data e Hora"
+msgstr ""
#. Label of the day (Select) field in DocType 'Assignment Rule Day'
#. Label of the day (Select) field in DocType 'Auto Repeat Day'
@@ -6524,7 +6591,7 @@ 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 "Dia da Semana"
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:27
msgctxt "Duration"
@@ -6534,19 +6601,19 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
-msgstr "Dias Após"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before"
-msgstr "Dias Antes"
+msgstr ""
#. Label of the days_in_advance (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr "Dias Antes ou Após"
+msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr ""
@@ -6638,7 +6705,7 @@ 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 "Cabeçalho de Carta Padrão"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
@@ -6658,29 +6725,29 @@ msgstr ""
#. Label of the default_portal_home (Data) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Portal Home"
-msgstr "Página inicial do portal padrão"
+msgstr ""
#. Label of the default_print_format (Data) field in DocType 'DocType'
#. Label of the default_print_format (Link) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "Formato de impressão padrão"
+msgstr ""
#. Label of the default_print_language (Link) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Default Print Language"
-msgstr "Idioma de impressão padrão"
+msgstr ""
#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Default Redirect URI"
-msgstr "Padrão de redirecionamento URI"
+msgstr ""
#. Label of the default_role (Link) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Role at Time of Signup"
-msgstr "Função padrão no momento da inscrição"
+msgstr ""
#: frappe/email/doctype/email_account/email_account_list.js:16
msgid "Default Sending"
@@ -6693,12 +6760,12 @@ msgstr ""
#. Label of the sort_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Field"
-msgstr "Campo de classificação padrão"
+msgstr ""
#. Label of the sort_order (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Order"
-msgstr "Ordem de classificação padrão"
+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
@@ -6724,7 +6791,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Default Value"
-msgstr "Valor padrão"
+msgstr ""
#. Label of the default_view (Select) field in DocType 'DocType'
#. Label of the default_view (Select) field in DocType 'Customize Form'
@@ -6743,11 +6810,11 @@ msgstr ""
msgid "Default display currency"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr ""
@@ -6758,7 +6825,7 @@ msgstr ""
#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Default: \"Contact Us\""
-msgstr "Padrão: \"Fale Conosco\""
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/defaultvalue/defaultvalue.json
@@ -6770,7 +6837,7 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
msgid "Defaults"
-msgstr "Padrões"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:243
msgid "Defaults Updated"
@@ -6804,11 +6871,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6816,7 +6884,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6830,10 +6898,6 @@ msgstr ""
msgid "Delete Account"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr ""
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6863,7 +6927,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr ""
@@ -6891,6 +6963,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6905,16 +6981,20 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6939,13 +7019,13 @@ msgstr ""
#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr "Nome Excluído"
+msgstr ""
#: frappe/desk/reportview.py:644
msgid "Deleted all documents successfully"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Excluído!"
@@ -7018,7 +7098,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Depends On"
-msgstr "Depende de"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:32
msgid "Descendants Of"
@@ -7052,6 +7132,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7085,7 +7166,7 @@ msgstr ""
#. Label of the desk_access (Check) field in DocType 'Role'
#: frappe/core/doctype/role/role.json
msgid "Desk Access"
-msgstr "Acesso ao Ambiente de Trabalho"
+msgstr ""
#. Label of the desk_settings_section (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -7134,16 +7215,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7173,11 +7259,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr ""
@@ -7193,7 +7279,7 @@ msgstr ""
#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Digits"
-msgstr "Dígitos"
+msgstr ""
#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -7204,7 +7290,7 @@ msgstr ""
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Auto Refresh"
-msgstr "Desativar atualização automática"
+msgstr ""
#. Label of the disable_automatic_recency_filters (Check) field in DocType
#. 'List View Settings'
@@ -7227,7 +7313,7 @@ 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 "Desativar Contagem"
+msgstr ""
#. Label of the disable_document_sharing (Check) field in DocType 'System
#. Settings'
@@ -7248,7 +7334,7 @@ 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 "Desativar autenticação do servidor SMTP"
+msgstr ""
#. Label of the disable_scrolling (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
@@ -7259,7 +7345,7 @@ msgstr ""
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Sidebar Stats"
-msgstr "Desativar Estatísticas da Barra Lateral"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:146
msgid "Disable Signup for your site"
@@ -7325,10 +7411,11 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr ""
@@ -7342,11 +7429,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7395,7 +7482,7 @@ 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 "Visualização depende"
+msgstr ""
#. Label of the depends_on (Code) field in DocType 'DocField'
#. Label of the display_depends_on (Code) field in DocType 'Workspace Sidebar
@@ -7420,11 +7507,11 @@ msgstr "Não criar novo usuário"
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7432,7 +7519,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7487,7 +7574,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7510,7 +7596,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7523,7 +7608,7 @@ msgstr ""
msgid "DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr ""
@@ -7591,10 +7676,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr ""
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7612,15 +7693,15 @@ msgstr ""
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr ""
@@ -7634,7 +7715,7 @@ msgstr ""
msgid "Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7655,7 +7736,7 @@ msgstr ""
#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
#: frappe/public/js/frappe/views/render_preview.js:42
msgid "Document"
-msgstr "Documento"
+msgstr ""
#. Label of the actions (Table) field in DocType 'DocType'
#. Label of the document_actions_section (Section Break) field in DocType
@@ -7663,7 +7744,7 @@ msgstr "Documento"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Actions"
-msgstr "Ações do Documento"
+msgstr ""
#. Label of the document_follow_notifications_section (Section Break) field in
#. DocType 'User'
@@ -7673,14 +7754,14 @@ msgstr "Ações do Documento"
msgid "Document Follow"
msgstr ""
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr ""
#. Label of the document_name (Data) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Document Link"
-msgstr "Link do Documento"
+msgstr ""
#. Label of the section_break_12 (Section Break) field in DocType 'Email
#. Account'
@@ -7694,21 +7775,21 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Links"
-msgstr "Links de documentos"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7727,8 +7808,8 @@ msgstr ""
msgid "Document Name"
msgstr ""
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7746,7 +7827,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr ""
@@ -7769,7 +7850,7 @@ msgstr ""
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Document Share"
-msgstr "Partilha de Documentos"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/document_share_key/document_share_key.json
@@ -7797,7 +7878,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document States"
-msgstr "Documento Unidos"
+msgstr ""
#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:210
#: frappe/public/js/frappe/model/model.js:137
@@ -7807,12 +7888,12 @@ msgstr ""
#. Label of the tag (Link) field in DocType 'Tag Link'
#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Tag"
-msgstr "Etiqueta de Documento"
+msgstr ""
#. Label of the title (Data) field in DocType 'Tag Link'
#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Title"
-msgstr "Título do documento"
+msgstr ""
#. Label of the document_type (Link) field in DocType 'Assignment Rule'
#. Label of the reference_type (Link) field in DocType 'Milestone'
@@ -7850,7 +7931,7 @@ msgstr "Título do documento"
#: 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:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7870,11 +7951,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr ""
@@ -7903,27 +7984,27 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr ""
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr ""
@@ -7935,11 +8016,11 @@ msgstr ""
msgid "Document not Relinked"
msgstr ""
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
@@ -7955,21 +8036,17 @@ msgstr ""
msgid "Document {0} has been set to state {1} by {2}"
msgstr ""
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr ""
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr "Link da documentação"
+msgstr ""
#. Label of the documentation_url (Data) field in DocType 'DocField'
#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Documentation URL"
-msgstr "URL de documentação"
+msgstr ""
#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
msgid "Documents"
@@ -8010,7 +8087,7 @@ msgstr ""
#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domains HTML"
-msgstr "Domínios HTML"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
#. Field'
@@ -8059,7 +8136,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Donut"
-msgstr "Rosquinha"
+msgstr ""
#: frappe/public/js/form_builder/components/EditableInput.vue:43
msgid "Double click to edit label"
@@ -8096,7 +8173,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr ""
@@ -8177,10 +8254,10 @@ 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 "Data de vencimento baseada em"
+msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr ""
@@ -8188,19 +8265,15 @@ msgstr ""
msgid "Duplicate Entry"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr ""
@@ -8208,6 +8281,18 @@ msgstr ""
msgid "Duplicate field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8234,20 +8319,20 @@ msgstr ""
#. 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Dynamic Filters"
-msgstr "Filtros Dinâmicos"
+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 "Filtros dinâmicos 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 "Seção de Filtros Dinâmicos"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Name of a DocType
@@ -8268,17 +8353,17 @@ msgstr ""
#. 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Dynamic Report Filters"
-msgstr "Filtros dinâmicos de relatórios"
+msgstr ""
#. Label of the dynamic_route (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Route"
-msgstr "Rota Dinâmica"
+msgstr ""
#. Label of the dynamic_template (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Template"
-msgstr "Modelo dinâmico"
+msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
msgid "ESC"
@@ -8295,9 +8380,10 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8308,7 +8394,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8318,7 +8404,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8339,15 +8425,15 @@ msgstr ""
msgid "Edit Custom Block"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8361,7 +8447,7 @@ msgstr ""
msgid "Edit Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr ""
@@ -8374,7 +8460,7 @@ msgstr ""
msgid "Edit Format"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8432,7 +8518,7 @@ msgstr ""
msgid "Edit Shortcut"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8455,11 +8541,11 @@ msgstr ""
msgid "Edit the {0} Doctype"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr ""
@@ -8515,6 +8601,7 @@ msgstr ""
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8530,12 +8617,14 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8570,7 +8659,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr ""
@@ -8662,7 +8751,7 @@ msgstr ""
#. Label of the email_inbox (Section Break) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr "Caixa de Entrada"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/email_queue/email_queue.json
@@ -8768,7 +8857,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8807,7 +8896,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -8815,7 +8904,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -8826,7 +8915,7 @@ msgstr ""
#: frappe/integrations/doctype/google_contacts/google_contacts.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
-msgstr "Permitir"
+msgstr ""
#. Label of the enable_action_confirmation (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
@@ -8846,18 +8935,18 @@ msgstr ""
#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Auto Reply"
-msgstr "Ativar resposta automática"
+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 "Ativar Vinculação Automática em Documentos"
+msgstr ""
#. Label of the enable_comments (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr "Ativação de comentários"
+msgstr ""
#. Label of the enable_dynamic_client_registration (Check) field in DocType
#. 'OAuth Settings'
@@ -8906,7 +8995,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Password Policy"
-msgstr "Ativar política de senha"
+msgstr ""
#. Label of the enable_prepared_report (Check) field in DocType 'Role
#. Permission for Page and Report'
@@ -8917,7 +9006,7 @@ 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 "Ativar servidor de impressão"
+msgstr ""
#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
#. Notification Settings'
@@ -8933,7 +9022,7 @@ 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 "Ativar impressão bruta"
+msgstr ""
#: frappe/core/doctype/report/report.js:39
msgid "Enable Report"
@@ -8942,7 +9031,7 @@ 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 "Ativar Tarefas Agendadas"
+msgstr ""
#: frappe/core/doctype/rq_job/rq_job_list.js:32
msgid "Enable Scheduler"
@@ -8951,12 +9040,12 @@ msgstr ""
#. Label of the enable_security (Check) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Enable Security"
-msgstr "Ativar segurança"
+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 "Ativar Login Social"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:139
msgid "Enable Tracking Page Views"
@@ -9084,7 +9173,7 @@ msgstr ""
#. Label of the end_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "End Date Field"
-msgstr "Campo de data final"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.py:208
msgid "End Date cannot be before Start Date!"
@@ -9110,12 +9199,12 @@ msgstr ""
#. Label of the ends_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr "Termina em"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Energy Point"
-msgstr "Ponto de energia"
+msgstr ""
#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
@@ -9134,11 +9223,11 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr ""
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9165,6 +9254,10 @@ msgstr ""
msgid "Enter folder name"
msgstr ""
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9195,7 +9288,7 @@ msgstr ""
msgid "Entity Type"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr ""
@@ -9229,7 +9322,7 @@ msgstr ""
msgid "Error"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr ""
@@ -9244,12 +9337,12 @@ msgstr ""
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ""
@@ -9287,15 +9380,15 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9311,15 +9404,15 @@ msgstr ""
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9329,6 +9422,12 @@ msgstr ""
msgid "Errors"
msgstr ""
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9340,13 +9439,18 @@ msgstr ""
#. Label of the event_category (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr "Categoria do Evento"
+msgstr ""
#. Label of the event_frequency (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9372,11 +9476,11 @@ msgstr ""
msgid "Event Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr ""
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr ""
@@ -9398,9 +9502,10 @@ msgid "Exact Copies"
msgstr ""
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr "Exemplo"
+msgstr ""
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
@@ -9411,12 +9516,12 @@ msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr "Exemplo: # árvore / conta"
+msgstr ""
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr "Exemplo: 00001"
+msgstr ""
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
@@ -9446,7 +9551,7 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Exception"
-msgstr "Exceção"
+msgstr ""
#. Label of the execute_section (Section Break) field in DocType 'System
#. Console'
@@ -9468,7 +9573,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9489,28 +9594,28 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Expert"
-msgstr "Especialista"
+msgstr ""
#. Label of the expiration_time (Datetime) field in DocType 'OAuth
#. Authorization Code'
@@ -9519,7 +9624,7 @@ msgstr "Especialista"
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Expiration time"
-msgstr "Data de validade"
+msgstr ""
#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -9538,7 +9643,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Expires In"
-msgstr "Expira em"
+msgstr ""
#. Label of the expires_on (Date) field in DocType 'Document Share Key'
#: frappe/core/doctype/document_share_key/document_share_key.json
@@ -9548,27 +9653,28 @@ 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 "Tempo de expiração da página de imagem de código QR"
+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/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr ""
@@ -9592,7 +9698,7 @@ msgstr ""
#. Label of the export_from (Data) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Export From"
-msgstr "Exportar de"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:544
msgid "Export Import Log"
@@ -9607,11 +9713,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr ""
@@ -9627,6 +9733,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9639,7 +9749,7 @@ msgstr ""
msgid "Export without main header"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr ""
@@ -9650,7 +9760,7 @@ msgstr ""
#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr "Mostrar Destinatários"
+msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
@@ -9670,7 +9780,7 @@ msgstr ""
#. Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Expression, Optional"
-msgstr "Expressão, Opcional"
+msgstr ""
#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -9679,7 +9789,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr ""
@@ -9728,12 +9838,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr ""
@@ -9796,7 +9911,7 @@ msgstr ""
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9808,7 +9923,7 @@ msgstr ""
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr ""
@@ -9824,7 +9939,7 @@ msgstr ""
msgid "Failed to request login to Frappe Cloud"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr ""
@@ -9866,7 +9981,7 @@ msgstr ""
msgid "Fax"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr ""
@@ -9883,7 +9998,7 @@ msgstr "Feminino"
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr "Buscar de"
+msgstr ""
#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
@@ -9926,8 +10041,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9937,7 +10052,7 @@ msgstr ""
msgid "Field \"route\" is mandatory for Web Views"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -9945,16 +10060,16 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr ""
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
#. Label of the description (Text) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr "Descrição do Campo"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -9996,13 +10111,13 @@ 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 "Campo para rastrear"
+msgstr ""
#: frappe/custom/doctype/property_setter/property_setter.py:52
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10010,11 +10125,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10036,7 +10151,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10045,7 +10160,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10053,7 +10168,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10069,7 +10184,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10117,7 +10232,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10141,7 +10256,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10168,7 +10283,7 @@ msgstr ""
#. Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "Informações do arquivo"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
@@ -10177,12 +10292,12 @@ msgstr ""
#. Label of the file_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "Nome do arquivo"
+msgstr ""
#. Label of the file_size (Int) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "Tamanho do arquivo"
+msgstr ""
#. Label of the section_break_ryki (Section Break) field in DocType 'System
#. Health Report'
@@ -10203,7 +10318,7 @@ msgstr ""
#. Label of the file_url (Code) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "URL do arquivo"
+msgstr ""
#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
@@ -10217,12 +10332,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10249,17 +10364,22 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+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 "Filtrar dados"
+msgstr ""
#. Label of the filter_list (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -10269,24 +10389,24 @@ 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 "Filtrar Meta"
+msgstr ""
#. Label of the filter_name (Data) field in DocType 'List Filter'
#: frappe/desk/doctype/list_filter/list_filter.json
-#: frappe/public/js/frappe/list/list_filter.js:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr ""
#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Valores de filtro"
+msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10305,10 +10425,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10332,19 +10456,19 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
#. Label of the filters_config (Code) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Configuration"
-msgstr "Configuração de Filtros"
+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 "Exibição dos Filtros"
+msgstr ""
#. Label of the filters_editor (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -10356,15 +10480,11 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "Filtros JSON"
+msgstr ""
#. Label of the filters_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "Seção de Filtros"
-
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
@@ -10384,21 +10504,21 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Acabado"
+msgstr ""
#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
@@ -10427,7 +10547,7 @@ 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 "Primeira mensagem de sucesso"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
@@ -10444,7 +10564,7 @@ msgstr ""
#. Label of the flag (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr "Bandeira"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10464,7 +10584,7 @@ msgstr ""
#. Label of the float_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr "Precisão de Casas Decimais"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10477,13 +10597,13 @@ msgstr "Precisão de Casas Decimais"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr "Dobrar"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10492,7 +10612,7 @@ msgstr ""
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Folder"
-msgstr "Pasta"
+msgstr ""
#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
#: frappe/email/doctype/imap_folder/imap_folder.json
@@ -10512,12 +10632,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10525,7 +10645,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10533,7 +10653,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10541,7 +10661,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10553,7 +10673,7 @@ msgstr ""
#. Label of the font_properties (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr "Propriedades da fonte"
+msgstr ""
#. Label of the font_size (Int) field in DocType 'Print Format'
#. Label of the font_size (Float) field in DocType 'Print Settings'
@@ -10563,13 +10683,13 @@ msgstr "Propriedades da fonte"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr "Tamanho da Fonte"
+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 "Fontes"
+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'
@@ -10582,7 +10702,7 @@ msgstr "Fontes"
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr "Rodapé"
+msgstr ""
#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -10608,9 +10728,9 @@ msgstr ""
#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr "HTML de rodapé"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10624,12 +10744,12 @@ msgstr ""
#. Label of the footer_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Items"
-msgstr "Itens do Rodapé"
+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 "Logotipo do rodapé"
+msgstr ""
#. Label of the footer_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -10639,15 +10759,15 @@ msgstr ""
#. Label of the footer_template (Link) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr "Modelo de rodapé"
+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 "Valores de modelo de rodapé"
+msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10655,7 +10775,7 @@ msgstr ""
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer will display correctly only in PDF"
-msgstr "Rodapé será exibido corretamente somente em PDF"
+msgstr ""
#. Label of the for_doctype (Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10680,15 +10800,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10705,34 +10816,30 @@ 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 "Por valor"
+msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "Por exemplo: {} Abra"
+msgstr ""
#. Description of the 'Client script' (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -10753,7 +10860,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10763,7 +10870,7 @@ msgstr ""
#: frappe/core/doctype/package_import/package_import.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Force"
-msgstr "Força"
+msgstr ""
#. Label of the force_re_route_to_default_view (Check) field in DocType
#. 'DocType'
@@ -10782,7 +10889,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force User to Reset Password"
-msgstr "Forçar usuário a redefinir a senha"
+msgstr ""
#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType
#. 'System Settings'
@@ -10803,7 +10910,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -10831,7 +10939,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Form Settings"
-msgstr "Configurações de formulário"
+msgstr ""
#. Name of a DocType
#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
@@ -10848,7 +10956,7 @@ msgstr ""
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr "Codificado em URL do formulário"
+msgstr ""
#. Label of the format (Data) field in DocType 'Workspace Shortcut'
#. Label of the format (Select) field in DocType 'Auto Email Report'
@@ -10861,7 +10969,7 @@ msgstr ""
#. Label of the format_data (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Format Data"
-msgstr "Formato de dados"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -10886,12 +10994,12 @@ msgstr ""
#. Label of the fraction (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Fraction"
-msgstr "Fração"
+msgstr ""
#. Label of the fraction_units (Int) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Fraction Units"
-msgstr "Unidades Fracionadas"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -10982,7 +11090,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11001,9 +11109,9 @@ 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 "Do campo de data"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11015,7 +11123,7 @@ msgstr ""
#. Label of the sender_full_name (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "From Full Name"
-msgstr "De nome completo"
+msgstr ""
#. Label of the from_user (Link) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -11029,7 +11137,7 @@ 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 "Cheio"
+msgstr ""
#. Label of the full_name (Data) field in DocType 'Contact'
#. Label of the full_name (Data) field in DocType 'Activity Log'
@@ -11044,7 +11152,7 @@ msgstr "Cheio"
msgid "Full Name"
msgstr ""
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11052,12 +11160,12 @@ msgstr ""
#. Label of the full_width (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Full Width"
-msgstr "Largura completa"
+msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11066,11 +11174,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11090,7 +11198,7 @@ msgstr ""
#. Option for the 'Service' (Select) field in DocType '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'
#: frappe/core/doctype/package/package.json
@@ -11133,13 +11241,13 @@ msgstr ""
#. Label of the generate_keys (Button) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Generate Keys"
-msgstr "Gerar Chaves"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11149,8 +11257,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11166,7 +11274,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Geolocation"
-msgstr "Geolocalização"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
@@ -11184,7 +11292,7 @@ msgstr ""
#. Label of the get_contacts (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Get Contacts"
-msgstr "Obter contatos"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:93
msgid "Get Fields"
@@ -11221,7 +11329,7 @@ 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 "Obtenha seu avatar globalmente reconhecido de Gravatar.com"
+msgstr ""
#. Label of the git_branch (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
@@ -11259,9 +11367,9 @@ msgstr ""
#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Global Unsubscribe"
-msgstr "Cancelar Inscrição Global"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11277,7 +11385,7 @@ msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "Vá para página"
+msgstr ""
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
@@ -11321,7 +11429,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11334,7 +11442,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 "ID do Google Analytics"
+msgstr ""
#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
#. Settings'
@@ -11384,14 +11492,14 @@ msgstr ""
#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr "ID do evento do Google Agenda"
+msgstr ""
#. Label of the google_calendar_id (Data) field in DocType 'Event'
#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
#: frappe/desk/doctype/event/event.json
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr "ID da Agenda do Google"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
@@ -11536,18 +11644,18 @@ 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 "Agrupar por Com base em"
+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 "Agrupar por tipo"
+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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11580,7 +11688,7 @@ msgstr ""
#: 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'
@@ -11625,17 +11733,21 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr "Editor de HTML"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr "Página HTML"
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr "HTML para a seção de cabeçalho. opcional"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
msgid "HTML with jinja support"
@@ -11644,7 +11756,7 @@ msgstr ""
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Half"
-msgstr "Metade"
+msgstr ""
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
@@ -11708,14 +11820,14 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Header"
-msgstr "Cabeçalho"
+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 de cabeçalho"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11749,9 +11861,9 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Headers"
-msgstr "Cabeçalhos"
+msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11772,7 +11884,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr "Mapa de calor"
+msgstr ""
#: frappe/templates/emails/new_user.html:2
msgid "Hello"
@@ -11788,7 +11900,7 @@ msgstr "Olá,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11821,7 +11933,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 "Ajuda HTML"
+msgstr ""
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -11843,7 +11955,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11879,8 +11991,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -11896,7 +12008,7 @@ 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 "Esconder o Bloco"
+msgstr ""
#. Label of the hide_border (Check) field in DocType 'DocField'
#. Label of the hide_border (Check) field in DocType 'Custom Field'
@@ -11905,7 +12017,7 @@ msgstr "Esconder o Bloco"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Border"
-msgstr "Ocultar borda"
+msgstr ""
#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -11917,7 +12029,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Hide Copy"
-msgstr "Ocultar Cópia"
+msgstr ""
#. Label of the hide_custom (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -11931,7 +12043,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Days"
-msgstr "Ocultar dias"
+msgstr ""
#. Label of the hide_descendants (Check) field in DocType 'User Permission'
#: frappe/core/doctype/user_permission/user_permission.json
@@ -11975,7 +12087,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Seconds"
-msgstr "Ocultar segundos"
+msgstr ""
#. Label of the hide_toolbar (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -12031,12 +12143,12 @@ 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 "Regra de prioridade mais alta será aplicada primeiro"
+msgstr ""
#. Label of the highlight (Text) field in DocType 'Company History'
#: frappe/website/doctype/company_history/company_history.json
msgid "Highlight"
-msgstr "Realçar"
+msgstr ""
#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
@@ -12046,7 +12158,7 @@ msgstr ""
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12060,12 +12172,12 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Home Page"
-msgstr "Pagina inicial"
+msgstr ""
#. Label of the home_settings (Code) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Home Settings"
-msgstr "Configurações iniciais"
+msgstr ""
#: frappe/core/doctype/file/test_file.py:321
#: frappe/core/doctype/file/test_file.py:323
@@ -12088,14 +12200,14 @@ msgstr ""
#: frappe/core/doctype/server_script/server_script.json
#: frappe/core/doctype/user/user.json
msgid "Hourly"
-msgstr "De hora em hora"
+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 "Por hora"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -12106,7 +12218,7 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hourly rate limit for generating password reset links"
-msgstr "Limite de taxa por hora para gerar links de redefinição de senha"
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:29
msgctxt "Duration"
@@ -12116,7 +12228,7 @@ 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"
+msgstr ""
#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -12129,18 +12241,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12188,10 +12300,9 @@ msgstr ""
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/user_session_display/user_session_display.json
msgid "IP Address"
-msgstr "Endereço de IP"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12212,11 +12323,16 @@ msgstr "Endereço de IP"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr ""
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12227,16 +12343,20 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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 "O ícone aparecerá no botão"
+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 "Detalhes da identidade"
+msgstr ""
#. Label of the idx (Int) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -12258,13 +12378,13 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr ""
@@ -12277,7 +12397,7 @@ msgstr ""
#. Description of the 'Is Active' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr "Se marcada, todos os outros fluxos de trabalho tornam-se inativos."
+msgstr ""
#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print
#. Format'
@@ -12294,7 +12414,7 @@ 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 "Se esta função for desativada será removida em todos os usuários."
+msgstr ""
#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth
#. Enabled' (Check) field in DocType 'User'
@@ -12316,12 +12436,12 @@ msgstr ""
#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, changes to the document are tracked and shown in timeline"
-msgstr "Se ativado, as alterações no documento são rastreadas e mostradas na linha do tempo"
+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 "Se ativado, as visualizações de documentos são rastreadas, isso pode acontecer várias vezes"
+msgstr ""
#. Description of the 'Only allow System Managers to upload public files'
#. (Check) field in DocType 'System Settings'
@@ -12332,13 +12452,13 @@ 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 "Se ativado, o documento é marcado como visto, a primeira vez que um usuário o abre"
+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 "Se ativada, a notificação aparecerá na lista suspensa de notificações no canto superior direito da barra de navegação."
+msgstr ""
#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
#. Settings'
@@ -12356,7 +12476,7 @@ msgstr ""
#. 'Note'
#: frappe/desk/doctype/note/note.json
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
-msgstr "Se ativado, os usuários serão notificados sempre que iniciarem sessão. Se não estiver ativado, os usuários só serão notificados uma vez."
+msgstr ""
#. Description of the 'Default Workspace' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -12366,7 +12486,7 @@ 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 "Se não for a porta padrão (por exemplo, 587)"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -12384,19 +12504,27 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If not set, the currency precision will depend on number format"
-msgstr "Se não for definido, a precisão da moeda dependerá do formato de número"
+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 ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
@@ -12421,7 +12549,7 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "If user is the owner"
-msgstr "Se o usuário é o proprietário"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:204
msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted."
@@ -12480,7 +12608,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 "Ignorar Filtro XSS"
+msgstr ""
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Account'
@@ -12489,14 +12617,14 @@ msgstr "Ignorar Filtro XSS"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Ignore attachments over this size"
-msgstr "Ignorar anexos maiores que este tamanho"
+msgstr ""
#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Ignored Apps"
-msgstr "Aplicativos ignorados"
+msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr ""
@@ -12532,14 +12660,14 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Image"
-msgstr "Imagem"
+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 "Campo de Imagem"
+msgstr ""
#. Label of the image_height (Float) field in DocType 'Letter Head'
#. Label of the footer_image_height (Float) field in DocType 'Letter Head'
@@ -12550,7 +12678,7 @@ 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 "Link da Imagem"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:209
msgid "Image View"
@@ -12562,11 +12690,11 @@ msgstr ""
msgid "Image Width"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr ""
@@ -12600,7 +12728,7 @@ msgstr ""
msgid "Impersonated by {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12611,18 +12739,19 @@ msgstr ""
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Implicit"
-msgstr "Implícito"
+msgstr ""
#. Label of the import (Check) field in DocType 'Custom DocPerm'
#. Label of the import (Check) field in DocType 'DocPerm'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12634,13 +12763,13 @@ msgstr ""
#. Label of the import_file (Attach) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import File"
-msgstr "Importar arquivo"
+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 "Erros e avisos de importação de arquivos"
+msgstr ""
#. Label of the import_log_section (Section Break) field in DocType 'Data
#. Import'
@@ -12651,12 +12780,12 @@ 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 "Visualização do registro de importação"
+msgstr ""
#. Label of the import_preview (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Preview"
-msgstr "Visualização de importação"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:41
msgid "Import Progress"
@@ -12675,7 +12804,7 @@ msgstr ""
#. Label of the import_warnings (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Warnings"
-msgstr "Avisos de importação"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:117
msgid "Import Zip"
@@ -12684,7 +12813,7 @@ msgstr ""
#. Label of the google_sheets_url (Data) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import from Google Sheets"
-msgstr "Importar do Planilhas Google"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:612
msgid "Import template should be of type .csv, .xlsx or .xls"
@@ -12718,14 +12847,14 @@ msgstr ""
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In Days"
-msgstr "Em dias"
+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 "No Filtro da Lista"
+msgstr ""
#. Label of the in_global_search (Check) field in DocType 'DocField'
#. Label of the in_global_search (Check) field in DocType 'Custom Field'
@@ -12735,7 +12864,7 @@ msgstr "No Filtro da Lista"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Global Search"
-msgstr "Na Busca Global"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.js:88
msgid "In Grid View"
@@ -12767,7 +12896,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Preview"
-msgstr "Na pré-visualização"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
@@ -12780,7 +12909,7 @@ msgstr ""
#. Label of the in_reply_to (Link) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "In Reply To"
-msgstr "Em resposta a"
+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
@@ -12788,18 +12917,18 @@ msgstr "Em resposta a"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Standard Filter"
-msgstr "Em Filtro Padrão"
+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 "Em pontos. O padrão é 9."
+msgstr ""
#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In seconds"
-msgstr "Em segundos"
+msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:209
msgid "Inactive"
@@ -12833,7 +12962,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 "Incluem a busca no Top Bar"
+msgstr ""
#: frappe/website/doctype/website_theme/website_theme.js:61
msgid "Include Theme from Apps"
@@ -12845,15 +12974,15 @@ msgid "Include Web View Link in Email"
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr ""
@@ -12920,11 +13049,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr ""
@@ -12969,14 +13098,14 @@ 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 "Indicador"
+msgstr ""
#. Label of the indicator_color (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Indicator Color"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr ""
@@ -12992,7 +13121,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Info"
-msgstr "Informações"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:144
msgid "Info:"
@@ -13001,7 +13130,7 @@ 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 "Contagem de sincronização inicial"
+msgstr ""
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -13023,15 +13152,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr ""
@@ -13050,19 +13179,19 @@ msgstr ""
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Insert New Records"
-msgstr "Inserir novos registros"
+msgstr ""
#. Label of the insert_style (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Insert Style"
-msgstr "Inserir Estilo"
+msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr ""
@@ -13088,15 +13217,15 @@ msgstr ""
msgid "Instructions"
msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13127,7 +13256,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 "Inteiro"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/integration_request/integration_request.json
@@ -13164,7 +13293,7 @@ msgstr ""
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr ""
@@ -13173,6 +13302,11 @@ msgstr ""
msgid "Internal record of document shares"
msgstr ""
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13182,7 +13316,7 @@ msgstr ""
#. 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Introduce your company to the website visitor."
-msgstr "Apresente sua empresa para o visitante do site."
+msgstr ""
#. Label of the introduction_section (Section Break) field in DocType 'Contact
#. Us Settings'
@@ -13198,7 +13332,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Introductory information for the Contact Us Page"
-msgstr "Informação introdutória para a página Fale Conosco"
+msgstr ""
#. Label of the introspection_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -13212,13 +13346,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13258,7 +13392,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13266,7 +13400,8 @@ msgstr ""
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr ""
@@ -13274,8 +13409,8 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13299,7 +13434,7 @@ msgstr ""
msgid "Invalid Login Token"
msgstr ""
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr ""
@@ -13307,7 +13442,7 @@ msgstr ""
msgid "Invalid Mail Server. Please rectify and try again."
msgstr ""
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr ""
@@ -13318,8 +13453,8 @@ msgstr ""
msgid "Invalid Operation"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr ""
@@ -13331,7 +13466,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr ""
@@ -13344,11 +13479,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13357,7 +13492,7 @@ msgstr ""
msgid "Invalid Search Field {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr ""
@@ -13376,7 +13511,7 @@ msgstr ""
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr ""
@@ -13388,7 +13523,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13396,19 +13531,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13416,18 +13551,22 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr ""
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr ""
@@ -13436,11 +13575,11 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13448,11 +13587,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13460,11 +13599,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13472,7 +13611,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13489,19 +13628,19 @@ msgstr ""
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13525,11 +13664,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13546,31 +13685,31 @@ msgstr ""
msgid "Invalid username or password"
msgstr ""
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr ""
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Inverse"
-msgstr "Inverso"
+msgstr ""
#: frappe/core/doctype/user_invitation/user_invitation.py:95
msgid "Invitation already accepted"
@@ -13625,7 +13764,7 @@ msgstr ""
#. Label of the is_attachments_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Attachments Folder"
-msgstr "É Pasta de Anexos"
+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'
@@ -13647,12 +13786,12 @@ msgstr ""
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Complete"
-msgstr "Está completo"
+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 "Está completo"
+msgstr ""
#. Label of the is_current (Check) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -13669,7 +13808,7 @@ 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 "É campo personalizado"
+msgstr ""
#. Label of the is_default (Check) field in DocType 'Address Template'
#. Label of the is_default (Check) field in DocType 'User Permission'
@@ -13689,9 +13828,9 @@ msgstr ""
#. Label of the is_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Folder"
-msgstr "É Pasta"
+msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr ""
@@ -13712,18 +13851,18 @@ msgstr ""
#. Label of the reqd (Check) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Is Mandatory Field"
-msgstr "É campo obrigatório"
+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 "É estado opcional"
+msgstr ""
#. Label of the is_primary (Check) field in DocType 'Contact Email'
#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Is Primary"
-msgstr "É primário"
+msgstr ""
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
msgid "Is Primary Address"
@@ -13733,36 +13872,36 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
-msgstr "É o contato principal"
+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 "É o celular principal"
+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 "É o telefone principal"
+msgstr ""
#. Label of the is_private (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Private"
-msgstr "É privada"
+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 "É público"
+msgstr ""
#. Label of the is_published_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Published Field"
-msgstr "É Publicado campo"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr ""
@@ -13795,7 +13934,7 @@ msgstr ""
#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Skipped"
-msgstr "É pulado"
+msgstr ""
#. Label of the is_spam (Check) field in DocType 'Email Rule'
#: frappe/email/doctype/email_rule/email_rule.json
@@ -13819,7 +13958,7 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/email/doctype/notification/notification.json
msgid "Is Standard"
-msgstr "É Padrão"
+msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -13840,7 +13979,7 @@ msgstr ""
#. Label of the istable (Check) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Table"
-msgstr "É Tabela"
+msgstr ""
#. Label of the is_table_field (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -13850,12 +13989,12 @@ msgstr ""
#. Label of the is_tree (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Tree"
-msgstr "É árvore"
+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 "É único"
+msgstr ""
#. Label of the is_virtual (Check) field in DocType 'DocType'
#. Label of the is_virtual (Check) field in DocType 'Custom Field'
@@ -13920,7 +14059,7 @@ msgstr ""
#. Label of the webhook_json (Code) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON Request Body"
-msgstr "Corpo da solicitação JSON"
+msgstr ""
#: frappe/templates/signup.html:5
msgid "Jane Doe"
@@ -14007,8 +14146,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr ""
@@ -14084,7 +14223,7 @@ msgstr ""
#: frappe/integrations/doctype/webhook_header/webhook_header.json
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Key"
-msgstr "Chave"
+msgstr ""
#. Label of a standard help item
#. Type: Action
@@ -14145,17 +14284,17 @@ msgstr ""
#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP First Name Field"
-msgstr "Campo Primeiro Nome do LDAP"
+msgstr ""
#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group"
-msgstr "Grupo LDAP"
+msgstr ""
#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Field"
-msgstr "Campo do Grupo LDAP"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
@@ -14167,7 +14306,7 @@ msgstr ""
#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Mappings"
-msgstr "Mapeamentos de grupo LDAP"
+msgstr ""
#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
#. Settings'
@@ -14178,17 +14317,17 @@ msgstr ""
#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Last Name Field"
-msgstr "Campo Sobrenome LDAP"
+msgstr ""
#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Middle Name Field"
-msgstr "Campo de nome do meio LDAP"
+msgstr ""
#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Mobile Field"
-msgstr "Campo Móvel LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
msgid "LDAP Not Installed"
@@ -14197,12 +14336,12 @@ msgstr ""
#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Phone Field"
-msgstr "Campo de telefone LDAP"
+msgstr ""
#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search String"
-msgstr "Palavra de Busca do LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
@@ -14217,7 +14356,7 @@ msgstr ""
#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Security"
-msgstr "Segurança LDAP"
+msgstr ""
#. Label of the ldap_server_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
@@ -14241,12 +14380,12 @@ msgstr ""
#. DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP User Creation and Mapping"
-msgstr "Criação e Mapeamento de Usuários LDAP"
+msgstr ""
#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Username Field"
-msgstr "Campo Nome de Usuário do LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:310
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:429
@@ -14323,22 +14462,22 @@ msgstr ""
#. Label of the label_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Label Help"
-msgstr "Ajuda sobre Etiquetas"
+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 "Etiqueta e Tipo"
+msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr ""
#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr "Página de chegada"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
@@ -14354,7 +14493,7 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14362,12 +14501,12 @@ msgstr ""
#. Label of the language_code (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr "Código do Idioma"
+msgstr ""
#. Label of the language_name (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr "Nome do Idioma"
+msgstr ""
#. Label of the last_10_active_users (Code) field in DocType 'System Health
#. Report'
@@ -14398,12 +14537,20 @@ msgstr ""
#. Label of the last_active (Datetime) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr "Ativo pela última vez"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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 "Última Execução"
+msgstr ""
#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
@@ -14413,17 +14560,17 @@ msgstr ""
#. Label of the last_ip (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr "Último IP"
+msgstr ""
#. Label of the last_known_versions (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Known Versions"
-msgstr "Últimas versões conhecidas"
+msgstr ""
#. Label of the last_login (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr "Último Login"
+msgstr ""
#: frappe/email/doctype/notification/notification.js:32
msgid "Last Modified Date"
@@ -14438,7 +14585,7 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/public/js/frappe/ui/filters/filter.js:643
msgid "Last Month"
-msgstr "Mês passado"
+msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
@@ -14454,13 +14601,13 @@ 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 "Data da última redefinição de senha"
+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:647
msgid "Last Quarter"
-msgstr "Ultimo quarto"
+msgstr ""
#. Label of the last_received_at (Datetime) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -14481,12 +14628,12 @@ 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 "Última sincronização em"
+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 "Última sincronização em"
+msgstr ""
#. Label of the last_updated (Datetime) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -14506,24 +14653,29 @@ msgstr ""
#. Label of the last_user (Link) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr "Último usuário"
+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:639
msgid "Last Week"
-msgstr "Semana passada"
+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:655
msgid "Last Year"
-msgstr "Ano passado"
+msgstr ""
#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
msgstr ""
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
@@ -14539,7 +14691,7 @@ msgstr ""
#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Leave blank to repeat always"
-msgstr "Deixe em branco para repetir sempre"
+msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
#: frappe/email/doctype/email_account/email_account.py:720
@@ -14551,9 +14703,15 @@ msgstr ""
msgid "Ledger"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14641,13 +14799,13 @@ msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Letter"
-msgstr "Carta"
+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:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14658,25 +14816,25 @@ 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 "Carta de cabeça com base em"
+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 "Carta cabeça imagem"
+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 "Nome do timbrado"
+msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14684,7 +14842,7 @@ msgstr ""
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head in HTML"
-msgstr "Cabeça Carta em HTML"
+msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
#. Label of the permlevel (Int) field in DocType 'DocPerm'
@@ -14698,7 +14856,7 @@ msgstr "Cabeça Carta em HTML"
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr ""
@@ -14731,7 +14889,7 @@ msgstr ""
#. Label of the light_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Light Color"
-msgstr "Cor clara"
+msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:60
msgid "Light Theme"
@@ -14739,7 +14897,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr ""
@@ -14761,16 +14919,16 @@ msgstr ""
#. Label of the limit (Int) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Limit"
-msgstr "Limite"
+msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
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 "Linha"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -14808,7 +14966,7 @@ msgstr ""
#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Link Cards"
-msgstr "Cartões de ligação"
+msgstr ""
#. Label of the link_count (Int) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
@@ -14849,7 +15007,7 @@ msgstr ""
#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link Fieldname"
-msgstr "Nome do campo do link"
+msgstr ""
#. Label of the link_filters (JSON) field in DocType 'DocField'
#. Label of the link_filters (JSON) field in DocType 'Custom Field'
@@ -14869,14 +15027,14 @@ msgstr ""
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Name"
-msgstr "Nome do Link"
+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 "Título do Link"
+msgstr ""
#. Label of the link_to (Dynamic Link) field in DocType 'Desktop Icon'
#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
@@ -14889,11 +15047,11 @@ msgstr "Título do Link"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
-msgstr "Link para"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
@@ -14907,7 +15065,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
@@ -14928,14 +15086,14 @@ 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 "Link para a página que você deseja abrir. Deixe em branco se você quiser torná-lo um pai grupo."
+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 "Relacionado"
+msgstr ""
#: frappe/public/js/frappe/form/linked_with.js:23
msgid "Linked With"
@@ -14950,6 +15108,7 @@ msgstr ""
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14971,10 +15130,10 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
-msgstr "Lista"
+msgstr ""
#. Label of the list__search_settings_section (Section Break) field in DocType
#. 'DocField'
@@ -15002,7 +15161,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -15016,7 +15175,7 @@ msgstr ""
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr ""
@@ -15043,16 +15202,16 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Load Balancing"
-msgstr "Balanceamento de carga"
+msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15070,10 +15229,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr ""
@@ -15090,8 +15249,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15101,14 +15260,15 @@ msgid "Loading..."
msgstr ""
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
#. Label of the log (Code) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
msgid "Log"
-msgstr "Registo"
+msgstr ""
#. Label of the log_api_requests (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15174,6 +15334,11 @@ msgstr ""
msgid "Login"
msgstr ""
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15249,7 +15414,7 @@ msgstr ""
msgid "Login to {0}"
msgstr ""
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr ""
@@ -15298,7 +15463,7 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/me.html:91
msgid "Logout"
-msgstr "Sair"
+msgstr ""
#: frappe/core/doctype/user/user.js:195
msgid "Logout All Sessions"
@@ -15308,16 +15473,15 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Logout All Sessions on Password Reset"
-msgstr "Sair de todas as sessões ao redefinir a senha"
+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 "Saia de todos os dispositivos após alterar a senha"
+msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr ""
@@ -15338,7 +15502,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Long Text"
-msgstr "Texto Longo"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
msgid "Looks like you didn't change the value"
@@ -15348,7 +15512,7 @@ msgstr ""
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr ""
@@ -15375,17 +15539,17 @@ msgstr "Senhora"
#. Label of the main_section (Text Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section"
-msgstr "Seção Principal"
+msgstr ""
#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (HTML)"
-msgstr "Seção Principal (HTML)"
+msgstr ""
#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (Markdown)"
-msgstr "Seção Principal (Remarcação)"
+msgstr ""
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
@@ -15471,7 +15635,7 @@ 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 "Obrigatório Depende"
+msgstr ""
#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -15498,7 +15662,7 @@ msgstr ""
msgid "Mandatory fields required in {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
@@ -15528,7 +15692,7 @@ 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 "Mapeie os parâmetros da rota em variáveis de formulário. Exemplo /project/<name>"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:923
msgid "Mapping column {0} to field {1}"
@@ -15560,7 +15724,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15595,7 +15759,7 @@ 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 "Editor de Markdown"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -15612,9 +15776,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15632,7 +15799,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr "Máx. de Anexos"
+msgstr ""
#. Label of the max_file_size (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15647,7 +15814,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 "Comprimento máximo"
+msgstr ""
#. Label of the max_report_rows (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15657,7 +15824,7 @@ 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 Valor"
+msgstr ""
#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -15676,14 +15843,14 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "Máximo"
+msgstr ""
#: frappe/core/doctype/file/file.py:342
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
@@ -15697,20 +15864,27 @@ msgstr ""
msgid "Maximum {0} rows allowed"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15746,20 +15920,20 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Mention"
-msgstr "Menção"
+msgstr ""
#. Label of the enable_email_mention (Check) field in DocType 'Notification
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr "Menções"
+msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15793,13 +15967,13 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr ""
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
@@ -15807,19 +15981,19 @@ msgstr ""
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr "Exemplos de Mensagens"
+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 "ID da Mensagem"
+msgstr ""
#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr "Parâmetro da mensagem"
+msgstr ""
#: frappe/templates/includes/contact.js:36
msgid "Message Sent"
@@ -15830,7 +16004,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr ""
@@ -15925,9 +16099,9 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Método"
+msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -15945,7 +16119,7 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json
msgid "Middle Name"
-msgstr "Nome do Meio"
+msgstr ""
#. Label of a field in the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
@@ -15967,7 +16141,7 @@ msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Minimum"
-msgstr "Mínimo"
+msgstr ""
#. Label of the minimum_password_score (Select) field in DocType 'System
#. Settings'
@@ -16016,7 +16190,7 @@ msgstr "Senhorita"
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16036,7 +16210,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16101,7 +16275,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16137,7 +16311,7 @@ msgstr ""
#. Label of the module_name (Data) field in DocType 'Module Def'
#: frappe/core/doctype/module_def/module_def.json
msgid "Module Name"
-msgstr "Nome do Módulo"
+msgstr ""
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -16148,9 +16322,8 @@ msgstr ""
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16167,7 +16340,7 @@ msgstr ""
msgid "Module to Export"
msgstr ""
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16181,7 +16354,7 @@ msgstr ""
#. Label of the modules_html (HTML) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr "Módulos HTML"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -16238,7 +16411,7 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr "Mensalmente Longo"
+msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:39
#: frappe/public/js/frappe/form/multi_select_dialog.js:45
@@ -16269,7 +16442,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
-msgstr "Mais Informações"
+msgstr ""
#: frappe/website/doctype/help_article/templates/help_article.html:19
#: frappe/website/doctype/help_article/templates/help_article.html:33
@@ -16280,9 +16453,9 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr "Mais conteúdo na parte de baixo da página."
+msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr ""
@@ -16297,7 +16470,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr ""
@@ -16309,19 +16482,19 @@ msgstr ""
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16333,7 +16506,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr ""
@@ -16368,7 +16541,7 @@ msgstr ""
#. Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr "Deve ser um URL de planilhas do Google acessível publicamente"
+msgstr ""
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
@@ -16394,7 +16567,7 @@ msgstr ""
#. Label of the mute_sounds (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Mute Sounds"
-msgstr "Desativar Sons"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:45
msgid "Mx"
@@ -16451,7 +16624,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr ""
@@ -16463,7 +16636,7 @@ msgstr ""
msgid "Name of the new Print Format"
msgstr ""
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr ""
@@ -16480,7 +16653,7 @@ msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr "Nomeação"
+msgstr ""
#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
@@ -16502,7 +16675,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr ""
@@ -16526,11 +16699,6 @@ msgstr ""
msgid "Navbar Settings"
msgstr ""
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16544,39 +16712,44 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16598,6 +16771,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16614,7 +16788,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16630,8 +16804,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr ""
@@ -16680,7 +16854,7 @@ msgstr ""
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16701,8 +16875,8 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr ""
@@ -16729,8 +16903,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16738,7 +16912,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16779,34 +16953,34 @@ msgstr ""
#. Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "New value to be set"
-msgstr "Novo valor a ser definido"
+msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr ""
@@ -16818,7 +16992,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16839,7 +17013,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr ""
@@ -16866,12 +17040,16 @@ msgstr ""
msgid "Next Action Email Template"
msgstr ""
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -16896,7 +17074,7 @@ 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 "Próxima data programada"
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
msgid "Next Scheduled Date"
@@ -16938,20 +17116,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16977,7 +17159,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "No Copy"
-msgstr "Nenhuma Cópia"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
#: frappe/email/doctype/auto_email_report/auto_email_report.py:309
@@ -17021,7 +17203,7 @@ msgstr ""
msgid "No Google Calendar Event to sync."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17040,23 +17222,23 @@ msgstr ""
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr ""
@@ -17076,11 +17258,11 @@ msgstr ""
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr ""
@@ -17088,7 +17270,7 @@ msgstr ""
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17096,7 +17278,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17112,7 +17294,7 @@ msgstr ""
msgid "No Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17132,7 +17314,7 @@ msgstr ""
msgid "No changes in document"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17196,7 +17378,7 @@ msgstr ""
msgid "No file attached"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr ""
@@ -17244,11 +17426,11 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
@@ -17257,7 +17439,7 @@ msgstr ""
msgid "No permission to read {0}"
msgstr ""
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr ""
@@ -17273,7 +17455,7 @@ msgstr ""
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr ""
@@ -17281,7 +17463,7 @@ msgstr ""
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17293,11 +17475,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17309,7 +17492,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17318,7 +17501,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17335,7 +17518,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Non Negative"
-msgstr "Não Negativo"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:33
msgid "Non-Conforming"
@@ -17361,12 +17544,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr ""
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17408,7 +17591,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17417,7 +17600,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17426,8 +17609,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17447,7 +17630,7 @@ msgstr ""
msgid "Not Sent"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr ""
@@ -17461,15 +17644,15 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr ""
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr ""
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17477,7 +17660,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17497,11 +17680,11 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr ""
@@ -17514,11 +17697,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17546,7 +17729,7 @@ msgstr ""
msgid "Note:"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17558,13 +17741,13 @@ msgstr ""
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Note: For best results, images must be of the same size and width must be greater than height."
-msgstr "Nota: Para obter melhores resultados, as imagens devem ter o mesmo tamanho e a largura deve ser maior que a altura."
+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 "Observação: Serão permitidas múltiplas sessões no caso de dispositivo móvel"
+msgstr ""
#: frappe/core/doctype/user/user.js:394
msgid "Note: This will be shared with user."
@@ -17578,7 +17761,7 @@ msgstr ""
msgid "Notes:"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr ""
@@ -17590,8 +17773,8 @@ msgstr ""
msgid "Nothing left to undo"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17602,11 +17785,13 @@ msgid "Nothing to update"
msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr ""
@@ -17622,7 +17807,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17631,11 +17816,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17653,13 +17833,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -17687,12 +17869,12 @@ 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 "Informar se não for respondido"
+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 "Informar se não for respondido em (minutos)"
+msgstr ""
#. Label of the notify_on_login (Check) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -17707,7 +17889,7 @@ msgstr ""
#. Label of the phone (Data) field in DocType 'Contact Phone'
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr "Número"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
@@ -17740,17 +17922,17 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/currency/currency.json
msgid "Number Format"
-msgstr "Formato de número"
+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 "Número de Backups"
+msgstr ""
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
-msgstr "Número de Grupos"
+msgstr ""
#. Label of the number_of_queries (Int) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -17864,12 +18046,12 @@ msgstr ""
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP App"
-msgstr "Aplicação OTP"
+msgstr ""
#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP Issuer Name"
-msgstr "Nome da Emissora OTP"
+msgstr ""
#. Label of the otp_sms_template (Small Text) field in DocType 'System
#. Settings'
@@ -17895,7 +18077,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17908,12 +18090,12 @@ msgstr ""
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Off"
-msgstr "Desligado"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Office"
-msgstr "Escritório"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -17935,7 +18117,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17943,7 +18125,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18010,7 +18192,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18054,7 +18236,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18070,11 +18252,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18093,16 +18275,16 @@ 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 "Somente permite edição para"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Only Send Records Updated in Last X Hours"
-msgstr "Somente Enviar Registros Atualizados em Últimas X Horas"
+msgstr ""
#: frappe/core/doctype/file/file.py:167
msgid "Only System Managers can make this file public."
@@ -18118,11 +18300,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18165,7 +18347,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18188,8 +18370,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18209,7 +18391,7 @@ msgstr ""
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Open Documents"
-msgstr "Documentos abertos"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
@@ -18219,12 +18401,16 @@ msgstr ""
#. Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr "Documento de Referência Aberto"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18232,14 +18418,14 @@ 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 "Abrir URL em uma nova guia"
+msgstr ""
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18251,11 +18437,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18270,16 +18456,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18300,7 +18486,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Opened"
-msgstr "Inaugurado"
+msgstr ""
#. Label of the operation (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
@@ -18311,7 +18497,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18337,7 +18523,7 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18349,7 +18535,7 @@ msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr "Opcional: O alerta será enviado se essa expressão é verdadeira"
+msgstr ""
#. Label of the options (Small Text) field in DocType 'DocField'
#. Label of the options (Data) field in DocType 'Report Column'
@@ -18371,16 +18557,16 @@ msgstr "Opcional: O alerta será enviado se essa expressão é verdadeira"
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
#. Label of the options_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr "Ajuda sobre Opções"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18388,7 +18574,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18396,7 +18582,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18410,9 +18596,9 @@ 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 "Pedido"
+msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18420,20 +18606,24 @@ msgstr ""
#. 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 "História da Organização"
+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 "Cabeçalho da História da Organização"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:21
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18447,7 +18637,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr "Outro"
+msgstr ""
#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -18495,7 +18685,7 @@ msgstr ""
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Output"
-msgstr "Saída"
+msgstr ""
#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
msgid "Overview"
@@ -18508,18 +18698,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18531,7 +18723,7 @@ msgstr ""
#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr "Tamanho da página PDF"
+msgstr ""
#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -18541,9 +18733,9 @@ msgstr ""
#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr "Configurações do PDF"
+msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18551,11 +18743,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18656,12 +18848,12 @@ 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 "Blocos de construção de página"
+msgstr ""
#. Label of the page_html (Section Break) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page HTML"
-msgstr "Página HTML"
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
@@ -18674,7 +18866,7 @@ msgstr ""
#. Label of the page_name (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page Name"
-msgstr "Nome da Página"
+msgstr ""
#. Label of the page_number (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -18691,7 +18883,7 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Page Settings"
-msgstr "Configurações da página"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
@@ -18714,7 +18906,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18730,7 +18922,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18741,7 +18933,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18774,11 +18966,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18790,9 +18982,9 @@ 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 "Etiqueta Pai"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18817,11 +19009,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18840,7 +19032,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18854,7 +19046,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr "Passivo"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the password_settings (Section Break) field in DocType 'System
@@ -18877,20 +19069,20 @@ msgstr "Passivo"
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
#. Label of the password_reset_limit (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Password Reset Link Generation Limit"
-msgstr "Limite de geração de link de redefinição de senha"
+msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18901,7 +19093,7 @@ 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 "Senha para DN de base"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
@@ -18919,11 +19111,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18935,7 +19127,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18956,7 +19148,7 @@ msgstr ""
#: frappe/core/doctype/package_release/package_release.json
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch"
-msgstr "Remendo"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/patch_log/patch_log.json
@@ -18990,14 +19182,14 @@ msgstr ""
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr "Caminho para o certificado do servidor"
+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 "Caminho para o arquivo de chaves privado"
+msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19031,7 +19223,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr "Aprovação pendente"
+msgstr ""
#. Label of the pending_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19062,7 +19254,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "Percentagem"
+msgstr ""
#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
#. Report'
@@ -19075,22 +19267,22 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Perm Level"
-msgstr "Nível Permanente"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Permanent"
-msgstr "Permanente"
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19098,7 +19290,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19108,12 +19304,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19122,11 +19318,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19135,7 +19326,7 @@ 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 "Regras de Permissão"
+msgstr ""
#. Label of the permission_type (Select) field in DocType 'Permission
#. Inspector'
@@ -19157,7 +19348,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19168,13 +19358,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19186,11 +19375,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19214,7 +19403,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Pessoal"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -19260,20 +19449,20 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr "Torta"
+msgstr ""
#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19306,7 +19495,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Plant"
-msgstr "Fábrica"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
@@ -19324,7 +19513,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19340,7 +19529,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19348,11 +19537,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19364,11 +19553,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19400,7 +19589,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19430,10 +19619,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19446,7 +19635,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19520,15 +19709,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19544,7 +19733,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19564,7 +19753,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19572,7 +19761,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19622,11 +19811,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19634,7 +19823,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19654,7 +19843,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19666,7 +19855,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19694,7 +19883,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19746,7 +19935,7 @@ msgstr ""
#: frappe/email/doctype/email_domain/email_domain.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr "Porta"
+msgstr ""
#: frappe/www/me.html:81
msgid "Portal"
@@ -19774,7 +19963,7 @@ 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 "Posição"
+msgstr ""
#: frappe/templates/discussions/comment_box.html:29
#: frappe/templates/discussions/reply_card.html:15
@@ -19813,13 +20002,13 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr "Precisão"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19834,12 +20023,12 @@ msgstr "Prefiro não dizer"
#. Label of the is_primary_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Billing Address"
-msgstr "Endereço preferido de faturamento"
+msgstr ""
#. Label of the is_shipping_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Shipping Address"
-msgstr "Endereço preferido para entrega"
+msgstr ""
#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
@@ -19847,7 +20036,7 @@ msgstr "Endereço preferido para entrega"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr "Prefixo"
+msgstr ""
#. Name of a DocType
#. Label of the prepared_report (Check) field in DocType 'Report'
@@ -19871,11 +20060,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19883,7 +20072,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19901,19 +20090,19 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
#. Label of the preview_html (HTML) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr "Pré-visualização de HTML"
+msgstr ""
#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr "Visualizar mensagem"
+msgstr ""
#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
@@ -19945,16 +20134,16 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -19968,7 +20157,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Primary"
-msgstr "Primário"
+msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:27
msgid "Primary Address"
@@ -19977,7 +20166,7 @@ msgstr ""
#. Label of the primary_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Primary Color"
-msgstr "Cor primária"
+msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:23
msgid "Primary Contact"
@@ -20007,19 +20196,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20037,8 +20226,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20075,14 +20265,14 @@ 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 "Ajuda sobre Formatos de Impressão"
+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 "Tipo do Formato de Impressão"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20103,7 +20293,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide"
-msgstr "Ocultar Impressão"
+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'
@@ -20113,13 +20303,13 @@ msgstr "Ocultar Impressão"
#: 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 "Ocultar Impressão se não Preenchido"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20127,13 +20317,13 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "Servidor de impressão"
+msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20150,12 +20340,12 @@ 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 "Nome do estilo de impressão"
+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 "Estilo de visualização de impressão"
+msgstr ""
#. Label of the print_width (Data) field in DocType 'DocField'
#. Label of the print_width (Data) field in DocType 'Custom Field'
@@ -20164,28 +20354,28 @@ msgstr "Estilo de visualização de impressão"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr "Largura de impressão"
+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 "Largura de impressão do campo, se o campo é uma coluna na tabela"
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "Imprimir com o timbre"
+msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20193,17 +20383,17 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "Nome da impressora"
+msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20252,7 +20442,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20292,9 +20482,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20306,7 +20496,7 @@ 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 "Propriedade depende"
+msgstr ""
#. Name of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -20346,7 +20536,7 @@ msgstr ""
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr "Fornecedor"
+msgstr ""
#. Label of the provider_name (Data) field in DocType 'Connected App'
#. Label of the provider_name (Data) field in DocType 'Social Login Key'
@@ -20355,7 +20545,7 @@ msgstr "Fornecedor"
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Provider Name"
-msgstr "Nome do provedor"
+msgstr ""
#. Option for the 'Event Type' (Select) field in DocType 'Event'
#. Label of the public (Check) field in DocType 'Note'
@@ -20364,7 +20554,7 @@ msgstr "Nome do provedor"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr ""
@@ -20425,7 +20615,7 @@ msgstr ""
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr "Puxe do Google Agenda"
+msgstr ""
#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
#. Contacts'
@@ -20436,12 +20626,12 @@ msgstr ""
#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr "Extraído do Google Agenda"
+msgstr ""
#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr "Extraído dos Contatos do Google"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.js:209
msgid "Pulling emails..."
@@ -20487,13 +20677,13 @@ msgstr ""
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr "Enviar para o Google Agenda"
+msgstr ""
#. Label of the push_to_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr "Enviar para os Contatos do Google"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
@@ -20514,7 +20704,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "Falha na bandeja QZ:"
@@ -20535,7 +20725,7 @@ msgstr ""
#: frappe/core/doctype/recorder_query/recorder_query.json
#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr "Consulta"
+msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -20546,7 +20736,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Query Options"
-msgstr "Opções de Consulta"
+msgstr ""
#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
@@ -20576,7 +20766,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20597,7 +20787,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20638,7 +20828,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20673,7 +20863,7 @@ msgstr ""
#. 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "RAW Information Log"
-msgstr "Registro de informações RAW"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/rq_job/rq_job.json
@@ -20730,6 +20920,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20738,7 +20937,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20756,7 +20955,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20767,11 +20966,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20801,14 +21001,14 @@ 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 "Somente leitura depende"
+msgstr ""
#. Label of the read_only_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20816,13 +21016,13 @@ msgstr ""
#. Label of the read_by_recipient (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient"
-msgstr "Lido por destinatário"
+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 "Lido por destinatário ativado"
+msgstr ""
#: frappe/desk/doctype/note/note.js:10
msgid "Read mode"
@@ -20848,7 +21048,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20873,24 +21073,24 @@ msgstr ""
#. 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr "Receptor por campo de documento"
+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 "Receptor por função"
+msgstr ""
#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr "Parâmetro do recebedor"
+msgstr ""
#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20899,7 +21099,7 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr "Destinatário"
+msgstr ""
#. Label of the recipient_account_field (Data) field in DocType 'DocType'
#. Label of the recipient_account_field (Data) field in DocType 'Customize
@@ -20912,7 +21112,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr "Destinatário com inscrição cancelada"
+msgstr ""
#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
@@ -20920,7 +21120,7 @@ msgstr "Destinatário com inscrição cancelada"
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr "Destinatários"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/recorder/recorder.json
@@ -20941,7 +21141,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -20984,7 +21184,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr "Redirecionar URL"
+msgstr ""
#. Description of the 'Default App' (Select) field in DocType 'System Settings'
#. Description of the 'Default App' (Select) field in DocType 'User'
@@ -21007,12 +21207,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21065,7 +21265,7 @@ msgstr ""
#. Label of the reference_name (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr "Nome do Documento de Referência"
+msgstr ""
#. Label of the reference_doctype (Link) field in DocType 'Error Log'
#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
@@ -21084,7 +21284,7 @@ msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.json
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr "Nome do Documento de Referência"
+msgstr ""
#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
@@ -21195,7 +21395,7 @@ msgstr ""
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/communication/communication.json
msgid "Reference Owner"
-msgstr "Proprietário de Referência"
+msgstr ""
#. Label of the reference_report (Data) field in DocType 'Report'
#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
@@ -21204,7 +21404,7 @@ msgstr "Proprietário de Referência"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr "Relatório de referência"
+msgstr ""
#. Label of the reference_type (Link) field in DocType 'Permission Log'
#. Label of the reference_type (Link) field in DocType 'ToDo'
@@ -21216,7 +21416,7 @@ 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 "Nome de Referência"
+msgstr ""
#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
@@ -21228,12 +21428,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21248,9 +21448,9 @@ 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 "Atualizar planilha do Google"
+msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21265,7 +21465,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21276,7 +21476,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21320,12 +21520,10 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Relinked"
-msgstr "Religado"
+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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr ""
@@ -21337,7 +21535,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21348,7 +21546,7 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr "Lembrar última seleção"
+msgstr ""
#. Label of the remind_at (Datetime) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
@@ -21356,7 +21554,7 @@ msgstr "Lembrar última seleção"
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21436,9 +21634,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21466,7 +21664,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21478,17 +21676,17 @@ msgstr ""
#. Label of the repeat_on (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr "Repetir em"
+msgstr ""
#. Label of the repeat_till (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr "Repita até que"
+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 "Repetir no dia"
+msgstr ""
#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -21498,12 +21696,12 @@ 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 "Repetir no último dia do mês"
+msgstr ""
#. Label of the repeat_this_event (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr "Repita este evento"
+msgstr ""
#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
@@ -21513,7 +21711,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21576,6 +21774,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21590,10 +21789,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21613,7 +21811,7 @@ msgstr ""
#. Label of the report_description (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr "Descrição do relatório"
+msgstr ""
#: frappe/core/doctype/report/report.py:156
msgid "Report Document Error"
@@ -21628,7 +21826,7 @@ msgstr ""
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr "Filtros de relatório"
+msgstr ""
#. Label of the report_hide (Check) field in DocType 'DocField'
#. Label of the report_hide (Check) field in DocType 'Custom Field'
@@ -21637,13 +21835,13 @@ msgstr "Filtros de relatório"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr "Ocultar Relatório"
+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 "Informações do Relatório"
+msgstr ""
#. Name of a role
#: frappe/core/doctype/report/report.json
@@ -21662,7 +21860,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21696,14 +21894,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21714,7 +21908,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21726,7 +21920,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21734,12 +21928,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21762,7 +21956,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21770,7 +21964,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21794,7 +21988,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
-msgstr "Solicitar Dados"
+msgstr ""
#. Label of the request_description (Data) field in DocType 'Integration
#. Request'
@@ -21827,22 +22021,22 @@ msgstr ""
#. Label of the request_structure (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
-msgstr "Estrutura da solicitação"
+msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
#. Label of the request_url (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request URL"
-msgstr "URL do pedido"
+msgstr ""
#. Title of the request-to-delete-data Web Form
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
@@ -21858,7 +22052,7 @@ msgstr ""
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Require Trusted Certificate"
-msgstr "Exigir certificado confiável"
+msgstr ""
#. Description of the 'LDAP search path for Groups' (Data) field in DocType
#. 'LDAP Settings'
@@ -21925,7 +22119,7 @@ msgstr ""
#. Label of the reset_password_key (Data) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Reset Password Key"
-msgstr "Redefinição de senha chave"
+msgstr ""
#. Label of the reset_password_link_expiry_duration (Duration) field in DocType
#. 'System Settings'
@@ -21951,7 +22145,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -21997,7 +22191,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Response"
-msgstr "Resposta"
+msgstr ""
#. Label of the response_headers (Code) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
@@ -22009,7 +22203,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22018,7 +22212,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22029,7 +22223,7 @@ msgstr ""
#. Label of the restored (Check) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Restored"
-msgstr "Restaurado"
+msgstr ""
#: frappe/core/doctype/deleted_document/deleted_document.py:74
msgid "Restoring Deleted Document"
@@ -22038,7 +22232,12 @@ msgstr ""
#. Label of the restrict_ip (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr "Restringir IP"
+msgstr ""
+
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
@@ -22048,14 +22247,14 @@ msgstr "Restringir 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 "Restringir ao domínio"
+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 "Restringir ao domínio"
+msgstr ""
#. Description of the 'Restrict IP' (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -22067,8 +22266,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22107,7 +22306,7 @@ 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 "Revogado"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.js:92
@@ -22115,9 +22314,15 @@ msgstr "Revogado"
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22152,8 +22357,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22168,8 +22371,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22191,7 +22393,7 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr "Nome da Função"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Users Workspace
@@ -22213,7 +22415,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22221,11 +22423,9 @@ msgstr ""
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22245,9 +22445,9 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr "Função e Nível"
+msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22287,14 +22487,14 @@ msgstr ""
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles Assigned"
-msgstr "Funções Atribuídas"
+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 "Funções HTML"
+msgstr ""
#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
#. and Report'
@@ -22313,7 +22513,7 @@ msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Round Robin"
-msgstr "Robin Redondo"
+msgstr ""
#. Label of the rounding_method (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -22359,27 +22559,27 @@ msgstr ""
#. Label of the route_redirects (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Route Redirects"
-msgstr "Redirecionamentos de rota"
+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:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22400,13 +22600,13 @@ msgstr ""
#. Label of the row_name (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Row Name"
-msgstr "Nome da Linha"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:509
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22425,14 +22625,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22447,15 +22647,15 @@ msgstr ""
#. Label of the rule (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr "Regra"
+msgstr ""
#. Label of the section_break_3 (Section Break) field in DocType 'Document
#. Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr "Condições da regra"
+msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22478,18 +22678,18 @@ msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rules with higher priority number will be applied first."
-msgstr "Regras com número de prioridade mais alta serão aplicadas primeiro."
+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 "Executar trabalhos apenas diariamente se inativo por (dias)"
+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 "As tarefas agendadas somente serão executadas se a opção estiver marcada"
+msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Minutes"
@@ -22535,7 +22735,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22569,14 +22769,14 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "SSL/TLS Mode"
-msgstr "Modo SSL / TLS"
+msgstr ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
@@ -22620,7 +22820,7 @@ msgstr ""
#. Label of the sample (HTML) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr "Amostra"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -22641,22 +22841,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22669,7 +22870,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22677,7 +22878,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22695,20 +22896,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr ""
@@ -22717,11 +22918,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22771,7 +22972,7 @@ 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 "Trabalho agendado"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
@@ -22925,7 +23126,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22943,9 +23144,9 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr "Campos de Pesquisa"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -22953,7 +23154,7 @@ msgstr ""
#. Search Settings'
#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Search Priorities"
-msgstr "Prioridades de pesquisa"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132
msgid "Search Results"
@@ -22963,7 +23164,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -22980,12 +23181,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23016,7 +23217,7 @@ msgstr ""
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
msgid "Section"
-msgstr "Seção"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -23031,7 +23232,7 @@ msgstr "Seção"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Section Break"
-msgstr "Quebra de seção"
+msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:421
msgid "Section Heading"
@@ -23055,17 +23256,17 @@ msgstr ""
#. Label of the sb3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Security Settings"
-msgstr "Configurações de Segurança"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23094,12 +23295,12 @@ msgstr ""
#. Label of the seen_by_section (Section Break) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr "Visto por"
+msgstr ""
#. Label of the seen_by (Table) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr "Visto por tabela"
+msgstr ""
#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -23115,24 +23316,26 @@ msgstr "Visto por tabela"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23148,7 +23351,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23169,7 +23372,7 @@ msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Select Date Range"
-msgstr "Selecionar período"
+msgstr ""
#. Label of the doc_type (Link) field in DocType 'Web Form'
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28
@@ -23192,13 +23395,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23207,7 +23410,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23216,19 +23419,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23253,16 +23456,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23272,7 +23475,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23297,7 +23500,7 @@ msgstr ""
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr "Selecione a Transação"
+msgstr ""
#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
@@ -23308,12 +23511,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23330,11 +23527,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23360,13 +23557,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23386,7 +23583,7 @@ 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 "Selecione a etiqueta após a qual você deseja inserir um novo campo."
+msgstr ""
#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
@@ -23400,7 +23597,7 @@ msgstr ""
msgid "Select {0}"
msgstr ""
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23423,12 +23620,17 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Send After"
-msgstr "Envie Depois"
+msgstr ""
#. Label of the event (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr "Enviar Alerta"
+msgstr ""
+
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
@@ -23461,12 +23663,12 @@ msgstr ""
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Send Notification to"
-msgstr "Enviar Notificação para"
+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 "Enviar notificações para documentos seguidos por mim"
+msgstr ""
#. Label of the thread_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -23480,9 +23682,9 @@ 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 "Enviar impressão como PDF"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23490,12 +23692,12 @@ msgstr ""
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr "Enviar Notificação do Sistema"
+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"
+msgstr ""
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -23505,7 +23707,7 @@ 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 "Enviar alerta se a data corresponde valor deste campo"
+msgstr ""
#. Description of the 'Reference Datetime' (Select) field in DocType
#. 'Notification'
@@ -23516,7 +23718,7 @@ 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 "Enviar alerta se muda o valor desse campo"
+msgstr ""
#. Label of the send_reminder (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -23527,7 +23729,7 @@ msgstr ""
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send days before or after the reference date"
-msgstr "Enviar dias antes ou depois da data de referência"
+msgstr ""
#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
#. Document State'
@@ -23545,14 +23747,14 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr "Envie somente se houver quaisquer dados"
+msgstr ""
#. Label of the send_unsubscribe_message (Check) field in DocType 'Email
#. Account'
@@ -23584,7 +23786,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23637,7 +23839,7 @@ msgstr ""
#. Label of the read_receipt (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr "Enviar Confirmação de Leitura"
+msgstr ""
#. Label of the sent_to (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
@@ -23647,7 +23849,7 @@ msgstr ""
#. Label of the sent_or_received (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr "Enviados ou recebidos"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -23657,7 +23859,7 @@ msgstr ""
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Separator"
-msgstr "Separador"
+msgstr ""
#. Label of the sequence_id (Float) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -23668,7 +23870,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Series List for this Transaction"
-msgstr "Lista de séries para esta transação"
+msgstr ""
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
@@ -23678,7 +23880,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23686,9 +23888,9 @@ msgstr ""
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
-msgstr "Ação do Servidor"
+msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23696,7 +23898,7 @@ msgstr ""
#. Label of the server_ip (Data) field in DocType 'Network Printer Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Server IP"
-msgstr "IP do servidor"
+msgstr ""
#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
@@ -23715,11 +23917,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23747,16 +23953,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr ""
@@ -23797,7 +24001,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -23823,7 +24027,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23840,7 +24044,7 @@ msgstr ""
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr "Definir nova senha"
+msgstr ""
#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
@@ -23864,10 +24068,10 @@ msgstr ""
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr "Definir propriedade após o alerta"
+msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23875,7 +24079,7 @@ 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 "Definir papel para"
+msgstr ""
#: frappe/core/doctype/user/user.js:129
#: frappe/core/page/permission_manager/permission_manager.js:72
@@ -23885,14 +24089,14 @@ msgstr ""
#. Label of the value (Small Text) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr "Definir valor"
+msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -23996,8 +24200,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24006,7 +24210,7 @@ msgstr ""
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr "Lista suspensa de configurações"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -24020,11 +24224,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24032,12 +24236,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24066,13 +24270,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24080,14 +24285,14 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "Compartilhado"
+msgstr ""
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
@@ -24096,7 +24301,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr "Expedição"
+msgstr ""
#: frappe/public/js/frappe/form/templates/address_list.html:31
msgid "Shipping Address"
@@ -24105,7 +24310,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Loja"
+msgstr ""
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
@@ -24140,16 +24345,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24195,7 +24394,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24214,12 +24413,12 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Show Full Error and Allow Reporting of Issues to the Developer"
-msgstr "Mostrar erro completo e permitir relatórios de problemas para o desenvolvedor"
+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 "Mostrar formulário completo?"
+msgstr ""
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -24245,9 +24444,9 @@ 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 "Mostrar quebras de linha após seções"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24259,7 +24458,7 @@ 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 "Mostrar estatísticas percentuais"
+msgstr ""
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
@@ -24304,7 +24503,7 @@ 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 "Mostrar Seção Títulos"
+msgstr ""
#. Label of the show_sidebar (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
@@ -24325,7 +24524,7 @@ msgstr ""
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr "Mostrar Título"
+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
@@ -24367,7 +24566,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24395,12 +24594,12 @@ msgstr ""
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr "Mostrar o formulário completo em vez de um modal de entrada rápida"
+msgstr ""
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Mostrar na Seção Módulo"
+msgstr ""
#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
#. Login Key'
@@ -24411,7 +24610,7 @@ 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 "Mostrar no filtro"
+msgstr ""
#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
@@ -24437,7 +24636,7 @@ msgstr ""
#. Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr "Mostra a diferença percentual de acordo com este intervalo de tempo"
+msgstr ""
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24486,12 +24685,12 @@ msgstr ""
#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr "Itens da barra lateral"
+msgstr ""
#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr "Configurações da barra lateral"
+msgstr ""
#. Label of the section_break_17 (Section Break) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
@@ -24509,7 +24708,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24536,7 +24735,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr "Assinatura"
+msgstr ""
#: frappe/www/login.html:168
msgid "Signup Disabled"
@@ -24567,7 +24766,7 @@ msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr "Sessões simultâneas"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
@@ -24609,7 +24808,7 @@ msgstr ""
#: 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"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
@@ -24632,7 +24831,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24648,12 +24847,12 @@ msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr "Folga"
+msgstr ""
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr "Canal de folga"
+msgstr ""
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
@@ -24707,13 +24906,13 @@ 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 "Texto Pequeno"
+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 "Menor valor fracionado de moeda"
+msgstr ""
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
@@ -24747,7 +24946,7 @@ msgstr ""
#. Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr "Provedor de acesso social"
+msgstr ""
#. Label of the social_logins (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -24807,15 +25006,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24830,7 +25029,7 @@ msgstr ""
#. Label of the sort_field (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr "Ordenar por campo"
+msgstr ""
#. Label of the sort_options (Check) field in DocType 'DocField'
#. Label of the sort_options (Check) field in DocType 'Custom Field'
@@ -24844,15 +25043,15 @@ msgstr ""
#. Label of the sort_order (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr "Ordem de classificação"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24901,7 +25100,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -24940,6 +25139,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24947,6 +25147,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25014,8 +25215,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25033,7 +25234,7 @@ msgstr ""
#. Label of the start_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr "Campo de Data de Início"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:111
msgid "Start Import"
@@ -25068,7 +25269,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr "Começado"
+msgstr ""
#. Label of the started_at (Datetime) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -25082,7 +25283,7 @@ msgstr ""
#. Label of the starts_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr "Inicia em"
+msgstr ""
#. Label of the state (Data) field in DocType 'Token Cache'
#. Label of the state (Link) field in DocType 'Workflow Document State'
@@ -25106,7 +25307,7 @@ msgstr ""
#: frappe/contacts/doctype/address/address.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr "Estado / Província"
+msgstr ""
#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
#. Label of the states (Table) field in DocType 'Customize Form'
@@ -25115,12 +25316,12 @@ msgstr "Estado / Província"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr "Estados"
+msgstr ""
#. Label of the parameters (Table) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr "Parâmetros estáticos"
+msgstr ""
#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
@@ -25137,7 +25338,7 @@ 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 "Intervalo de tempo das estatísticas"
+msgstr ""
#. Label of the status (Select) field in DocType 'Auto Repeat'
#. Label of the status (Select) field in DocType 'Contact'
@@ -25187,7 +25388,7 @@ msgstr "Intervalo de tempo das estatísticas"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25210,14 +25411,14 @@ msgstr ""
#. Label of the step (Link) field in DocType 'Onboarding Step Map'
#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Step"
-msgstr "Degrau"
+msgstr ""
#. Label of the steps (Table) field in DocType 'Form Tour'
#. Label of the steps (Table) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr "Passos"
+msgstr ""
#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
@@ -25225,7 +25426,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25262,7 +25463,7 @@ msgstr ""
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr "Armazena o JSON das últimas versões conhecidas de vários aplicativos instalados. Ele é usado para mostrar notas de lançamento."
+msgstr ""
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
@@ -25289,12 +25490,12 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr "Estilo"
+msgstr ""
#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr "Configurações de Estilo"
+msgstr ""
#. Description of the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
@@ -25304,7 +25505,7 @@ msgstr ""
#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr "Folha de estilo"
+msgstr ""
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
@@ -25315,12 +25516,12 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr "Sub-domínio fornecido pelo erpnext.com"
+msgstr ""
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr "Subdomínio"
+msgstr ""
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -25339,7 +25540,7 @@ msgstr "Subdomínio"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25353,7 +25554,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25374,14 +25575,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25409,9 +25610,9 @@ 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 "Enviar após importação"
+msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25435,11 +25636,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25465,19 +25666,19 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Subsidiary"
-msgstr "Subsidiário"
+msgstr ""
#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Subtitle"
-msgstr "Subtítulo"
+msgstr ""
#. Option for the 'Icon Style' (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
@@ -25500,12 +25701,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25520,7 +25721,7 @@ msgstr ""
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr "Mensagem de sucesso"
+msgstr ""
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
@@ -25530,7 +25731,7 @@ msgstr ""
#. Label of the success_url (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr "URL de Confirmação"
+msgstr ""
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -25547,7 +25748,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25572,7 +25773,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25597,7 +25798,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25638,7 +25839,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25651,21 +25852,21 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
#. Label of the symbol (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr "Símbolo"
+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 "Sincronizar"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
@@ -25691,12 +25892,12 @@ 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 "Sincronize com o Google Agenda"
+msgstr ""
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr "Sincronizar com os contatos do Google"
+msgstr ""
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
@@ -25720,11 +25921,9 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
-msgstr "Sistema"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/system_console/system_console.json
@@ -25732,7 +25931,7 @@ msgstr "Sistema"
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25859,6 +26058,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25873,7 +26073,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25937,23 +26136,28 @@ msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr "Notificação do sistema"
+msgstr ""
#. Label of the system_page (Check) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr "Página do sistema"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+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 "Gerentes de sistema são permitidos por padrão"
+msgstr ""
#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
@@ -25965,6 +26169,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -25998,9 +26208,9 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Table Break"
-msgstr "Pausa para a mesa"
+msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26009,14 +26219,14 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
#. Label of the table_html (HTML) field in DocType 'Version'
#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr "Tabela HTML"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -26027,7 +26237,7 @@ msgstr "Tabela HTML"
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26035,11 +26245,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26059,17 +26269,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26103,7 +26313,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Heading"
-msgstr "Título da página Membros da Equipe"
+msgstr ""
#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
#. Settings'
@@ -26142,18 +26352,18 @@ msgstr ""
#. Label of the template_options (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr "Opções de modelo"
+msgstr ""
#. Label of the template_warnings (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr "Avisos do modelo"
+msgstr ""
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26187,17 +26397,17 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr "Texto"
+msgstr ""
#. Label of the text_align (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr "Alinhar Texto"
+msgstr ""
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr "Cor do texto"
+msgstr ""
#. Label of the text_content (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -26213,7 +26423,7 @@ 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 "Editor de Texto"
+msgstr ""
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
@@ -26249,7 +26459,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26301,7 +26511,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26449,7 +26667,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26461,6 +26679,42 @@ msgstr ""
msgid "The total number of user document types limit has been crossed."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 ""
@@ -26481,7 +26735,7 @@ msgstr ""
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr "Tema"
+msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
@@ -26491,18 +26745,18 @@ msgstr ""
#. Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr "Configuração do Tema"
+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 do tema"
+msgstr ""
#: frappe/workflow/doctype/workflow/workflow.js:125
msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr ""
@@ -26510,7 +26764,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26519,7 +26773,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26531,11 +26785,11 @@ msgstr ""
msgid "There is no data to be exported"
msgstr ""
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr ""
@@ -26543,7 +26797,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26559,7 +26813,7 @@ msgstr ""
msgid "There was an error saving filters"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr ""
@@ -26567,11 +26821,11 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr ""
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr ""
@@ -26596,7 +26850,7 @@ msgstr ""
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr "Esses valores serão atualizados automaticamente em transações e também serão úteis para restringir as permissões para este usuário em operações que contenham esses valores."
+msgstr ""
#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
@@ -26606,7 +26860,7 @@ msgstr ""
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr "Autenticação de Terceiros"
+msgstr ""
#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
@@ -26640,11 +26894,11 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26657,18 +26911,18 @@ 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 "Este cartão estará disponível para todos os usuários se estiver definido"
+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 "Este gráfico estará disponível para todos os usuários se estiver definido"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:212
msgid "This doctype has no orphan fields to trim"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26684,15 +26938,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26705,7 +26959,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26730,18 +26984,18 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr "Este formato é usado se o formato específico país não é encontrado"
+msgstr ""
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
msgid "This geolocation provider is not supported yet."
@@ -26753,7 +27007,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26785,7 +27039,7 @@ msgstr ""
#. 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 "Este é o número da última transação criada com este prefixo"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
@@ -26795,15 +27049,15 @@ msgstr ""
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr ""
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr ""
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26811,7 +27065,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr ""
@@ -26835,7 +27089,7 @@ msgstr ""
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr ""
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -26853,13 +27107,13 @@ msgstr ""
#. 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown in a modal after routing"
-msgstr "Isso será mostrado em um modal após o roteamento"
+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 "Isso será mostrado ao usuário em uma caixa de diálogo após o roteamento para o relatório"
+msgstr ""
#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
@@ -26879,7 +27133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr "Isso encerrará o trabalho imediatamente e pode ser perigoso, tem certeza?"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
@@ -26910,6 +27164,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26917,6 +27172,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26926,7 +27182,7 @@ msgstr ""
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time Format"
-msgstr "Formato da hora"
+msgstr ""
#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -26936,12 +27192,12 @@ msgstr ""
#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr "Séries Temporais"
+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 "Séries Temporais Baseadas em"
+msgstr ""
#. Label of the time_taken (Duration) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -26968,12 +27224,12 @@ msgstr ""
#. Label of the time_zones (Text) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time Zones"
-msgstr "Fusos horários"
+msgstr ""
#. Label of the time_format (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time format"
-msgstr "Formato da hora"
+msgstr ""
#. Label of the time_in_queries (Float) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -26984,7 +27240,7 @@ msgstr ""
#. 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 "Tempo em segundos para manter a imagem do código QR no servidor. Min: 240"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
msgid "Time series based on is required to create a dashboard chart"
@@ -26999,11 +27255,6 @@ msgstr ""
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
@@ -27028,18 +27279,18 @@ msgstr ""
#. Label of the timeline_links (Table) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Timeline Links"
-msgstr "Links da linha do tempo"
+msgstr ""
#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline Name"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
@@ -27110,7 +27361,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27126,14 +27377,14 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr "Campo Título"
+msgstr ""
#. Label of the title_prefix (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr "Prefixo do Título"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27162,7 +27413,7 @@ 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 "Até o momento do campo"
+msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:6
msgid "To Do"
@@ -27191,7 +27442,7 @@ msgstr ""
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr "Para e CC"
+msgstr ""
#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
#. Email Report'
@@ -27219,7 +27470,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -27272,35 +27523,18 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr ""
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr ""
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr "Símbolo"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/token_cache/token_cache.json
@@ -27332,7 +27566,7 @@ msgid "Tomorrow"
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr ""
@@ -27340,15 +27574,19 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -27356,7 +27594,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr "Topo"
+msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
@@ -27370,7 +27608,7 @@ msgstr ""
#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr "Itens da barra superior"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -27402,12 +27640,12 @@ msgstr ""
#. Label of the topic (Link) field in DocType 'Discussion Reply'
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr "Tópico"
+msgstr ""
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr ""
@@ -27422,7 +27660,7 @@ msgstr ""
msgid "Total Errors (last 1 day)"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr ""
@@ -27435,7 +27673,7 @@ msgstr ""
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Total Subscribers"
-msgstr "Total de Assinantes"
+msgstr ""
#. Label of the total_users (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -27480,7 +27718,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr "Rastrear Alterações"
+msgstr ""
#. Label of the track_email_status (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -27490,12 +27728,12 @@ msgstr ""
#. Label of the track_field (Data) field in DocType 'Milestone'
#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr "Trilha de corrida"
+msgstr ""
#. Label of the track_seen (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr "Marcar como visto"
+msgstr ""
#. Label of the track_steps (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -27507,7 +27745,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr "Acompanhar vistas"
+msgstr ""
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
@@ -27522,7 +27760,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27537,7 +27775,7 @@ msgstr ""
#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr "Regras de transição"
+msgstr ""
#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
@@ -27547,7 +27785,7 @@ msgstr ""
#. Label of the transitions (Table) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr "Transições"
+msgstr ""
#. Label of the translatable (Check) field in DocType 'DocField'
#. Label of the translatable (Check) field in DocType 'Custom Field'
@@ -27556,9 +27794,9 @@ msgstr "Transições"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr "Traduzível"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27569,7 +27807,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr ""
@@ -27580,7 +27818,7 @@ msgstr ""
#. Label of the translated_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr "Texto Traduzido"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/translation/translation.json
@@ -27605,9 +27843,9 @@ msgstr ""
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
-msgstr "Árvore"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:211
msgid "Tree View"
@@ -27616,7 +27854,7 @@ 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 "As estruturas de árvore são implementadas usando o Conjunto Aninhado"
+msgstr ""
#: frappe/public/js/frappe/views/treeview.js:19
msgid "Tree view is not available for {0}"
@@ -27625,7 +27863,7 @@ msgstr ""
#. Label of the method (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Trigger Method"
-msgstr "Método gatilho"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
@@ -27654,8 +27892,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27689,18 +27927,19 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication"
-msgstr "Autenticação de dois fatores"
+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 "Método de autenticação de dois fatores"
+msgstr ""
#. Label of the communication_medium (Select) field in DocType 'Communication'
#. Label of the fieldtype (Select) field in DocType 'DocField'
#. Label of the fieldtype (Select) field in DocType 'Customize Form Field'
#. Label of the type (Data) field in DocType 'Console Log'
#. Label of the type (Select) field in DocType 'Dashboard Chart'
+#. Label of the type (Select) field in DocType 'Event Notifications'
#. 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'
@@ -27714,6 +27953,7 @@ msgstr "Método de autenticação de dois fatores"
#: 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/event_notifications/event_notifications.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
@@ -27722,7 +27962,7 @@ msgstr "Método de autenticação de dois fatores"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27784,7 +28024,7 @@ msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "UNSEEN"
-msgstr "Por Ler"
+msgstr ""
#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -27816,7 +28056,7 @@ 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 para documentação ou ajuda"
+msgstr ""
#: frappe/core/doctype/file/file.py:241
msgid "URL must start with http:// or https://"
@@ -27889,7 +28129,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -27897,7 +28137,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr ""
@@ -27913,7 +28153,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27928,26 +28168,26 @@ msgstr ""
#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr "Desatribuir condição"
+msgstr ""
#: frappe/app.py:399
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr ""
@@ -27968,7 +28208,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Unique"
-msgstr "Único"
+msgstr ""
#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -28009,28 +28249,29 @@ 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 "Não lida"
+msgstr ""
#. Label of the unread_notification_sent (Check) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr "Notificação de mensagem não lida enviada"
+msgstr ""
#: frappe/utils/safe_exec.py:498
msgid "Unsafe SQL query"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Unshared"
-msgstr "Não Compartilhado"
+msgstr ""
#: frappe/email/queue.py:67
msgid "Unsubscribe"
@@ -28039,7 +28280,7 @@ msgstr ""
#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr "Método de Cancelamento de Inscrição"
+msgstr ""
#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
@@ -28056,11 +28297,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28080,7 +28321,7 @@ msgstr ""
msgid "Unzipping files..."
msgstr ""
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr ""
@@ -28088,13 +28329,13 @@ msgstr ""
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr ""
@@ -28107,13 +28348,13 @@ 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 "Atualizar registros existentes"
+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 "Atualizar Campo"
+msgstr ""
#: frappe/core/doctype/installed_applications/installed_applications.js:6
#: frappe/core/doctype/installed_applications/installed_applications.js:13
@@ -28143,12 +28384,12 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr "Atualizar Números de Séries"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Update Settings"
-msgstr "Atualizar configurações"
+msgstr ""
#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
@@ -28159,13 +28400,13 @@ msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr "Atualizar Valor"
+msgstr ""
#: frappe/utils/change_log.py:381
msgid "Update from Frappe Cloud"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr ""
@@ -28173,8 +28414,7 @@ msgstr ""
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr ""
@@ -28186,11 +28426,11 @@ msgstr ""
msgid "Updated To A New Version 🎉"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr ""
@@ -28215,11 +28455,11 @@ msgstr ""
msgid "Updating naming series options"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr ""
@@ -28227,12 +28467,12 @@ msgstr ""
msgid "Updating {0} of {1}, {2}"
msgstr ""
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28253,12 +28493,12 @@ msgstr ""
#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Dropbox"
-msgstr "Enviado para o 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 "Carregado no Google Drive"
+msgstr ""
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
@@ -28270,7 +28510,7 @@ 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 "Use codificação ASCII para senha"
+msgstr ""
#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
#. Report'
@@ -28280,6 +28520,7 @@ msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr ""
@@ -28288,7 +28529,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr "Usar IMAP"
+msgstr ""
#. Label of the use_number_format_from_currency (Check) field in DocType
#. 'System Settings'
@@ -28304,7 +28545,7 @@ msgstr ""
#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr "Usar gráfico de relatório"
+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'
@@ -28313,7 +28554,7 @@ msgstr "Usar gráfico de relatório"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr "Usar SSL"
+msgstr ""
#. Label of the use_starttls (Check) field in DocType 'Email Account'
#. Label of the use_starttls (Check) field in DocType 'Email Domain'
@@ -28327,7 +28568,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use TLS"
-msgstr "Usar TLS"
+msgstr ""
#: frappe/utils/password_strength.py:191
msgid "Use a few uncommon words together."
@@ -28351,14 +28592,14 @@ msgstr ""
msgid "Use of sub-query or function is restricted"
msgstr ""
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr ""
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr "Utilize este campo para gerar o título"
+msgstr ""
#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
#. Account'
@@ -28385,9 +28626,8 @@ msgstr ""
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28414,11 +28654,11 @@ msgstr ""
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28454,17 +28694,17 @@ msgstr ""
#: frappe/core/doctype/user_session_display/user_session_display.json
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr "Agente de usuário"
+msgstr ""
#. Label of the in_create (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr "O Usuário não pode criar"
+msgstr ""
#. Label of the read_only (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr "O Usuário não pode pesquisar"
+msgstr ""
#: frappe/public/js/frappe/desk.js:550
msgid "User Changed"
@@ -28473,7 +28713,7 @@ msgstr ""
#. Label of the defaults (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr "Padrões de Perfil"
+msgstr ""
#. Label of the user_details_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -28523,12 +28763,12 @@ 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 de Usuário"
+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 "Propriedade de ID do usuário"
+msgstr ""
#. Label of the user (Link) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
@@ -28547,14 +28787,14 @@ msgstr ""
#. Label of the user_image (Attach Image) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr "Imagem do Usuário"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/user_invitation/user_invitation.json
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr ""
@@ -28562,7 +28802,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "User Name"
-msgstr "Nome de usuário"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/user_permission/user_permission.json
@@ -28570,19 +28810,19 @@ msgid "User Permission"
msgstr ""
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr ""
@@ -28626,7 +28866,7 @@ msgstr ""
#. Label of the _user_tags (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "User Tags"
-msgstr "Etiquetas de Usuários"
+msgstr ""
#. Label of the user_type (Link) field in DocType 'User'
#. Name of a DocType
@@ -28655,7 +28895,7 @@ msgstr ""
msgid "User can login using Email id or User Name"
msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr ""
@@ -28675,7 +28915,7 @@ msgstr ""
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr "O Usuário deve sempre selecionar"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
@@ -28689,27 +28929,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr ""
@@ -28718,11 +28958,11 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr ""
@@ -28747,18 +28987,17 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr ""
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28796,7 +29035,7 @@ msgstr ""
#. Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr "Válido"
+msgstr ""
#: frappe/templates/includes/login/login.js:52
#: frappe/templates/includes/login/login.js:65
@@ -28810,7 +29049,7 @@ msgstr ""
#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Validate Field"
-msgstr "Validar Campo"
+msgstr ""
#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
#. Account'
@@ -28829,14 +29068,14 @@ msgstr ""
msgid "Validate SSL Certificate"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr ""
#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr "Validade"
+msgstr ""
#. Label of the value (Data) field in DocType 'Milestone'
#. Label of the defvalue (Text) field in DocType 'DefaultValue'
@@ -28858,7 +29097,7 @@ msgstr "Validade"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28868,7 +29107,7 @@ 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 "Valor Baseado em"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -28878,22 +29117,26 @@ msgstr ""
#. Label of the value_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value Changed"
-msgstr "Valor Alterado"
+msgstr ""
#. Label of the property_value (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr "Valor a ser definido"
+msgstr ""
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28905,7 +29148,7 @@ msgstr ""
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28928,9 +29171,15 @@ 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 "Valor para Validar"
+msgstr ""
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr ""
@@ -28947,7 +29196,7 @@ msgstr ""
msgid "Value {0} must in {1} format"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr ""
@@ -28956,11 +29205,11 @@ msgstr ""
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr ""
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr ""
@@ -28968,7 +29217,7 @@ msgstr ""
msgid "Verification Link"
msgstr ""
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr ""
@@ -28979,10 +29228,10 @@ msgstr ""
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr "Verificado"
+msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr ""
@@ -29006,7 +29255,7 @@ msgstr ""
#. Label of the video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr "URL do vídeo"
+msgstr ""
#. Label of the view_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -29018,7 +29267,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr ""
@@ -29030,7 +29279,7 @@ msgstr ""
msgid "View File"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr ""
@@ -29052,12 +29301,12 @@ msgstr ""
#. Label of the view_properties (Button) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr "Exibir Propriedades (via Personalizar Formulário)"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "View Report"
-msgstr "Ver relatório"
+msgstr ""
#. Label of the view_settings (Section Break) field in DocType 'DocType'
#. Label of the view_settings_section (Section Break) field in DocType
@@ -29065,9 +29314,9 @@ msgstr "Ver relatório"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr "Ver Definições"
+msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29076,14 +29325,11 @@ msgstr ""
msgid "View Switcher"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29099,7 +29345,7 @@ msgstr ""
msgid "View this in your browser"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr ""
@@ -29113,7 +29359,7 @@ msgstr ""
#. Label of the viewed_by (Data) field in DocType 'View Log'
#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr "Visto por"
+msgstr ""
#. Group in DocType's connections
#. Label of a Card Break in the Build Workspace
@@ -29135,7 +29381,7 @@ msgstr ""
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29151,7 +29397,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Visit"
-msgstr "Visita"
+msgstr ""
#: frappe/desk/doctype/desktop_settings/desktop_settings.js:6
msgid "Visit Desktop"
@@ -29183,7 +29429,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29192,7 +29438,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr ""
@@ -29259,7 +29505,7 @@ 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 "Campos de formulário Web"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
@@ -29276,7 +29522,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr ""
@@ -29373,7 +29619,7 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29428,7 +29674,7 @@ msgstr ""
msgid "Website Search Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr ""
@@ -29480,7 +29726,7 @@ 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 "Imagem do Tema do Site"
+msgstr ""
#. Label of the website_theme_image_link (Code) field in DocType 'Website
#. Settings'
@@ -29493,6 +29739,11 @@ msgstr ""
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29527,7 +29778,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 "Dias da Semana"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -29556,7 +29807,7 @@ msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Weekly Long"
-msgstr "Semanalmente Longo"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
@@ -29580,15 +29831,15 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr ""
@@ -29610,10 +29861,6 @@ msgstr ""
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29631,7 +29878,7 @@ msgstr ""
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr ""
@@ -29706,7 +29953,7 @@ msgstr ""
#. Master'
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr "Nome da Ação do Fluxo de Trabalho"
+msgstr ""
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
@@ -29717,7 +29964,7 @@ msgstr ""
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr "A ação do fluxo de trabalho não é criada para estados opcionais"
+msgstr ""
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.js:25
@@ -29752,10 +29999,14 @@ msgstr ""
msgid "Workflow Document State"
msgstr ""
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr "Nome do Fluxo de Trabalho"
+msgstr ""
#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
@@ -29769,11 +30020,11 @@ msgstr ""
msgid "Workflow State Field"
msgstr ""
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr ""
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr ""
@@ -29781,7 +30032,7 @@ msgstr ""
msgid "Workflow States Don't Exist"
msgstr ""
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr ""
@@ -29816,18 +30067,15 @@ msgstr ""
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29854,7 +30102,6 @@ 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 ""
@@ -29868,27 +30115,15 @@ msgstr ""
msgid "Workspace Quick List"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr ""
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr ""
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -29898,13 +30133,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr ""
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr ""
@@ -29933,11 +30162,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
-msgstr "Escrever"
+msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr ""
@@ -29948,21 +30178,21 @@ msgstr ""
#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "X Field"
-msgstr "Campo X"
+msgstr ""
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Y Axis"
-msgstr "Eixo Y"
+msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:496
msgid "Y Axis Fields"
@@ -29970,7 +30200,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr ""
@@ -30018,10 +30248,14 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30030,10 +30264,10 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -30069,7 +30303,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30077,7 +30311,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30085,11 +30319,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30112,7 +30346,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -30120,10 +30354,14 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr ""
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -30140,7 +30378,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30148,7 +30386,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -30161,7 +30399,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr ""
@@ -30185,10 +30423,6 @@ msgstr ""
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
@@ -30243,7 +30477,7 @@ msgstr ""
msgid "You can try changing the filters of your report."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr ""
@@ -30273,6 +30507,10 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -30299,7 +30537,6 @@ msgid "You changed {0} to {1}"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr ""
@@ -30308,11 +30545,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
@@ -30324,15 +30557,19 @@ msgstr ""
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
@@ -30368,7 +30605,7 @@ msgstr ""
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
@@ -30388,7 +30625,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30397,7 +30634,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr ""
@@ -30413,12 +30649,12 @@ msgstr ""
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr ""
@@ -30426,7 +30662,7 @@ msgstr ""
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr ""
@@ -30458,7 +30694,7 @@ msgstr ""
msgid "You need to have \"Share\" permission"
msgstr ""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr ""
@@ -30478,7 +30714,7 @@ msgstr ""
msgid "You need write permission on {0} {1} to rename"
msgstr ""
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
@@ -30525,7 +30761,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30602,7 +30838,7 @@ msgstr ""
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr ""
@@ -30644,7 +30880,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30660,13 +30896,13 @@ 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 "Zero significa enviar registros atualizados a qualquer momento"
+msgstr ""
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:363
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30685,7 +30921,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -30697,7 +30933,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr "azul"
+msgstr ""
#: frappe/public/js/frappe/form/workflow.js:35
msgid "by Role"
@@ -30708,7 +30944,7 @@ msgstr ""
msgid "cProfile Output"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr ""
@@ -30724,7 +30960,9 @@ msgid "canceled"
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30748,7 +30986,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30781,7 +31019,7 @@ msgstr ""
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd/mm/yyyy"
-msgstr "dd/mm/aaaa"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
@@ -30806,7 +31044,7 @@ msgstr ""
msgid "descending"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr ""
@@ -30816,7 +31054,7 @@ msgstr ""
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr ""
@@ -30825,7 +31063,7 @@ msgstr ""
#: 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 "ex: pop.gmail.com / imap.gmail.com"
+msgstr ""
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
@@ -30838,7 +31076,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr "ex: smtp.gmail.com"
+msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
@@ -30858,12 +31096,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr ""
@@ -30907,7 +31149,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "green"
-msgstr "verde"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -30919,19 +31161,19 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr ""
#. Label of the icon (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr "ícone"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -30939,6 +31181,20 @@ msgstr "ícone"
msgid "import"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -30978,16 +31234,11 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr ""
@@ -31004,24 +31255,24 @@ msgstr ""
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm/dd/yyyy"
-msgstr "mm/dd/aaaa"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr ""
#. Label of the no_failed (Int) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr "tentativas não falharam"
+msgstr ""
#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
@@ -31054,7 +31305,7 @@ msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_change"
-msgstr "em mudança"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
@@ -31076,7 +31327,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr ""
@@ -31084,7 +31335,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "orange"
-msgstr "laranja"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -31101,7 +31352,7 @@ msgstr ""
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "print"
-msgstr "imprimir"
+msgstr ""
#. Label of the processlist (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
@@ -31111,7 +31362,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr "roxo"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
@@ -31127,7 +31378,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr "vermelho"
+msgstr ""
#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
@@ -31142,14 +31393,14 @@ msgstr ""
#. Label of the response (HTML) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr "resposta"
+msgstr ""
#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -31175,7 +31426,7 @@ msgstr ""
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr "ação"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
@@ -31233,11 +31484,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr ""
@@ -31335,11 +31586,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31357,7 +31610,7 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr "amarelo"
+msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
@@ -31368,18 +31621,18 @@ msgstr ""
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "yyyy-mm-dd"
-msgstr "dd/mm/yyyy"
+msgstr ""
#: frappe/desk/doctype/event/event.js:87
#: frappe/public/js/frappe/form/footer/form_timeline.js:547
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31396,8 +31649,8 @@ msgstr ""
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31410,13 +31663,13 @@ msgid "{0} Chart"
msgstr ""
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31450,11 +31703,11 @@ msgstr ""
msgid "{0} Map"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31462,7 +31715,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr ""
@@ -31475,11 +31728,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr ""
@@ -31541,7 +31794,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31570,16 +31823,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr ""
@@ -31596,11 +31852,19 @@ msgstr ""
msgid "{0} days ago"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
@@ -31625,7 +31889,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31646,7 +31910,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr ""
@@ -31654,7 +31922,15 @@ msgstr ""
msgid "{0} is a not a valid zip file"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr ""
@@ -31662,6 +31938,15 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31671,22 +31956,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr ""
@@ -31699,10 +31998,14 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31719,12 +32022,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31732,23 +32035,23 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr ""
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31764,6 +32067,11 @@ msgstr ""
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr ""
@@ -31772,10 +32080,12 @@ msgstr ""
msgid "{0} is not like {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr ""
@@ -31784,36 +32094,50 @@ msgstr ""
msgid "{0} is now default print format for {1} doctype"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr ""
@@ -31841,35 +32165,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31886,11 +32210,11 @@ msgid "{0} not allowed to be renamed"
msgstr ""
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31919,7 +32243,7 @@ msgstr ""
msgid "{0} records deleted"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr ""
@@ -31944,7 +32268,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} linha #{1}:"
@@ -31958,7 +32282,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr ""
@@ -31966,7 +32290,7 @@ msgstr ""
msgid "{0} self assigned this task: {1}"
msgstr ""
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr ""
@@ -32034,7 +32358,7 @@ msgstr ""
msgid "{0} weeks ago"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32046,7 +32370,7 @@ msgstr ""
msgid "{0} years ago"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr ""
@@ -32054,11 +32378,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32070,11 +32394,11 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr ""
@@ -32082,87 +32406,59 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr ""
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr ""
@@ -32170,15 +32466,59 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32191,15 +32531,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr ""
@@ -32219,11 +32559,11 @@ msgstr ""
msgid "{count} rows selected"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr ""
diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po
index 7bed58bfa8..14fb0b4197 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2026-01-03 23:05\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "«Родитель» означает родительскую табл
msgid "\"Team Members\" or \"Management\""
msgstr "\"Члены команды\" или \"Руководство\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "Поле \"amended_from\" должно присутствовать для внесения изменений."
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. и соавторы"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr "'*' допускается только в функциях SQL {0}"
@@ -74,7 +74,7 @@ msgstr "'*' допускается только в функциях SQL {0}"
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "'В Глобальном Поиске' не доступно для поля {0} типа {1}"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "'В Глобальном Поиске' не доступно для поля {0} в строке {1}"
@@ -90,19 +90,19 @@ msgstr "'В Представлении Списка' не доступно дл
msgid "'Recipients' not specified"
msgstr "'Получатели' не указаны"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "«{0}» не является допустимым IBAN"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' не является допустимым URL"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' не разрешено для типа {1} в строке {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Обязательный)"
@@ -148,7 +148,7 @@ msgstr "0 - слишком легко угадывается: рискованн
msgid "0 is highest"
msgstr "0 - самый высокий"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Истина и 0 = Ложь"
@@ -167,7 +167,7 @@ msgstr "1 день"
msgid "1 Google Calendar Event synced."
msgstr "Синхронизировано 1 событие Google Календаря."
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Отчёт"
@@ -198,7 +198,7 @@ msgstr "1 месяц назад"
msgid "1 of 2"
msgstr "1 из 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 запись будет экспортирована"
@@ -782,7 +782,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "Имя DocType должно начинаться с буквы и может состоять только из букв, цифр, пробелов, подчеркиваний и дефисов"
@@ -796,7 +796,7 @@ msgstr "Экземпляр Frappe Framework может функциониров
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "Ссылка для загрузки с вашими данными будет отправлена на адрес электронной почты, связанный с вашей учетной записью."
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "Поле с именем {0} уже существует в {1}"
@@ -1117,7 +1117,7 @@ msgstr "Действие / Путь"
msgid "Action Complete"
msgstr "Действие завершено"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Действие не выполнено"
@@ -1166,13 +1166,13 @@ msgstr "Действие {0} не удалось на {1} {2}. Просмотр
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Действия"
@@ -1229,20 +1229,20 @@ msgstr "Активность"
msgid "Activity Log"
msgstr "Логи активности"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Добавить"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Добавить / Удалить столбцы"
@@ -1250,11 +1250,11 @@ msgstr "Добавить / Удалить столбцы"
msgid "Add / Update"
msgstr "Добавить / Обновить"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Добавить новое правило"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Добавить вложение"
@@ -1274,11 +1274,15 @@ msgstr "Добавить границу внизу"
msgid "Add Border at Top"
msgstr "Добавить границу сверху"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Добавить карточку на дашборд"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Добавить диаграмму на панель инструментов"
@@ -1287,8 +1291,8 @@ msgid "Add Child"
msgstr "Добавить потомка"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1332,11 +1336,7 @@ msgstr "Добавить группу"
msgid "Add Indexes"
msgstr "Добавить индексы"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Добавить несколько"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Добавить новое правило прав доступа"
@@ -1349,17 +1349,13 @@ msgstr "Добавить участников"
msgid "Add Query Parameters"
msgstr "Добавить параметры запроса"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Добавить роли"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr "Добавить строку"
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Добавить подпись"
@@ -1378,16 +1374,16 @@ msgstr "Добавить место вверху"
msgid "Add Subscribers"
msgstr "Добавить подписчиков"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Добавить теги"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Добавить теги"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Добавить шаблон"
@@ -1437,19 +1433,19 @@ msgstr "Добавить комментарий"
msgid "Add a new section"
msgstr "Добавить новый раздел"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Добавить строку над текущей строкой"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Добавить строку внизу"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Добавить строку вверху"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Добавить строку под текущей строкой"
@@ -1467,6 +1463,10 @@ msgstr "Добавить колонку"
msgid "Add field"
msgstr "Добавить поле"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1480,6 +1480,10 @@ msgstr "Добавьте цифры или специальные символы
msgid "Add page break"
msgstr "Добавить разрыв страницы"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Добавить скрипт для дочерней таблицы"
@@ -1498,7 +1502,7 @@ msgid "Add tab"
msgstr "Добавить вкладку"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Добавить в дашборд"
@@ -1538,8 +1542,8 @@ msgstr "Добавлен HTML в <главном> разделе веб-с
msgid "Added default log doctypes: {}"
msgstr "Добавлены документы лога: {}"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Добавлено {0} ({1})"
@@ -1629,7 +1633,7 @@ msgstr "Добавить пользовательский скрипт в DocTyp
msgid "Adds a custom field to a DocType"
msgstr "Добавить пользовательское поле в тип DocType"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Администрирование"
@@ -1656,15 +1660,15 @@ msgstr "Администрирование"
msgid "Administrator"
msgstr "Администратор"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Администратор вошел в систему"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Администратор получил доступ к {0} на {1} через IP-адрес {2}."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "Администратор не может следить"
@@ -1681,8 +1685,8 @@ msgstr "Продвинутый"
msgid "Advanced Control"
msgstr "Продвинутое управление"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Расширенный поиск"
@@ -1763,7 +1767,7 @@ msgstr "Для создания диаграммы дашборда необхо
msgid "Alert"
msgstr "Предупреждение"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr "Псевдоним должен быть строкой"
@@ -1787,6 +1791,15 @@ msgstr "Выравнивание вправо"
msgid "Align Value"
msgstr "Выровнять значение"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1819,7 +1832,7 @@ msgstr "Все"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Весь день"
@@ -1831,11 +1844,11 @@ msgstr "Все изображения, прикрепленные к слайд-
msgid "All Records"
msgstr "Все записи"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "Все заявки"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "Все настройки будут удалены. Пожалуйста, подтвердите."
@@ -2147,7 +2160,7 @@ msgstr "Разрешённые роли"
msgid "Allowed embedding domains"
msgstr "Допустимые области встраивания"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Разрешаем DocType, DocType. Будьте осторожны!"
@@ -2181,13 +2194,61 @@ msgstr "Позволяет клиентам просматривать его к
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr "Позволяет отображать URL-адрес базы ключей входа через социальную сеть в качестве сервера авторизации."
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Уже зарегистрирован"
@@ -2282,7 +2343,7 @@ msgstr "Внесение дополнений"
msgid "Amendment Naming Override"
msgstr "Переопределение наименования дополнений"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Дополнение не разрешено"
@@ -2295,7 +2356,7 @@ msgstr "Обновлены правила наименования дополн
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr "На ваш адрес электронной почты отправлено письмо для подтверждения вашего запроса. Пожалуйста, подтвердите запрос, чтобы завершить процесс."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Произошла ошибка при установке настроек сеанса по умолчанию"
@@ -2312,7 +2373,7 @@ 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"
@@ -2346,7 +2407,7 @@ msgstr "Матрица анонимизации"
msgid "Anonymous responses"
msgstr "Анонимные ответы"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "Другая транзакция блокирует текущую. Повторите попытку через несколько секунд."
@@ -2359,7 +2420,7 @@ msgstr "Существует другой {0} с именем {1} , выбери
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr "Можно использовать любые языки принтеров, основанные на строках. Написание необработанных команд требует знания родного языка принтера, предоставляемого производителем принтера. Пожалуйста, обратитесь к руководству разработчика, предоставленному производителем принтера, чтобы узнать, как писать их родные команды. Эти команды отображаются на стороне сервера с помощью языка шаблонов Jinja."
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr "Помимо системного менеджера, роли с правом «Установить разрешения пользователей» могут устанавливать разрешения для других пользователей для этого типа документа."
@@ -2409,11 +2470,11 @@ msgstr "Название приложения"
msgid "App Name (Client Name)"
msgstr "Имя приложения (имя клиента)"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "Приложение не найдено для модуля: {0}"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "Приложение {0} не установлено"
@@ -2487,7 +2548,7 @@ msgstr "Применяется к (DocType)"
msgid "Apply"
msgstr "Применить"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Применить правило назначения"
@@ -2496,6 +2557,10 @@ msgstr "Применить правило назначения"
msgid "Apply Filters"
msgstr "Применить"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2535,7 +2600,7 @@ msgstr "Применить это правило, если пользовате
msgid "Apply to all Documents Types"
msgstr "Применить ко всем типам документов"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Применение: {0}"
@@ -2543,18 +2608,11 @@ msgstr "Применение: {0}"
msgid "Approval Required"
msgstr "Необходимо согласование"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Приложения"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr "Приложения с поиском"
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2577,16 +2635,16 @@ msgstr "Архивные колонки"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Вы уверены, что хотите отменить приглашение?"
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr "Вы уверены, что хотите очистить задания?"
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Вы уверены, что хотите удалить все строки?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Вы уверены, что хотите удалить вложение?"
@@ -2605,19 +2663,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr "Вы уверены, что хотите удалить вкладку? Все разделы вместе с полями на вкладке будут перемещены на предыдущую вкладку."
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr "Вы уверены, что хотите удалить эту запись?"
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr "Вы уверены, что хотите отменить изменения?"
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "Вы уверены, что хотите создать новый отчет?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Вы уверены, что хотите объединить {0} с {1}?"
@@ -2637,7 +2695,7 @@ msgstr "Вы уверены, что хотите повторно связать
msgid "Are you sure you want to remove all failed jobs?"
msgstr "Вы уверены, что хотите удалить все неудачные задания?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "Вы уверены, что хотите удалить фильтр {0}?"
@@ -2686,7 +2744,7 @@ msgstr "По вашему запросу ваш аккаунт и данные
msgid "Ask"
msgstr "Спросить"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Назначать"
@@ -2699,7 +2757,7 @@ msgstr "Условия назначения"
msgid "Assign To"
msgstr "Назначить на"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Назначить на"
@@ -2712,7 +2770,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:367
msgid "Assign a user"
@@ -2737,7 +2795,7 @@ 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
@@ -2747,9 +2805,9 @@ 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/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2778,13 +2836,13 @@ 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 the assignment_rule (Link) field in DocType 'ToDo'
@@ -2811,7 +2869,7 @@ msgstr "Правило назначения не разрешено для ти
#. '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}"
@@ -2838,7 +2896,7 @@ msgstr "Задания"
msgid "Asynchronous"
msgstr "Асинхронный"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "В сетке должен быть отображен хотя бы один столбец."
@@ -2863,7 +2921,7 @@ msgstr "По крайней мере одно поле типа родитель
msgid "Attach"
msgstr "Прикреплять"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Прикрепить документ Печать"
@@ -2883,17 +2941,17 @@ 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 ""
#: frappe/public/js/frappe/file_uploader/WebLink.vue:10
msgid "Attach a web link"
@@ -2906,22 +2964,22 @@ msgstr "Прикрепите файлы/URL-адреса и добавьте в
#. Label of the attached_file (Code) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attached File"
-msgstr "Прикрепленный файл"
+msgstr ""
#. Label of the attached_to_doctype (Link) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To DocType"
-msgstr "Прикреплено к DocType"
+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:153
msgid "Attached To Name must be a string or an integer"
@@ -2930,14 +2988,14 @@ msgstr "Имя, прикрепленное к имени, должно быть
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment"
-msgstr "Вложение"
+msgstr ""
#. Label of the attachment_limit (Int) field in DocType 'Email Account'
#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Attachment Limit (MB)"
-msgstr "Лимит вложений (МБ)"
+msgstr ""
#: frappe/core/doctype/file/file.py:348
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
@@ -2947,12 +3005,12 @@ msgstr "Достигнут лимит вложений"
#. Label of the attachment_link (HTML) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attachment Link"
-msgstr "Ссылка на вложение"
+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 column_break_25 (Section Break) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -2961,19 +3019,26 @@ msgstr "Настройки вложений"
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Приложения"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "Попытка подключения к QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "Попытка запуска QZ Tray..."
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "Авторство"
@@ -2991,7 +3056,7 @@ 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 ""
#: frappe/integrations/doctype/social_login_key/social_login_key.py:96
msgid "Auth URL data should be valid JSON"
@@ -3152,13 +3217,13 @@ msgstr "Автоповтор не удался для {0}"
#. Label of the auto_reply (Section Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply"
-msgstr "Автоответчик"
+msgstr ""
#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply Message"
-msgstr "Сообщение автоответчика"
+msgstr ""
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
@@ -3167,27 +3232,27 @@ 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:242
msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
@@ -3200,12 +3265,12 @@ msgstr "Автоматическое повторение не удалось.
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Autocomplete"
-msgstr "Автозаполнение"
+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
@@ -3216,7 +3281,7 @@ msgstr "Автоматизируйте процессы и расширяйте
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Automated Message"
-msgstr "Автоматическое сообщение"
+msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -3248,7 +3313,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 ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
@@ -3283,12 +3348,12 @@ msgstr "Избегайте годов, которые связаны с вами
#. Label of the awaiting_password (Check) field in DocType 'User Email'
#: frappe/core/doctype/user_email/user_email.json
msgid "Awaiting Password"
-msgstr "Ожидание пароля"
+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"
@@ -3298,11 +3363,6 @@ msgstr "Великолепная работа"
msgid "Awesome, now try making an entry yourself"
msgstr "Отлично, теперь попробуйте сделать запись сами"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr "Awesomebar"
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3311,42 +3371,42 @@ msgstr "B"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B0"
-msgstr "B0"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B1"
-msgstr "B1"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B10"
-msgstr "B10"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B2"
-msgstr "B2"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B3"
-msgstr "B3"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B4"
-msgstr "B4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B5"
-msgstr "B5"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B6"
-msgstr "B6"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -3408,17 +3468,12 @@ msgstr "Фоновый цвет"
msgid "Background Image"
msgstr "Фоновое изображение"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Фоновые задания"
@@ -3531,8 +3586,8 @@ msgstr "Базовый URL"
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "На основании"
@@ -3556,6 +3611,8 @@ msgstr "Базовый"
msgid "Basic Info"
msgstr "Основная информация"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3625,7 +3682,7 @@ msgstr "Начинается с"
msgid "Beta"
msgstr "Бета"
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "Лучше добавить еще несколько букв или другое слово"
@@ -3694,7 +3751,7 @@ 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"
@@ -3709,7 +3766,7 @@ msgstr "Требуется логин и пароль"
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
msgid "Bottom"
-msgstr "Дно"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -3717,13 +3774,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'
@@ -3731,12 +3788,12 @@ 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
msgid "Bounced"
-msgstr "Отскок"
+msgstr ""
#. Label of the brand (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -3746,24 +3803,17 @@ msgstr "Бренд"
#. Label of the brand_html (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand HTML"
-msgstr "Бренд HTML"
+msgstr ""
#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand Image"
-msgstr "Изображение бренда"
+msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
-msgstr "Фирменный логотип"
-
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr "Логотип бренда с поиском"
+msgstr ""
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -3777,7 +3827,7 @@ msgstr "Бренд - это то, что отображается в левом
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Breadcrumbs"
-msgstr "Панировочные сухари"
+msgstr ""
#. Label of the browser (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -3788,7 +3838,7 @@ msgstr "Браузер"
#. Label of the browser_version (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Browser Version"
-msgstr "Версия браузера"
+msgstr ""
#: frappe/public/js/frappe/desk.js:19
msgid "Browser not supported"
@@ -3798,7 +3848,7 @@ msgstr "Браузер не поддерживается"
#. 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
@@ -3826,7 +3876,7 @@ msgstr "Построено на {0}"
#. Label of the bulk_actions (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Bulk Actions"
-msgstr "Массовые действия"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:142
msgid "Bulk Delete"
@@ -3836,7 +3886,7 @@ msgstr "Массовое удаление"
msgid "Bulk Edit"
msgstr "Массовое редактирование"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Массовое редактирование {0}"
@@ -3857,7 +3907,7 @@ msgstr "Массовый экспорт PDF"
msgid "Bulk Update"
msgstr "Массовое обновление"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr "Массовое утверждение поддерживает только до 500 документов."
@@ -3869,7 +3919,7 @@ msgstr "Массовая операция добавлена в фоновый
msgid "Bulk operations only support up to 500 documents."
msgstr "Массовые операции поддерживают только до 500 документов."
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr "Массовая {0} добавлена в фоновый режим."
@@ -3894,24 +3944,24 @@ msgstr "Цвет кнопки"
#. Label of the button_gradients (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Gradients"
-msgstr "Градиенты кнопок"
+msgstr ""
#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Rounded Corners"
-msgstr "Пуговицы с закругленными углами"
+msgstr ""
#. Label of the button_shadows (Check) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Shadows"
-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 \"Naming Series\" field"
-msgstr "По полю \"Серия названий\""
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:111
#: frappe/website/doctype/web_page/web_page.js:118
@@ -3923,20 +3973,20 @@ 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'
#: frappe/core/doctype/user/user.json
msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
-msgstr "Обход проверки ограниченного IP-адреса при включенной двухфакторной аутентификации"
+msgstr ""
#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
#. 'System Settings'
@@ -4018,7 +4068,7 @@ msgstr "Кэш"
msgid "Cache Cleared"
msgstr "Кэш очищен"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Рассчитать"
@@ -4049,31 +4099,31 @@ 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 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
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Камера"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4083,13 +4133,13 @@ msgstr "Кампания"
#. Campaign'
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Campaign Description (Optional)"
-msgstr "Описание кампании (необязательно)"
+msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr "Невозможно переименовать, так как столбец {0} уже присутствует в DocType."
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr "Изменить правило именования «Автоинкремент» можно только при отсутствии данных в DocType"
@@ -4099,7 +4149,7 @@ msgstr "Изменить правило именования «Автоинкр
msgid "Can only list down the document types which has been linked to the User document type."
msgstr "Можно перечислить только те типы документов, которые были связаны с типом документа пользователя."
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr "Невозможно подписаться, так как изменения не отслеживаются."
@@ -4121,7 +4171,7 @@ msgstr "Невозможно переименовать {0} в {1} , так ка
msgid "Cancel"
msgstr "Отмена"
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Отмена"
@@ -4131,11 +4181,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Отмена"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "Отменить все"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "Отменить все документы"
@@ -4147,7 +4197,7 @@ msgstr "Отменить импорт"
msgid "Cancel Prepared Report"
msgstr "Отменить подготовленный отчет"
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Отменить {0} документов?"
@@ -4180,7 +4230,7 @@ msgstr "Отменяется"
msgid "Cancelling documents"
msgstr "Отменяются документы"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "Отменяется {0}"
@@ -4188,7 +4238,7 @@ msgstr "Отменяется {0}"
msgid "Cannot Download Report due to insufficient permissions"
msgstr "Невозможно загрузить отчет из-за недостаточных прав доступа"
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr "Невозможно получить значения"
@@ -4196,7 +4246,7 @@ msgstr "Невозможно получить значения"
msgid "Cannot Remove"
msgstr "Невозможно удалить"
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr "Невозможно обновить после отправки"
@@ -4216,11 +4266,11 @@ msgstr "Невозможно отменить перед отправкой. С
msgid "Cannot cancel {0}."
msgstr "Невозможно отменить {0}."
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Невозможно изменить статус документа с 0 (Черновик) на 2 (Отменен)"
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Невозможно изменить статус документа с 1 (Отправлено) на 0 (Черновик)"
@@ -4232,7 +4282,7 @@ msgstr "Невозможно изменить состояние отменен
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "Невозможно изменить состояние отмененного документа. Строка перехода {0}"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "Невозможно изменить значение с/на «Автоинкремент» в именовании в форме настройки"
@@ -4240,10 +4290,14 @@ msgstr "Невозможно изменить значение с/на «Авт
msgid "Cannot create a {0} against a child document: {1}"
msgstr "Невозможно создать {0} для дочернего документа: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "Невозможно создать личное рабочее пространство других пользователей"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "Не удается удалить папки \"Дом\" и \"Вложения\""
@@ -4252,15 +4306,15 @@ msgstr "Не удается удалить папки \"Дом\" и \"Вложе
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Невозможно удалить или отменить, так как {0} {1} связан с {2} {3} {4}"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "Невозможно удалить стандартное действие. Вы можете скрыть его, если хотите"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "Невозможно удалить стандартное состояние документа."
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "Невозможно удалить стандартное поле {0}. Вместо этого вы можете скрыть его."
@@ -4271,11 +4325,11 @@ msgstr "Невозможно удалить стандартное поле {0}. You can hide it instead."
msgstr "Невозможно удалить сгенерированное системой поле {0}. Вместо этого Вы можете скрыть его."
@@ -4303,7 +4357,7 @@ msgstr "Невозможно редактировать стандартные
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Невозможно редактировать стандартный отчет. Пожалуйста, продублируйте и создайте новый отчет"
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "Невозможно редактировать отмененный документ"
@@ -4316,7 +4370,7 @@ msgstr "Невозможно редактировать фильтры для с
msgid "Cannot edit filters for standard number cards"
msgstr "Невозможно редактировать фильтры для стандартных числовых карточек"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "Невозможно редактировать стандартные поля"
@@ -4332,15 +4386,15 @@ msgstr "Файл {} не найден на диске"
msgid "Cannot get file contents of a Folder"
msgstr "Невозможно получить содержимое папки"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Невозможно сопоставить несколько принтеров с одним форматом печати."
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr "Невозможно импортировать таблицу, содержащую более 5000 строк."
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "Невозможно связать отмененный документ: {0}"
@@ -4352,7 +4406,7 @@ msgstr "Невозможно выполнить сопоставление, по
msgid "Cannot match column {0} with any field"
msgstr "Невозможно сопоставить столбец {0} с каким-либо полем"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "Невозможно переместить строку"
@@ -4377,7 +4431,7 @@ msgid "Cannot submit {0}."
msgstr "Невозможно отправить {0}."
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "Невозможно обновить {0}"
@@ -4397,7 +4451,7 @@ msgstr "Невозможно {0} {1}."
msgid "Capitalization doesn't help very much."
msgstr "Использование заглавных букв не очень помогает."
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "Захват"
@@ -4411,7 +4465,7 @@ msgstr "Карта"
msgid "Card Break"
msgstr "Разрыв карты"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "Название карты"
@@ -4440,17 +4494,19 @@ msgstr "Описание категории"
msgid "Category Name"
msgstr "Название категории"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr "По центру"
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr "Некоторые документы, такие как счет-фактура, не должны изменяться после того, как они станут окончательными. Финальное состояние таких документов называется «Отправлено». Вы можете ограничить, какие роли могут «Отправить»."
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4539,7 +4595,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Имя графика"
@@ -4604,6 +4660,12 @@ msgstr "Отметьте столбцы, чтобы выбрать их, пер
msgid "Check the Error Log for more information: {0}"
msgstr "Для получения дополнительной информации проверьте журнал ошибок: {0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr "Установите этот флажок, если вы не хотите, чтобы пользователи регистрировали учетную запись на вашем сайте. Пользователи не получат доступ к рабочему столу, если вы явно не предоставите его."
@@ -4655,7 +4717,7 @@ msgstr "Дочерний тип документа"
msgid "Child Item"
msgstr "Дочерний элемент"
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr "Дочерняя таблица {0} для поля {1} должна быть виртуальной"
@@ -4665,7 +4727,7 @@ msgstr "Дочерняя таблица {0} для поля {1} должна б
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Дочерние таблицы отображаются в виде таблицы в других типах документов"
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "Поля дочерних запросов для '{0}' должны быть списком или кортежем."
@@ -4673,7 +4735,7 @@ msgstr "Поля дочерних запросов для '{0}' должны б
msgid "Choose Existing Card or create New Card"
msgstr "Выберите существующую карточку или создайте новую"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "Выберите блок или продолжайте печатать"
@@ -4693,10 +4755,6 @@ msgstr "Выбрать иконку"
msgid "Choose authentication method to be used by all users"
msgstr "Выберите метод аутентификации для всех пользователей"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr "Chromium не загружен. Сначала запустите установку."
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4713,11 +4771,11 @@ msgstr "Город"
msgid "Clear"
msgstr "Очистить"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "Очистить и добавить шаблон"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "Очистить и добавить шаблон"
@@ -4725,7 +4783,7 @@ msgstr "Очистить и добавить шаблон"
msgid "Clear All"
msgstr "Очистить всё"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Очистить назначение"
@@ -4751,7 +4809,7 @@ msgstr "Очистить логи через (дней)"
msgid "Clear User Permissions"
msgstr "Очистить разрешения пользователя"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "Очистить сообщение и добавить шаблон письма"
@@ -4819,7 +4877,7 @@ msgstr "Нажмите, чтобы установить динамические
msgid "Click to Set Filters"
msgstr "Нажмите, чтобы установить фильтры"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "Нажмите, чтобы отсортировать по {0}"
@@ -4833,12 +4891,12 @@ msgstr "Перейдите по ссылке"
#: 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 ""
#. Label of the sb_client_credentials_section (Section Break) field in DocType
#. 'Connected App'
@@ -4847,7 +4905,7 @@ msgstr "Код клиента"
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Credentials"
-msgstr "Учетные данные клиента"
+msgstr ""
#. Label of the client_id (Data) field in DocType 'Google Settings'
#. Label of the client_id (Data) field in DocType 'OAuth Client'
@@ -4856,18 +4914,18 @@ msgstr "Учетные данные клиента"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
-msgstr "Идентификатор клиента"
+msgstr ""
#. Label of the client_id (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Client Id"
-msgstr "Идентификатор клиента"
+msgstr ""
#. Label of the client_information (Section Break) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "Информация о клиенте"
+msgstr ""
#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
#. Client'
@@ -4894,7 +4952,7 @@ msgstr "Клиентский скрипт"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
-msgstr "Секрет клиента"
+msgstr ""
#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
#. Client'
@@ -4916,7 +4974,7 @@ 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"
-msgstr "URL-адреса клиентов"
+msgstr ""
#. Label of the client_script (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -4927,7 +4985,7 @@ msgstr "Клиентский скрипт"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Закрыть"
@@ -4935,9 +4993,9 @@ msgstr "Закрыть"
#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Close Condition"
-msgstr "Близкое состояние"
+msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr "Закрыть свойства"
@@ -4968,13 +5026,13 @@ msgstr "Cmd+Enter, чтобы добавить комментарий"
#: frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Code"
-msgstr "Код"
+msgstr ""
#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
#. Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code Challenge"
-msgstr "Кодовый вызов"
+msgstr ""
#. Label of the code_editor_type (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -4985,7 +5043,7 @@ msgstr "Тип редактора кода"
#. Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code challenge method"
-msgstr "Метод вызова кода"
+msgstr ""
#: frappe/public/js/frappe/form/form_tour.js:276
#: frappe/public/js/frappe/ui/sidebar/sidebar.html:44
@@ -4993,12 +5051,12 @@ msgstr "Метод вызова кода"
msgid "Collapse"
msgstr "Свернуть"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Свернуть"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Свернуть все"
@@ -5014,7 +5072,7 @@ msgstr "Свернуть все"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Collapsible"
-msgstr "Складной"
+msgstr ""
#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
@@ -5022,12 +5080,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 ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the color (Data) field in DocType 'DocType'
@@ -5055,7 +5113,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5066,7 +5124,7 @@ msgstr "Цвет"
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
-#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5095,7 +5153,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:"
@@ -5111,11 +5169,11 @@ msgstr "Название колонки"
msgid "Column Name cannot be empty"
msgstr "Название колонки не может быть пустым"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "Ширина столбца"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "Ширина столбца не может быть равна нулю."
@@ -5140,7 +5198,7 @@ msgstr "Колонки"
#. Label of the columns (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
-msgstr "Колонки / Поля"
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
@@ -5158,7 +5216,7 @@ msgstr "Comm10E"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5168,17 +5226,17 @@ 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
msgid "Comment Type"
-msgstr "Тип комментария"
+msgstr ""
#: frappe/desk/form/utils.py:57
msgid "Comment can only be edited by the owner"
@@ -5198,7 +5256,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:52
msgid "Comments cannot have links or email addresses"
@@ -5207,17 +5265,17 @@ 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
msgid "Commit"
-msgstr "Зафиксировать"
+msgstr ""
#. Label of the committed (Check) field in DocType 'Console Log'
#: frappe/desk/doctype/console_log/console_log.json
msgid "Committed"
-msgstr "Обязательства"
+msgstr ""
#: frappe/utils/password_strength.py:176
msgid "Common names and surnames are easy to guess."
@@ -5258,7 +5316,7 @@ 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"
@@ -5274,7 +5332,7 @@ msgstr "История компании"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Company Introduction"
-msgstr "Введение компании"
+msgstr ""
#. Label of the company_name (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
@@ -5305,12 +5363,12 @@ msgstr "Завершенно"
msgid "Complete By"
msgstr "Завершить к"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Завершить регистрацию"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "Завершение настройки"
@@ -5325,7 +5383,7 @@ msgstr "Завершение настройки"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Завершенно"
@@ -5333,12 +5391,12 @@ 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
@@ -5380,7 +5438,7 @@ msgstr "Условия"
#. Label of the condition_json (JSON) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Condition JSON"
-msgstr "Условие JSON"
+msgstr ""
#. Label of the condition_type (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -5410,13 +5468,13 @@ msgstr "Конфигурация"
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Configuration"
-msgstr "Конфигурация"
+msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:486
msgid "Configure Chart"
msgstr "Настроить диаграмму"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "Настроить столбцы"
@@ -5434,9 +5492,7 @@ 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 ""
#. Description of a DocType
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -5479,7 +5535,7 @@ msgstr "Подтвердить запрос"
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr "Шаблон письма с подтверждением"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
@@ -5505,10 +5561,10 @@ msgstr "Подключенное приложение"
#. Label of the connected_user (Link) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Connected User"
-msgstr "Подключенный пользователь"
+msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "Подключено к QZ Tray!"
@@ -5626,7 +5682,7 @@ msgstr "Содержит {0} исправлений безопасности"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5678,28 +5734,28 @@ 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
msgid "Contribution Document Name"
-msgstr "Название документа по вкладу"
+msgstr ""
#. Label of the contribution_status (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contribution Status"
-msgstr "Статус взноса"
+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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "Скопировано в буфер обмена."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr "Скопировано {0} {1} в буфер обмена"
@@ -5711,12 +5767,12 @@ msgstr "Скопировать ссылку"
msgid "Copy embed code"
msgstr "Копировать код для вставки"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "Скопировать ошибку в буфер обмена"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "Копировать в буфер обмена"
@@ -5737,7 +5793,7 @@ msgstr "Базовые типы документов не могут быть и
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "Базовые модули {0} не могут быть найдены в глобальном поиске."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "Правильная версия:"
@@ -5745,7 +5801,7 @@ msgstr "Правильная версия:"
msgid "Could not connect to outgoing email server"
msgstr "Не удалось подключиться к серверу исходящей почты"
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "Не удалось найти {0}"
@@ -5753,11 +5809,11 @@ msgstr "Не удалось найти {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Не удалось сопоставить столбец {0} с полем {1}"
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr "Не удалось проанализировать поле: {0}"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr "Не удалось запустить Chromium. Подробности смотрите в журналах."
@@ -5765,7 +5821,7 @@ msgstr "Не удалось запустить Chromium. Подробности
msgid "Could not start up:"
msgstr "Не удалось запустить:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "Не удалось сохранить, пожалуйста, проверьте введенные вами данные"
@@ -5817,7 +5873,7 @@ msgstr "Счетчик значений"
msgid "Country"
msgstr "Страна"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "Требуется код страны"
@@ -5844,15 +5900,16 @@ msgstr "Кр"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Создать"
@@ -5865,13 +5922,13 @@ msgstr "Создать и продолжить"
msgid "Create Address"
msgstr "Создать адрес"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "Создать карточку"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "Создать диаграмму"
@@ -5882,12 +5939,12 @@ 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
msgid "Create Entry"
-msgstr "Создать запись"
+msgstr ""
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
@@ -5897,7 +5954,7 @@ 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 "Создать журнал"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41
#: frappe/public/js/frappe/views/treeview.js:378
@@ -5905,7 +5962,7 @@ msgstr "Создать журнал"
msgid "Create New"
msgstr "Создать новый"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Создать новый"
@@ -5918,7 +5975,7 @@ msgstr "Создать новый тип документа"
msgid "Create New Kanban Board"
msgstr "Создать новую Канбан доску"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr "Создать сохраненный фильтр"
@@ -5934,18 +5991,18 @@ msgstr "Создать новый формат"
msgid "Create a Reminder"
msgstr "Создайте напоминание"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "Создать новый ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "Создать новую запись"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Создать новый {0}"
@@ -5962,7 +6019,7 @@ msgstr "Создать или изменить формат печати"
msgid "Create or Edit Workflow"
msgstr "Создать или изменить рабочий процесс"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "Создайте свой первый {0}"
@@ -5979,15 +6036,23 @@ msgstr "Создано"
#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Created At"
-msgstr "Создано в"
+msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Создал"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "Создано пользовательское поле {0} в {1}"
@@ -6022,7 +6087,7 @@ msgstr "Планировщик"
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Cron Format"
-msgstr "Формат Cron"
+msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
@@ -6071,12 +6136,12 @@ msgstr "Валюта"
#. Label of the currency_name (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Currency Name"
-msgstr "Название валюты"
+msgstr ""
#. Label of the currency_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Currency Precision"
-msgstr "Точность валюты"
+msgstr ""
#. Description of a DocType
#: frappe/geo/doctype/currency/currency.json
@@ -6091,12 +6156,12 @@ msgstr "Текущий"
#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Current Job ID"
-msgstr "Текущий идентификатор должности"
+msgstr ""
#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Current Value"
-msgstr "Текущая стоимость"
+msgstr ""
#: frappe/public/js/frappe/form/workflow.js:45
msgid "Current status"
@@ -6135,32 +6200,32 @@ 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 ""
#. 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'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Custom Configuration"
-msgstr "Пользовательская конфигурация"
+msgstr ""
#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -6175,13 +6240,13 @@ msgstr "Пользовательский DocPerm"
#. 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"
msgstr "Превышен лимит настраиваемых типов документов"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "Настраиваемые документы"
@@ -6192,15 +6257,15 @@ msgstr "Настраиваемые документы"
msgid "Custom Field"
msgstr "Настраиваемые поля"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "Настраиваемое поле {0} создано Администратором и может быть удалено только под учетной записью Администратора."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Настраиваемые поля можно добавлять только к стандартному типу документа."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Настраиваемые поля не могут быть добавлены к базовым типам документов."
@@ -6226,7 +6291,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr "Настраиваемый поиск по группе, если он заполнен, должен содержать заполнитель пользователя {0}, например, 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/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "Настраиваемый HTML"
@@ -6272,7 +6337,7 @@ msgstr "Настраиваемые переопределения"
msgid "Custom Report"
msgstr "Настраиваемый отчет"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "Настраиваемые отчеты"
@@ -6297,11 +6362,11 @@ msgstr "Настраиваемое боковое меню"
msgid "Custom Translation"
msgstr "Настраиваемый перевод"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "Настраиваемое поле успешно переименовано в {0}."
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr "Пользовательский метод get_list для {0} должен возвращать объект QueryBuilder или None, получено {1}"
@@ -6324,26 +6389,26 @@ msgstr "Настраиваемый?"
msgid "Customization"
msgstr "Настройка"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "Настройки отменены"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "Настройки сброшены"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "Настройки для {0} экспортированы в:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Настроить"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Настроить тип документа"
@@ -6440,7 +6505,7 @@ msgstr "Ежедневно"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "Ежедневный дайджест событий отправляется для событий календаря, для которых установлены напоминания."
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "Ежедневные события должны заканчиваться в тот же день."
@@ -6497,8 +6562,8 @@ msgstr "Тёмная тема"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "Панель инструментов"
@@ -6549,7 +6614,7 @@ 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 the data (Code) field in DocType 'Deleted Document'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -6625,7 +6690,7 @@ msgstr "Движок базы данных"
#. 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Database Processes"
-msgstr "Процессы базы данных"
+msgstr ""
#: frappe/public/js/frappe/doctype/index.js:39
msgid "Database Row Size Utilization"
@@ -6677,7 +6742,7 @@ 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'
@@ -6690,7 +6755,7 @@ 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:253
msgid "Date {0} must be in format: {1}"
@@ -6713,7 +6778,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'
@@ -6746,9 +6811,9 @@ 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
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "Произошла тупиковая ситуация (взаимоблокировка)"
@@ -6811,7 +6876,7 @@ msgstr "Шаблон адреса по умолчанию не может быт
#. 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'
@@ -6825,7 +6890,7 @@ msgstr "Приложение по умолчанию"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Email Template"
-msgstr "Шаблон электронной почты по умолчанию"
+msgstr ""
#: frappe/email/doctype/email_account/email_account_list.js:13
msgid "Default Inbox"
@@ -6840,7 +6905,7 @@ 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'
@@ -6849,7 +6914,7 @@ msgstr "Заголовок письма по умолчанию"
#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Naming"
-msgstr "Именование по умолчанию"
+msgstr ""
#. Label of the default_outgoing (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -6860,29 +6925,29 @@ msgstr "Исходящие по умолчанию"
#. Label of the default_portal_home (Data) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Portal Home"
-msgstr "Главная страница портала по умолчанию"
+msgstr ""
#. Label of the default_print_format (Data) field in DocType 'DocType'
#. Label of the default_print_format (Link) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "Формат печати по умолчанию"
+msgstr ""
#. Label of the default_print_language (Link) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Default Print Language"
-msgstr "Язык печати по умолчанию"
+msgstr ""
#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Default Redirect URI"
-msgstr "URI перенаправления по умолчанию"
+msgstr ""
#. Label of the default_role (Link) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Role at Time of Signup"
-msgstr "Роль по умолчанию на момент регистрации"
+msgstr ""
#: frappe/email/doctype/email_account/email_account_list.js:16
msgid "Default Sending"
@@ -6895,17 +6960,17 @@ msgstr "Отправка и входящие по умолчанию"
#. Label of the sort_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Field"
-msgstr "Поле сортировки по умолчанию"
+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
msgid "Default Template For Field"
-msgstr "Шаблон по умолчанию для поля"
+msgstr ""
#: frappe/website/doctype/website_theme/website_theme.js:28
msgid "Default Theme"
@@ -6914,42 +6979,42 @@ msgstr "Тема по умолчанию"
#. Label of the default_role (Link) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Role"
-msgstr "Роль пользователя по умолчанию"
+msgstr ""
#. 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 ""
#. 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 ""
#. 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 ""
#. 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 "Валюта отображения по умолчанию"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "Значение по умолчанию для типа поля «Флажок» {0} должно быть либо «0», либо «1»"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "Значение по умолчанию для {0} должно быть в списке параметров."
@@ -7006,11 +7071,12 @@ msgstr "Отложенный"
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -7018,7 +7084,7 @@ msgstr "Отложенный"
msgid "Delete"
msgstr "Удалить"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Удалить"
@@ -7032,10 +7098,6 @@ msgstr "Удалить"
msgid "Delete Account"
msgstr "Удалить аккаунт"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "Удалить всё"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7065,7 +7127,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Удалить вкладку"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr "Удалить все"
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "Удалить и создать новый"
@@ -7093,6 +7163,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "Удалить всю вкладку с полями"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7107,16 +7181,20 @@ msgstr "Удалить вкладку"
msgid "Delete this record to allow sending to this email address"
msgstr "Удалите эту запись, чтобы разрешить отправку на этот адрес электронной почты"
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Удалить {0} элемент навсегда?"
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Удалить {0} элементов навсегда?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7147,7 +7225,7 @@ msgstr "Удалённое наименование"
msgid "Deleted all documents successfully"
msgstr "Все документы успешно удалены"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Удалено!"
@@ -7254,6 +7332,7 @@ msgstr "Потомки (включительно)"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7336,16 +7415,21 @@ msgstr "Тема рабочего стола"
msgid "Desk User"
msgstr "Пользователь рабочего места"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr "Рабочий стол"
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "Значок рабочего стола"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7375,11 +7459,11 @@ msgstr "Детали"
msgid "Detect CSV type"
msgstr "Определить тип CSV"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "Не добавил"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "Не удалил"
@@ -7390,23 +7474,23 @@ 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
msgid "Digits"
-msgstr "Цифры"
+msgstr ""
#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Directory Server"
-msgstr "Сервер каталогов"
+msgstr ""
#. Label of the disable_auto_refresh (Check) field in DocType 'List View
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Auto Refresh"
-msgstr "Отключить автообновление"
+msgstr ""
#. Label of the disable_automatic_recency_filters (Check) field in DocType
#. 'List View Settings'
@@ -7418,24 +7502,24 @@ 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'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Comment Count"
-msgstr "Отключить подсчет комментариев"
+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 "Отключить счетчик"
+msgstr ""
#. Label of the disable_document_sharing (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Document Sharing"
-msgstr "Отключить общий доступ к документам"
+msgstr ""
#. Label of the disable_product_suggestion (Check) field in DocType 'System
#. Settings'
@@ -7450,7 +7534,7 @@ 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 ""
#. Label of the disable_scrolling (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
@@ -7461,7 +7545,7 @@ msgstr "Отключить прокрутку"
#. 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"
@@ -7471,24 +7555,24 @@ msgstr "Отключить регистрацию на вашем сайте"
#. 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'
@@ -7527,10 +7611,11 @@ msgstr "Отключено"
msgid "Disabled Auto Reply"
msgstr "Отключен автоматический ответ"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Отменить"
@@ -7544,11 +7629,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Отменить"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "Отменить {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "Отменить?"
@@ -7592,12 +7677,12 @@ msgstr "Отклонить"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Display"
-msgstr "Дисплей"
+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'
#. Label of the display_depends_on (Code) field in DocType 'Workspace Sidebar
@@ -7605,7 +7690,7 @@ msgstr "Отображение зависит от"
#: frappe/core/doctype/docfield/docfield.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Display Depends On (JS)"
-msgstr "Отображение зависит от (JS)"
+msgstr ""
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180
msgid "Divider"
@@ -7620,13 +7705,13 @@ msgstr "Не создавать нового пользователя"
#. 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 ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "Не редактируйте заголовки, предустановленные в шаблоне"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr "Не предупреждайте меня больше о {0}"
@@ -7634,24 +7719,24 @@ msgstr "Не предупреждайте меня больше о {0}"
msgid "Do you still want to proceed?"
msgstr "Вы все еще хотите продолжить?"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "Вы хотите отменить все связанные документы?"
#. Label of the webhook_docevent (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Event"
-msgstr "Док Событие"
+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'
@@ -7692,7 +7777,6 @@ msgstr "DocStatus следующих состояний изменились:
{0} provided for the field {1} must have atleast one Link field"
msgstr "Указанный для для поля {1} DocType {0} должен иметь по крайней мере одно поле типа Ссылка"
@@ -7796,10 +7879,6 @@ msgstr "DocType — это таблица/форма в приложении."
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "DocType должен быть Отправляемым для выбранного события DocType"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "DocType должен быть строкой"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "DocType должен иметь хотя бы одно поле"
@@ -7817,15 +7896,15 @@ msgstr "DocType, к которому применим этот рабочий п
msgid "DocType required"
msgstr "Требуется DocType"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "DocType {0} не существует."
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "DocType {} не найден"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "Имя DocType не должно начинаться или заканчиваться пробелом"
@@ -7839,7 +7918,7 @@ msgstr "DocTypes не могут быть изменены, используйт
msgid "Doctype"
msgstr "Тип документа"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "Имя DocType ограничено {0} символами ({1})"
@@ -7878,7 +7957,7 @@ msgstr "Действия с документом"
msgid "Document Follow"
msgstr "Подписаться на документ"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "Уведомление о подписке на документ"
@@ -7901,19 +7980,19 @@ msgstr "Связывание документов"
msgid "Document Links"
msgstr "Ссылки на документ"
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "Строка ссылок на документ #{0}: Не удалось найти поле {1} в DocType {2} "
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "Строка ссылок на документ #{0}: Неверный DocType или имя поля."
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "Строка ссылок на документ #{0}: родительский DocType обязателен для внутренних ссылок"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr "Строка ссылок на документ #{0}: Имя поля таблицы обязательно для внутренних ссылок"
@@ -7932,9 +8011,9 @@ msgstr "Строка ссылок на документ #{0}: Имя поля т
msgid "Document Name"
msgstr "Название документа"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "Имя документа должно быть строкой"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7951,7 +8030,7 @@ msgstr "Условие правила именования документа"
msgid "Document Naming Settings"
msgstr "Настройки именования документа"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "Документ в очереди"
@@ -8055,7 +8134,7 @@ msgstr "Заголовок документа"
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8075,18 +8154,18 @@ msgstr "Тип документа"
msgid "Document Type and Function are required to create a number card"
msgstr "Для создания номерной карты требуются тип документа и функция"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "Тип документа не импортируется"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "Тип документа не подлежит отправке"
#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr "Тип документа для отслеживания"
+msgstr ""
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
@@ -8095,40 +8174,40 @@ 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:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "Документ разблокирован"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr "Документ не может быть использован в качестве значения фильтра."
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "Отслеживание документов не включено для этого пользователя."
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "Документ был аннулирован"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "Документ был отправлен"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "Документ находится в стадии черновика"
@@ -8140,11 +8219,11 @@ msgstr "Документ могут редактировать только по
msgid "Document not Relinked"
msgstr "Документ не связан повторно"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "Документ переименован из {0} в {1}"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "Переименование документа из {0} в {1} поставлено в очередь"
@@ -8160,21 +8239,17 @@ msgstr "Документ {0} уже восстановлен"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "Документ {0} установлен в состояние {1} пользователем {2}"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "Документ {0} {1} не существует"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr "Ссылка на документацию"
+msgstr ""
#. Label of the documentation_url (Data) field in DocType 'DocField'
#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Documentation URL"
-msgstr "URL-адрес документации"
+msgstr ""
#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
msgid "Documents"
@@ -8205,7 +8280,7 @@ 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
@@ -8215,13 +8290,13 @@ 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 ""
#. 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 такие HTML-теги, как <скрипт> или просто символы < или >, так как они могут быть намеренно использованы в этом поле"
+msgstr ""
#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
@@ -8233,12 +8308,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
@@ -8264,7 +8339,7 @@ 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"
@@ -8301,7 +8376,7 @@ msgstr "Ссылка для скачивания"
msgid "Download PDF"
msgstr "Скачать PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "Загрузить отчет"
@@ -8385,7 +8460,7 @@ msgid "Due Date Based On"
msgstr "Дата выполнения на основе"
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "Дублировать"
@@ -8393,19 +8468,15 @@ msgstr "Дублировать"
msgid "Duplicate Entry"
msgstr "Дублировать запись"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "Дублировать имя фильтра"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Дублировать Название"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "Дублирующая строка"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "Дублировать текущую строку"
@@ -8413,6 +8484,18 @@ msgstr "Дублировать текущую строку"
msgid "Duplicate field"
msgstr "Дублировать поле"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8500,9 +8583,10 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8513,7 +8597,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Редактировать"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Редактировать"
@@ -8523,7 +8607,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Редактировать"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Редактировать"
@@ -8544,15 +8628,15 @@ msgstr "Изменить диаграмму"
msgid "Edit Custom Block"
msgstr "Изменить настраиваемый блок"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "Изменить настраиваемый HTML"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "Редактировать DocType"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Редактировать DocType"
@@ -8566,7 +8650,7 @@ msgstr "Изменить существующую"
msgid "Edit Filters"
msgstr "Изменить фильтры"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "Изменить фильтры"
@@ -8579,7 +8663,7 @@ msgstr "Изменить нижний колонтитул"
msgid "Edit Format"
msgstr "Изменить формат"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr "Изменить полную форму"
@@ -8637,7 +8721,7 @@ msgstr "Изменить Быстрый список"
msgid "Edit Shortcut"
msgstr "Изменить ярлык"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr "Редактировать боковую панель"
@@ -8660,11 +8744,11 @@ msgstr "Режим правки"
msgid "Edit the {0} Doctype"
msgstr "Редактирование Doctype {0} "
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "Изменить для добавления содержимого"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "Изменить ваш ответ"
@@ -8720,6 +8804,7 @@ msgstr "Выбор элемента"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8735,12 +8820,14 @@ msgstr "Выбор элемента"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8775,7 +8862,7 @@ msgstr "Учетная запись электронной почты отклю
msgid "Email Account Name"
msgstr "Имя учетной записи электронной почты"
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "Учетная запись электронной почты добавлена несколько раз"
@@ -8804,7 +8891,7 @@ msgstr "E-mail адрес"
#. 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 ""
#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
@@ -8824,7 +8911,7 @@ msgstr "Очередь флагов электронной почты"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr "Адрес электронной почты в колонтитуле"
+msgstr ""
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
@@ -8856,7 +8943,7 @@ msgstr "Email ID"
#. 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/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
@@ -8867,7 +8954,7 @@ msgstr "Email Id"
#. 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
@@ -8891,12 +8978,12 @@ 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
@@ -8920,22 +9007,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 the email_template (Link) field in DocType 'Communication'
#. Name of a DocType
@@ -8949,7 +9036,7 @@ msgstr "Шаблон Email"
#. 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
@@ -8973,7 +9060,7 @@ msgstr "Письмо перемещено в корзину"
msgid "Email is mandatory to create User Email"
msgstr "Для создания адреса электронной почты пользователя необходимо указать адрес электронной почты"
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Письмо не отправлено {0} (отписан / отключено)"
@@ -9006,13 +9093,13 @@ 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:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr "Пустой псевдоним не допускается"
@@ -9020,7 +9107,7 @@ msgstr "Пустой псевдоним не допускается"
msgid "Empty column"
msgstr "Пустой столбец"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr "Пустые строковые аргументы не допускаются"
@@ -9031,7 +9118,7 @@ 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_action_confirmation (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
@@ -9051,18 +9138,18 @@ msgstr "Включите опцию «Разрешить автоповтор»
#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Auto Reply"
-msgstr "Включить автоответчик"
+msgstr ""
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Automatic Linking in Documents"
-msgstr "Включить автоматическое связывание в документах"
+msgstr ""
#. Label of the enable_comments (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr "Включить комментарии"
+msgstr ""
#. Label of the enable_dynamic_client_registration (Check) field in DocType
#. 'OAuth Settings'
@@ -9074,7 +9161,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
@@ -9086,7 +9173,7 @@ msgstr "Включите Google API в настройках Google."
#. 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
@@ -9097,7 +9184,7 @@ 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'
@@ -9111,34 +9198,34 @@ msgstr "Включить исходящие"
#. 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 "Включить реле Push-уведомлений"
+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"
@@ -9147,7 +9234,7 @@ 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:32
msgid "Enable Scheduler"
@@ -9156,12 +9243,12 @@ 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 ""
#: frappe/website/doctype/website_settings/website_settings.js:139
msgid "Enable Tracking Page Views"
@@ -9186,14 +9273,13 @@ msgstr "Включите режим разработчика для создан
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Enable if on click\n"
"opens modal."
-msgstr "Включите, если при нажатии на\n"
-"открывается модальное окно."
+msgstr ""
#. Label of the enable_view_tracking (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable in-app website tracking"
-msgstr "Включите отслеживание веб-сайтов в приложении"
+msgstr ""
#. Label of the enabled (Check) field in DocType 'Language'
#. Label of the enabled (Check) field in DocType 'User'
@@ -9237,7 +9323,7 @@ msgstr "Включен почтовый ящик электронной почт
#: 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?"
@@ -9257,12 +9343,12 @@ 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
msgid "Encrypt Backups"
-msgstr "Шифрование резервных копий"
+msgstr ""
#: frappe/utils/password.py:196
msgid "Encryption key is in invalid format!"
@@ -9290,7 +9376,7 @@ msgstr "Дата окончания"
#. Label of the end_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "End Date Field"
-msgstr "Поле конечной даты"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.py:208
msgid "End Date cannot be before Start Date!"
@@ -9305,28 +9391,28 @@ 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"
@@ -9340,18 +9426,18 @@ msgstr "Убедитесь, что пути поиска пользовател
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Введите идентификатор клиента и секретный код клиента в настройках Google."
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "Введите код, отображенный в приложении OTP."
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
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"
@@ -9365,12 +9451,16 @@ 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"
msgstr "Введите имя папки"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9381,13 +9471,13 @@ msgstr "Введите здесь статические параметры url
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for message"
-msgstr "Введите параметр url для сообщения"
+msgstr ""
#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for receiver nos"
-msgstr "Введите параметр url для приемника nos"
+msgstr ""
#: frappe/public/js/frappe/ui/messages.js:341
msgid "Enter your password"
@@ -9401,7 +9491,7 @@ msgstr "Имя объекта"
msgid "Entity Type"
msgstr "Тип объекта"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Равняется"
@@ -9435,7 +9525,7 @@ msgstr "Равняется"
msgid "Error"
msgstr "Ошибка"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Ошибка"
@@ -9450,12 +9540,12 @@ msgstr "Журнал ошибок"
msgid "Error Logs"
msgstr "Журналы ошибок"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr "Сообщение об ошибке"
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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.
Щелкните здесь, чтобы узнать больше о функции Raw Printing."
@@ -9493,15 +9583,15 @@ msgstr "Ошибка в уведомлении"
msgid "Error in print format on line {0}: {1}"
msgstr "Ошибка в формате печати в строке {0}: {1}"
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr "Ошибка в {0}.get_list: {1}"
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr "Ошибка анализа вложенных фильтров:{0}. {1}"
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr "Ошибка проверки «Игнорировать разрешения пользователя»"
@@ -9517,15 +9607,15 @@ msgstr "Ошибка при оценке уведомления {0}. Пожал
msgid "Error {0}: {1}"
msgstr "Ошибка {0}: {1}"
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "Ошибка: данные отсутствуют в таблице {0}"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "Ошибка: отсутствует значение для {0}: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Ошибка: {0} Строка #{1}: Отсутствует значение для: {2}"
@@ -9535,6 +9625,12 @@ msgstr "Ошибка: {0} Строка #{1}: Отсутствует значен
msgid "Errors"
msgstr "Ошибки"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9546,12 +9642,17 @@ 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 ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
@@ -9564,7 +9665,7 @@ msgstr "Участники события"
#. '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
@@ -9576,13 +9677,13 @@ msgstr "Событие синхронизировано с Google Календа
#: 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:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "События"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "События в сегодняшнем календаре"
@@ -9601,40 +9702,41 @@ 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/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr "Пример"
+msgstr ""
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Example: \"/desk\""
-msgstr "Пример: \"/desk\""
+msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr "Пример: #Tree/Account"
+msgstr ""
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr "Пример: 00001"
+msgstr ""
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
-msgstr "Пример: Если установить значение 24:00, пользователь выйдет из системы, если он не будет активен в течение 24:00 часов."
+msgstr ""
#. 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 ""
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9652,7 +9754,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'
@@ -9674,14 +9776,14 @@ msgstr "Выполнение кода"
msgid "Executing..."
msgstr "Выполнение..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "Время выполнения: {0} сек"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Executive"
-msgstr "Исполнительный директор"
+msgstr ""
#. Label of the existing_role (Link) field in DocType 'Role Replication'
#: frappe/core/doctype/role_replication/role_replication.json
@@ -9695,28 +9797,28 @@ msgstr "Существующая роль"
msgid "Expand"
msgstr "Развернуть"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Развернуть"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Развернуть все"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Ожидался оператор «и» или «или», найдено: {0}"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
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'
@@ -9725,12 +9827,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'
#. Option for the 'Status' (Select) field in DocType 'User Invitation'
@@ -9744,7 +9846,7 @@ 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
@@ -9754,27 +9856,28 @@ msgstr "Актуален до"
#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Expiry time of QR Code Image Page"
-msgstr "Срок действия страницы с изображением QR-кода"
+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/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Экспорт"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Экспорт"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "Экспорт 1 записи"
@@ -9798,7 +9901,7 @@ 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:544
msgid "Export Import Log"
@@ -9813,11 +9916,11 @@ msgstr "Экспорт отчета: {0}"
msgid "Export Type"
msgstr "Тип экспорта"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "Экспортировать все соответствующие строки?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "Экспортировать все {0} строки?"
@@ -9833,19 +9936,23 @@ msgstr "Экспорт в фоновом режиме"
msgid "Export not allowed. You need {0} role to export."
msgstr "Экспорт не разрешён. Для экспорта требуется роль {0}."
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Export the data without any header notes and column descriptions"
-msgstr "Экспортируйте данные без примечаний к заголовкам и описаний столбцов"
+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
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "Экспорт {0} записей"
@@ -9856,27 +9963,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 ""
#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -9885,7 +9992,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "Внешняя ссылка"
@@ -9893,7 +10000,7 @@ msgstr "Внешняя ссылка"
#. 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'
@@ -9926,7 +10033,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'
@@ -9934,12 +10041,17 @@ msgstr "Счетчик неудачных заданий"
msgid "Failed Jobs"
msgstr "Неудачные задания"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr "Неудачные попытки входа (за последние 30 дней)"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "Неудачные транзакции"
@@ -10002,7 +10114,7 @@ msgstr "Не удалось создать предварительный про
msgid "Failed to get method for command {0} with {1}"
msgstr "Не удалось получить метод для команды {0} с {1}"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "Не удалось получить метод {0} с {1}"
@@ -10014,7 +10126,7 @@ msgstr "Не удалось получить информацию о сайте"
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "Не удалось импортировать виртуальный doctype {}. Присутствует ли файл контроллера?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "Не удалось оптимизировать изображение: {0}"
@@ -10030,7 +10142,7 @@ msgstr "Не удалось отобразить тему: {}"
msgid "Failed to request login to Frappe Cloud"
msgstr "Не удалось запросить вход в Frappe Cloud"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "Не удалось отправить письмо с темой:"
@@ -10070,9 +10182,9 @@ msgstr "FavIcon"
#. Label of the fax (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr "Факс"
+msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "Обратная связь"
@@ -10089,7 +10201,7 @@ 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"
@@ -10106,7 +10218,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."
@@ -10132,8 +10244,8 @@ msgstr "Извлечение полей из {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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10143,7 +10255,7 @@ msgstr "Поле"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "Поле «маршрут» является обязательным для веб-просмотров"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "Поле \"Заголовок\" является обязательным, если установлено \"Поле поиска по веб-сайту\"."
@@ -10151,16 +10263,16 @@ msgstr "Поле \"Заголовок\" является обязательны
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "Поле \"Значение\" обязательно для заполнения. Укажите значение для обновления"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr "Поле {0} не найдено в {1}"
#. 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:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Поле отсутствует"
@@ -10197,18 +10309,18 @@ msgstr "Поле не разрешено в запросе"
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
-msgstr "Поле, представляющее состояние рабочего процесса транзакции (если поле отсутствует, будет создано новое скрытое пользовательское поле)"
+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:52
msgid "Field type cannot be changed for {0}"
msgstr "Тип поля не может быть изменен для {0}"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "Поле {0} не существует на {1}"
@@ -10216,11 +10328,11 @@ msgstr "Поле {0} не существует на {1}"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Поле {0} ссылается на несуществующий тип документа {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "Поле {0} должно быть виртуальным полем для поддержки виртуального типа документа."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Поле {0} не найдено."
@@ -10242,7 +10354,7 @@ msgstr "Поле {0} в документе {1} не является ни пол
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Имя поля"
@@ -10251,7 +10363,7 @@ msgstr "Имя поля"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "Имя поля «{0}» конфликтует с {1} имени {2} в {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Для включения автоматического именования необходимо, чтобы имя поля {0} существовало"
@@ -10259,7 +10371,7 @@ msgstr "Для включения автоматического именова
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Имя поля ограничено 64 символами ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Имя поля не задано для пользовательского поля"
@@ -10275,7 +10387,7 @@ msgstr "Имя поля {0} встречается несколько раз"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Имя поля {0} не может содержать специальные символы, такие как {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Имя поля {0} конфликтует с метаобъектом"
@@ -10313,7 +10425,7 @@ 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 ""
#: frappe/core/doctype/file/file.py:441
msgid "Fields `file_name` or `file_url` must be set for File"
@@ -10323,7 +10435,7 @@ 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:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Поля должны быть строкой, списком, кортежем, полем Pypika или функцией Pypika"
@@ -10345,9 +10457,9 @@ 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 ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Тип поля не может быть изменен с {0} на {1}"
@@ -10374,7 +10486,7 @@ msgstr "Файл \"{0}\" не найден"
#. Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "Информация о файле"
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
@@ -10423,12 +10535,12 @@ msgstr "Имя файла не может содержать {0}"
msgid "File not attached"
msgstr "Файл не прикреплен"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Размер файла превысил максимально допустимый размер {0} МБ"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Файл слишком большой"
@@ -10455,17 +10567,22 @@ msgstr "Файлы"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Фильтр"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+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 "Данные фильтра"
+msgstr ""
#. Label of the filter_list (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -10475,24 +10592,24 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Имя фильтра"
#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Значения фильтров"
+msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "Условие фильтра отсутствует после оператора: {0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr "Поля фильтра имеют недопустимую нотацию обратной кавычки: {0}"
@@ -10504,17 +10621,21 @@ msgstr "Фильтр..."
#. Step'
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Filtered By"
-msgstr "Отфильтровано по"
+msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:33
msgid "Filtered Records"
msgstr "Отфильтрованные записи"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Фильтрация по \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10538,7 +10659,7 @@ msgstr "Фильтрация по \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Фильтры"
@@ -10569,10 +10690,6 @@ msgstr "JSON фильтры"
msgid "Filters Section"
msgstr "Секция фильтров"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Фильтры применены для {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Фильтры сохранены"
@@ -10590,26 +10707,26 @@ msgstr "Фильтры {0}"
msgid "Filters:"
msgstr "Фильтры:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Найти '{0}' в ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Найти {0} в {1}"
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Готовые"
+msgstr ""
#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Finished At"
-msgstr "Закончено в"
+msgstr ""
#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
#. Label of the first_day_of_the_week (Select) field in DocType 'System
@@ -10617,7 +10734,7 @@ msgstr "Закончено в"
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "First Day of the Week"
-msgstr "Первый день недели"
+msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
@@ -10633,7 +10750,7 @@ 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/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
@@ -10650,7 +10767,7 @@ 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'
@@ -10665,12 +10782,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'
@@ -10683,13 +10800,13 @@ 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:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Сложение не может находиться в конце формы"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Складывание должно происходить до перерыва между разделами"
@@ -10698,12 +10815,12 @@ msgstr "Складывание должно происходить до пере
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/desktop_icon/desktop_icon.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)"
@@ -10716,14 +10833,14 @@ 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:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Подписаться"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Читают"
@@ -10731,7 +10848,7 @@ msgstr "Читают"
msgid "Following Report Filters have missing values:"
msgstr "Следующие фильтры отчетов не содержат значений:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Следующий документ {0}"
@@ -10739,7 +10856,7 @@ msgstr "Следующий документ {0}"
msgid "Following fields are missing:"
msgstr "Отсутствуют следующие поля:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Следующие поля имеют недопустимые значения:"
@@ -10747,7 +10864,7 @@ msgstr "Следующие поля имеют недопустимые знач
msgid "Following fields have missing values"
msgstr "В следующих полях отсутствуют значения"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "В следующих полях отсутствуют значения:"
@@ -10759,7 +10876,7 @@ 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'
@@ -10769,13 +10886,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'
@@ -10788,35 +10905,35 @@ 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
msgid "Footer \"Powered By\""
-msgstr "Нижний колонтитул \"Powered By\""
+msgstr ""
#. Label of the footer_source (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Based On"
-msgstr "Нижний колонтитул на основе"
+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 "Нижний колонтитул HTML"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "HTML-код нижнего колонтитула установлен из вложения {0}"
@@ -10824,36 +10941,36 @@ msgstr "HTML-код нижнего колонтитула установлен
#. 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:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "Нижний колонтитул может быть не виден, так как опция {0} отключена"
@@ -10861,7 +10978,7 @@ msgstr "Нижний колонтитул может быть не виден,
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer will display correctly only in PDF"
-msgstr "Нижний колонтитул будет корректно отображаться только в PDF"
+msgstr ""
#. Label of the for_doctype (Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10871,7 +10988,7 @@ msgstr "Для DocType"
#. Description of the 'Row Name' (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "For DocType Link / DocType Action"
-msgstr "Для DocType Link / DocType Action"
+msgstr ""
#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10886,16 +11003,6 @@ msgstr "Для типа документа"
msgid "For Example: {} Open"
msgstr "Например: {} Открыть"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "Для ссылки введите DocType как диапазон.\n"
-"Для Select введите список опций, каждую с новой строки."
-
#. 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'
@@ -10912,39 +11019,35 @@ 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 ""
#. Description of the 'Subject' (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "Для динамической темы используйте теги Jinja, например: {{ doc.name }} Доставлено"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Для сравнения используйте >5, <10 или =324. Для диапазонов используйте 5:10 (для значений от 5 до 10)."
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr "Например, если вы отмените и измените документ INV004, он станет новым документом INV004-1. Это поможет вам отслеживать каждое изменение."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "Например:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Например: если вы хотите включить идентификатор документа, используйте {0}"
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "Например: {} Открыть"
+msgstr ""
#. Description of the 'Client script' (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "Для получения справки см. раздел API клиентского сценария и примеры"
+msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
@@ -10954,13 +11057,13 @@ msgstr "Для получения дополнительной информац
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com"
-msgstr "Для нескольких адресов укажите их в разных строках. например, test@test.com ⏎ test1@test.com"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:197
msgid "For updating, you can update only selective columns."
msgstr "При обновлении можно обновить только выборочные столбцы."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Для {0} на уровне {1} в {2} в строке {3}"
@@ -10970,7 +11073,7 @@ msgstr "Для {0} на уровне {1} в {2} в строке {3}"
#: 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'
@@ -10979,7 +11082,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 ""
#: frappe/core/doctype/rq_job/rq_job.js:13
msgid "Force Stop job"
@@ -10989,13 +11092,13 @@ msgstr "Принудительная остановка работы"
#. 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?"
@@ -11010,7 +11113,8 @@ msgstr "Забыли пароль?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Форма"
@@ -11020,12 +11124,12 @@ msgstr "Форма"
#: 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'
@@ -11038,7 +11142,7 @@ 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'
@@ -11055,7 +11159,7 @@ msgstr "Форма тура Шаг"
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr "URL-код формы"
+msgstr ""
#. Label of the format (Data) field in DocType 'Workspace Shortcut'
#. Label of the format (Select) field in DocType 'Auto Email Report'
@@ -11068,7 +11172,7 @@ 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 ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -11088,17 +11192,17 @@ 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'
@@ -11189,7 +11293,7 @@ msgstr "Пятница"
msgid "From"
msgstr "От"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "От"
@@ -11208,9 +11312,9 @@ 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:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Из типа документа"
@@ -11222,7 +11326,7 @@ 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
@@ -11236,7 +11340,7 @@ 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'
@@ -11251,7 +11355,7 @@ msgstr "Полный"
msgid "Full Name"
msgstr "Полное имя"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Полная страница"
@@ -11259,12 +11363,12 @@ 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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Функция"
@@ -11273,11 +11377,11 @@ msgstr "Функция"
msgid "Function Based On"
msgstr "Функция основана на"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "Функция {0} не занесена в белый список."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "Функция {0} требует аргументов, но ни один из них не был предоставлен"
@@ -11292,7 +11396,7 @@ msgstr "Fw: {0}"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "GET"
-msgstr "ПОЛУЧИТЬ"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -11340,13 +11444,13 @@ msgstr "Общий"
#. Label of the generate_keys (Button) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Generate Keys"
-msgstr "Генерировать ключи"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Создать новый отчет"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Генерировать случайный пароль"
@@ -11356,8 +11460,8 @@ msgstr "Генерировать случайный пароль"
msgid "Generate Separate Documents For Each Assignee"
msgstr "Создавайте отдельные документы для каждого получателя"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Создать URL-адрес отслеживания"
@@ -11373,7 +11477,7 @@ msgstr "Geoapify"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Geolocation"
-msgstr "Геолокация"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
@@ -11391,7 +11495,7 @@ 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"
@@ -11417,23 +11521,23 @@ 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 ""
#. 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 ""
#. 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 ""
#. Label of the git_branch (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Git Branch"
-msgstr "Ветвь Git"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -11466,9 +11570,9 @@ 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:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Вперёд"
@@ -11484,7 +11588,7 @@ msgstr "Перейти к списку настроек уведомлений"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "Перейти на страницу"
+msgstr ""
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
@@ -11509,7 +11613,7 @@ msgstr "Перейти к документу"
#. Description of the 'Success URL' (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Go to this URL after completing the form"
-msgstr "Перейдите на этот URL после заполнения формы"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.js:54
#: frappe/custom/doctype/client_script/client_script.js:12
@@ -11528,7 +11632,7 @@ msgstr "Перейти к списку {0}"
msgid "Go to {0} Page"
msgstr "Перейти на страницу {0}"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Цель"
@@ -11541,13 +11645,13 @@ msgstr "Google"
#. Label of the google_analytics_id (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics ID"
-msgstr "Идентификатор Google Analytics"
+msgstr ""
#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics anonymise IP"
-msgstr "Google Analytics анонимизирует IP-адрес"
+msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Event'
#. Label of the google_calendar (Link) field in DocType 'Event'
@@ -11591,14 +11695,14 @@ msgstr "Google Calendar - Не удалось обновить событие {0
#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr "Идентификатор события в календаре Google"
+msgstr ""
#. Label of the google_calendar_id (Data) field in DocType 'Event'
#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
#: frappe/desk/doctype/event/event.json
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr "Идентификатор календаря Google"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
@@ -11626,7 +11730,7 @@ msgstr "Google Контакты - Не удалось обновить конт
#. Label of the google_contacts_id (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr "Идентификатор контактов Google"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
@@ -11642,7 +11746,7 @@ msgstr "Выбор Google Диска"
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
-msgstr "Включена функция выбора диска Google"
+msgstr ""
#. Label of the font (Data) field in DocType 'Print Format'
#. Label of the google_font (Data) field in DocType 'Website Theme'
@@ -11650,12 +11754,12 @@ msgstr "Включена функция выбора диска Google"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr "Шрифт Google"
+msgstr ""
#. Label of the google_meet_link (Small Text) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
-msgstr "Ссылка на Google Meet"
+msgstr ""
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
@@ -11681,7 +11785,7 @@ msgstr "URL-адрес Google Таблиц должен заканчиватьс
#. 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
@@ -11743,25 +11847,25 @@ 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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "Группа должна быть строкой"
#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
-msgstr "Класс группового объекта"
+msgstr ""
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -11775,7 +11879,7 @@ msgstr "Сгруппировано по {0}"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "HEAD"
-msgstr "ГЛАВНАЯ"
+msgstr ""
#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
@@ -11787,14 +11891,14 @@ msgstr "ЗДЕСЬ"
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm"
-msgstr "ЧЧ:мм"
+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 "ЧЧ:мм:сс"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -11832,17 +11936,21 @@ msgstr "HTML"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr "HTML-редактор"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr "Страница HTML"
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr "HTML для раздела заголовка. Дополнительно"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
msgid "HTML with jinja support"
@@ -11851,7 +11959,7 @@ 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'
@@ -11874,7 +11982,7 @@ 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
@@ -11884,7 +11992,7 @@ 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
@@ -11900,7 +12008,7 @@ 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"
@@ -11915,14 +12023,14 @@ 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 ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "HTML-заголовок установлен из вложения {0}"
@@ -11934,18 +12042,18 @@ msgstr "Значок заголовка"
#. 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."
@@ -11956,9 +12064,9 @@ 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
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "Заголовки должны быть словарем"
@@ -11979,7 +12087,7 @@ 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"
@@ -11995,7 +12103,7 @@ msgstr "Здравствуйте,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12028,7 +12136,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 ""
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -12038,7 +12146,7 @@ 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
@@ -12050,7 +12158,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Вот ваш URL-адрес отслеживания"
@@ -12084,11 +12192,11 @@ msgstr "Скрытый"
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hidden Fields"
-msgstr "Скрытые поля"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "Скрытые столбцы включают: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+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
@@ -12103,7 +12211,7 @@ 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'
@@ -12112,24 +12220,24 @@ 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 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 ""
#. Label of the hide_days (Check) field in DocType 'DocField'
#. Label of the hide_days (Check) field in DocType 'Custom Field'
@@ -12138,7 +12246,7 @@ 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
@@ -12163,7 +12271,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
@@ -12173,7 +12281,7 @@ 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 ""
#. Label of the hide_seconds (Check) field in DocType 'DocField'
#. Label of the hide_seconds (Check) field in DocType 'Custom Field'
@@ -12182,17 +12290,17 @@ 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/views/calendar/calendar.js:179
msgid "Hide Weekends"
@@ -12202,7 +12310,7 @@ msgstr "Скрыть выходные"
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Hide descendant records of For Value."
-msgstr "Скрыть записи о потомках For Value."
+msgstr ""
#: frappe/public/js/frappe/form/layout.js:296
msgid "Hide details"
@@ -12217,12 +12325,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
@@ -12238,12 +12346,12 @@ 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:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
@@ -12253,7 +12361,7 @@ msgstr "Подсказка: используйте в пароле символ
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12267,12 +12375,12 @@ msgstr "Главная"
#: 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
@@ -12295,14 +12403,14 @@ msgstr "Главная/Тестовая папка 2"
#: 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
@@ -12313,7 +12421,7 @@ msgstr "Почасовое обслуживание"
#. 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"
@@ -12323,7 +12431,7 @@ 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
@@ -12336,18 +12444,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr "Полагаю, у вас пока нет доступа к рабочему пространству, но вы можете создать его для себя. Для этого нажмите на кнопку Создать рабочее пространство.
"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12366,18 +12474,18 @@ msgstr "ID (имя)"
#. 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 (имя) сущности, свойство которой должно быть установлено"
+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 "Подробности IMAP"
+msgstr ""
#. Label of the imap_folder (Data) field in DocType 'Communication'
#. Label of the imap_folder (Table) field in DocType 'Email Account'
@@ -12395,10 +12503,9 @@ msgstr "Папка IMAP"
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/user_session_display/user_session_display.json
msgid "IP Address"
-msgstr "IP-адрес"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12419,11 +12526,16 @@ msgstr "IP-адрес"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Icon"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12434,16 +12546,20 @@ msgstr "Стиль иконки"
msgid "Icon Type"
msgstr "Тип иконки"
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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
@@ -12463,15 +12579,15 @@ msgstr "Если установлен флажок Apply Strict User Permission
#: 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:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Если владелец"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "Если роль не имеет доступа на уровне 0, то более высокие уровни не имеют смысла."
@@ -12484,24 +12600,24 @@ msgstr "Если этот флажок установлен, перед выпо
#. Description of the 'Is Active' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr "Если флажок установлен, все остальные рабочие процессы становятся неактивными."
+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'
@@ -12518,17 +12634,17 @@ msgstr "Если эта функция включена, все ответы в
#. 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 ""
#. 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 'Only allow System Managers to upload public files'
#. (Check) field in DocType 'System Settings'
@@ -12545,7 +12661,7 @@ msgstr "Если эта функция включена, документ пом
#. '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'
@@ -12563,47 +12679,55 @@ msgstr "Если эта опция включена, пользователям,
#. '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 ""
#. 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 ""
#. 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 ""
#. 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 "Если установлено, только пользователи с этими ролями могут получить доступ к этому графику. Если не задано, будут использоваться разрешения DocType или Report."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+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
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "Если эти инструкции вам не помогли, пожалуйста, добавьте свои предложения в GitHub Issues."
@@ -12621,14 +12745,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."
@@ -12653,7 +12777,7 @@ msgstr "Если вы недавно восстановили сайт, вам
#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "If you set this, this Item will come in a drop-down under the selected parent."
-msgstr "Если вы установите этот параметр, данный элемент будет отображаться в выпадающем списке под выбранным родителем."
+msgstr ""
#: frappe/templates/emails/administrator_logged_in.html:3
msgid "If you think this is unauthorized, please change the Administrator password."
@@ -12667,7 +12791,7 @@ msgstr "Если в вашем CSV-файле используется друг
#. Description of the 'Source Text' (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "If your data is in HTML, please copy paste the exact HTML code with the tags."
-msgstr "Если ваши данные представлены в формате HTML, скопируйте точный HTML-код с тегами."
+msgstr ""
#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
@@ -12687,7 +12811,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 ""
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Account'
@@ -12696,14 +12820,14 @@ 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
msgid "Ignored Apps"
-msgstr "Игнорируемые приложения"
+msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "Некорректный статус документа для {0}"
@@ -12739,25 +12863,25 @@ 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:209
msgid "Image View"
@@ -12767,13 +12891,13 @@ msgstr "Просмотр изображения"
#. 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:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "Поле изображения должно иметь допустимое имя поля"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "Поле изображения должно иметь тип «Прикрепить изображение»"
@@ -12807,7 +12931,7 @@ msgstr "Выдать себя за {0}"
msgid "Impersonated by {0}"
msgstr "Выдано за {0}"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "Выдавая себя за {0}"
@@ -12818,18 +12942,19 @@ 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'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "Импорт"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Импорт"
@@ -12841,13 +12966,13 @@ 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'
@@ -12858,12 +12983,12 @@ 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"
@@ -12877,12 +13002,12 @@ 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"
@@ -12891,7 +13016,7 @@ 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 "Импорт из Google Sheets"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:612
msgid "Import template should be of type .csv, .xlsx or .xls"
@@ -12925,14 +13050,14 @@ msgstr "Входит в"
#. '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'
@@ -12942,7 +13067,7 @@ 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"
@@ -12951,7 +13076,7 @@ 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'
@@ -12974,7 +13099,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"
@@ -12995,18 +13120,18 @@ 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 ""
#. 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"
@@ -13035,12 +13160,12 @@ 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"
@@ -13049,18 +13174,18 @@ 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/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "Включая фильтры"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr "Включите скрытые колонки"
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "Включить отступ"
@@ -13078,7 +13203,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'
@@ -13091,13 +13216,13 @@ msgstr "Входящие электронные письма (за послед
#: 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"
@@ -13127,11 +13252,11 @@ msgstr "Неверный пользователь или пароль"
msgid "Incorrect Verification code"
msgstr "Неверный код верификации"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "Неверное значение в строке {0}:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "Неверное значение:"
@@ -13155,7 +13280,7 @@ 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}"
@@ -13165,13 +13290,13 @@ msgstr "Индекс успешно создан для столбца {0} ти
#. 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
@@ -13181,9 +13306,9 @@ 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:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "Цвет индикатора"
@@ -13199,7 +13324,7 @@ msgstr "Цвет индикатора"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Info"
-msgstr "Информация"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:144
msgid "Info:"
@@ -13208,7 +13333,7 @@ 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
@@ -13230,15 +13355,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "Вставить после"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "Вставить после нельзя установить как {0}"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "Вставить после поля «{0}», упомянутого в пользовательском поле «{1}», с меткой «{2}», не существует"
@@ -13257,19 +13382,19 @@ 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/about.js:11
msgid "Instagram"
msgstr "Инстаграм"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "Установить {0} из Marketplace"
@@ -13293,17 +13418,17 @@ 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
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "Инструкции отправлены по электронной почте"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "Недостаточный уровень разрешения для {0}"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "Недостаточно прав для {0}"
@@ -13354,12 +13479,12 @@ 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
msgid "Inter"
-msgstr "Интер"
+msgstr ""
#. Label of the interest (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -13371,7 +13496,7 @@ msgstr "Интересы"
msgid "Intermediate"
msgstr "Промежуточный"
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "Внутренняя ошибка сервера"
@@ -13380,16 +13505,21 @@ msgstr "Внутренняя ошибка сервера"
msgid "Internal record of document shares"
msgstr "Внутренний учет акций документов"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+msgstr ""
+
#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Intro Video URL"
-msgstr "URL-адрес вступительного видео"
+msgstr ""
#. Description of the 'Company Introduction' (Text Editor) field in DocType
#. 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Introduce your company to the website visitor."
-msgstr "Представьте посетителю сайта свою компанию."
+msgstr ""
#. Label of the introduction_section (Section Break) field in DocType 'Contact
#. Us Settings'
@@ -13405,12 +13535,12 @@ msgstr "Введение"
#. 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 "URI интроспекции"
+msgstr ""
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
@@ -13419,13 +13549,13 @@ msgid "Invalid"
msgstr "Неверный"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "Недопустимое выражение «depends_on»"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Недопустимое выражение «depends_on» задано в фильтре {0}"
@@ -13465,7 +13595,7 @@ msgstr "Неверная дата"
msgid "Invalid DocType"
msgstr "Неверный тип документа"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "Неверный тип документа: {0}"
@@ -13473,7 +13603,8 @@ msgstr "Неверный тип документа: {0}"
msgid "Invalid Doctype"
msgstr "Неверный тип документа"
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "Неверное имя поля"
@@ -13481,8 +13612,8 @@ msgstr "Неверное имя поля"
msgid "Invalid File URL"
msgstr "Неверный URL-адрес файла"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr "Некорректный фильтр"
@@ -13506,7 +13637,7 @@ msgstr "Неверная ссылка"
msgid "Invalid Login Token"
msgstr "Неверный токен входа"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "Неверный логин. Попробуйте ещё раз."
@@ -13514,7 +13645,7 @@ msgstr "Неверный логин. Попробуйте ещё раз."
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Неверный почтовый сервер. Исправьте и повторите попытку."
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "Неверная серия наименований: {}"
@@ -13525,8 +13656,8 @@ msgstr "Неверная серия наименований: {}"
msgid "Invalid Operation"
msgstr "Недопустимая операция"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "Неверный вариант"
@@ -13538,7 +13669,7 @@ msgstr "Неверный сервер или порт исходящей поч
msgid "Invalid Output Format"
msgstr "Неверный формат вывода"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "Недопустимое переопределение"
@@ -13551,11 +13682,11 @@ msgstr "Неверные параметры."
msgid "Invalid Password"
msgstr "Неверный пароль"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "Неверный номер телефона"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Неверный запрос"
@@ -13564,7 +13695,7 @@ msgstr "Неверный запрос"
msgid "Invalid Search Field {0}"
msgstr "Неверное поле поиска {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "Неверное имя поля таблицы"
@@ -13583,7 +13714,7 @@ msgstr "Неправильный URL"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Неверное имя пользователя или пароль службы поддержки. Исправьте и повторите попытку."
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "Недопустимые значения"
@@ -13595,7 +13726,7 @@ msgstr "Неверный секрет веб-перехватчика"
msgid "Invalid aggregate function"
msgstr "Недопустимая агрегатная функция"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Неверный формат псевдонима: {0}. Псевдоним должен быть простым идентификатором."
@@ -13603,19 +13734,19 @@ msgstr "Неверный формат псевдонима: {0}. Псевдон
msgid "Invalid app"
msgstr "Недопустимое приложение"
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Недопустимый формат аргумента: {0}. Допускаются только строковые литералы в кавычках или простые имена полей."
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr "Недопустимый тип аргумента: {0}. Допускаются только строки, числа, словари и None."
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Недопустимые символы в имени поля: {0}. Допускаются только буквы, цифры и символы подчёркивания."
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr "Недопустимые символы в имени таблицы: {0}"
@@ -13623,18 +13754,22 @@ msgstr "Недопустимые символы в имени таблицы: {0
msgid "Invalid column"
msgstr "Неверный столбец"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr "Недопустимый тип условия во вложенных фильтрах: {0}"
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Неверное направление в поле «Сортировать по: {0}». Должно быть «ASC» или «DESC»."
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "Неверный статус документа"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "Недопустимое выражение в фильтре {0}"
@@ -13643,11 +13778,11 @@ msgstr "Недопустимое выражение в фильтре {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Недопустимое выражение в фильтре {0} ({1})"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "Недопустимый формат поля для SELECT: {0}. Имена полей должны быть простыми, заключёнными в обратные кавычки, определёнными таблицей, иметь псевдоним или содержать символ «*»."
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "Неверный формат поля в {0}: {1}. Используйте «field», «link_field.field» или «child_table.field»."
@@ -13655,11 +13790,11 @@ msgstr "Неверный формат поля в {0}: {1}. Используйт
msgid "Invalid field name {0}"
msgstr "Недопустимое имя поля {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr "Неверный тип поля: {0}"
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Недопустимое имя поля «{0}» в autoname"
@@ -13667,11 +13802,11 @@ msgstr "Недопустимое имя поля «{0}» в autoname"
msgid "Invalid file path: {0}"
msgstr "Неверный путь к файлу: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Недопустимое условие фильтра: {0}. Ожидается список или кортеж."
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Недопустимый формат поля фильтра: {0}. Используйте «fieldname» или «link_fieldname.target_fieldname»."
@@ -13679,7 +13814,7 @@ msgstr "Недопустимый формат поля фильтра: {0}. Ис
msgid "Invalid filter: {0}"
msgstr "Некорректный фильтр: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "Недопустимый тип аргумента функции: {0}. Допускаются только строки, числа, списки и None."
@@ -13696,19 +13831,19 @@ msgstr "Неверный JSON добавлен в пользовательски
msgid "Invalid key"
msgstr "Неверный ключ"
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "Недопустимый тип имени (целое число) для столбца с именем varchar"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "Неверная серия наименований {}: отсутствует точка (.)"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr "Неверное наименование серии {}: отсутствует точка (.) перед числовыми заполнителями. Используйте формат ABCD.#####."
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr "Недопустимое вложенное выражение: словарь должен представлять функцию или оператор"
@@ -13732,11 +13867,11 @@ msgstr "Неверное тело запроса"
msgid "Invalid role"
msgstr "Недопустимая роль"
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr "Неверный формат простого фильтра: {0}"
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Недопустимое начало для условия фильтра: {0}. Ожидался список или кортеж."
@@ -13753,31 +13888,31 @@ msgstr "Неверное состояние токена! Проверьте, б
msgid "Invalid username or password"
msgstr "Неверное имя пользователя или пароль"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "Указано недопустимое значение для UUID: {}"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "Недопустимые значения полей:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "Неверная версия wkhtmltopdf"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "Недопустимое условие {0}"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
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/core/doctype/user_invitation/user_invitation.py:95
msgid "Invitation already accepted"
@@ -13832,14 +13967,14 @@ 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'
@@ -13854,12 +13989,12 @@ msgstr "Дочерняя таблица"
#: 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_current (Check) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -13871,12 +14006,12 @@ msgstr "Является текущим"
#: 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'
@@ -13891,14 +14026,14 @@ 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:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Глобальный"
@@ -13909,28 +14044,28 @@ 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 ""
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
msgid "Is Primary Address"
@@ -13940,36 +14075,36 @@ msgstr "Основной адрес"
#: frappe/contacts/doctype/contact/contact.json
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
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:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "Поле \"Опубликовано\" должно быть допустимым именем поля"
@@ -13977,13 +14112,13 @@ msgstr "Поле \"Опубликовано\" должно быть допуст
#: 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'
@@ -14002,12 +14137,12 @@ 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'
@@ -14026,7 +14161,7 @@ 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
@@ -14042,27 +14177,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'
@@ -14071,7 +14206,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
@@ -14085,12 +14220,12 @@ 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"
@@ -14109,7 +14244,7 @@ msgstr "JS"
#. Label of the js_message (HTML) field in DocType 'Custom HTML Block'
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "JS Message"
-msgstr "Сообщение JS"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the json (Code) field in DocType 'Report'
@@ -14127,7 +14262,7 @@ msgstr "JSON"
#. Label of the webhook_json (Code) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON Request Body"
-msgstr "Тело запроса JSON"
+msgstr ""
#: frappe/templates/signup.html:5
msgid "Jane Doe"
@@ -14141,7 +14276,7 @@ msgstr "JavaScript"
#. Description of the 'Javascript' (Code) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}"
-msgstr "Формат JavaScript: frappe.query_reports['REPORTNAME'] = {}"
+msgstr ""
#. Label of the javascript (Code) field in DocType 'Report'
#. Label of the javascript_section (Section Break) field in DocType 'Custom
@@ -14169,7 +14304,7 @@ msgstr "Jinja"
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job ID"
-msgstr "Идентификатор должности"
+msgstr ""
#. Label of the job_id (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
@@ -14179,17 +14314,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/data_import/data_import.js:191
#: frappe/core/doctype/rq_job/rq_job.js:24
@@ -14214,8 +14349,8 @@ msgstr "Задание успешно завершено"
msgid "Join video conference with {0}"
msgstr "Присоединяйтесь к видеоконференции с помощью {0}"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "Перейти к полю"
@@ -14291,7 +14426,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
@@ -14342,27 +14477,27 @@ msgstr "LDAP-аутентификация"
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Custom Settings"
-msgstr "Пользовательские настройки LDAP"
+msgstr ""
#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Email Field"
-msgstr "Поле электронной почты LDAP"
+msgstr ""
#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP First Name Field"
-msgstr "Поле первого имени LDAP"
+msgstr ""
#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group"
-msgstr "Группа LDAP"
+msgstr ""
#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Field"
-msgstr "Поле группы LDAP"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
@@ -14374,28 +14509,28 @@ msgstr "Сопоставление групп LDAP"
#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Mappings"
-msgstr "Сопоставления групп LDAP"
+msgstr ""
#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Member attribute"
-msgstr "Атрибут LDAP Group Member"
+msgstr ""
#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Last Name Field"
-msgstr "Поле фамилии LDAP"
+msgstr ""
#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Middle Name Field"
-msgstr "Поле среднего имени LDAP"
+msgstr ""
#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Mobile Field"
-msgstr "Мобильное поле LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
msgid "LDAP Not Installed"
@@ -14404,12 +14539,12 @@ msgstr "LDAP не установлен"
#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Phone Field"
-msgstr "Поле телефона LDAP"
+msgstr ""
#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search String"
-msgstr "Строка поиска LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
@@ -14419,18 +14554,18 @@ msgstr "Строка поиска LDAP должна быть заключена
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search and Paths"
-msgstr "Поиск и пути LDAP"
+msgstr ""
#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Security"
-msgstr "Безопасность LDAP"
+msgstr ""
#. Label of the ldap_server_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Settings"
-msgstr "Настройки сервера LDAP"
+msgstr ""
#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -14448,12 +14583,12 @@ msgstr "Настройки LDAP"
#. DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP User Creation and Mapping"
-msgstr "Создание и сопоставление пользователей LDAP"
+msgstr ""
#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Username Field"
-msgstr "Поле имени пользователя LDAP"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:310
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:429
@@ -14463,12 +14598,12 @@ msgstr "LDAP не включен."
#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Groups"
-msgstr "Путь поиска LDAP для групп"
+msgstr ""
#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Users"
-msgstr "Путь поиска LDAP для пользователей"
+msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102
msgid "LDAP settings incorrect. validation response was: {0}"
@@ -14530,22 +14665,22 @@ 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:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "Ярлык обязателен"
#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr "Посадочная страница"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
@@ -14561,7 +14696,7 @@ msgstr "Вертикально"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Язык"
@@ -14569,12 +14704,12 @@ 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'
@@ -14605,32 +14740,40 @@ msgstr "Последние 90 Дней"
#. Label of the last_active (Datetime) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr "Последний активный"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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 "Последний IP"
+msgstr ""
#. 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"
@@ -14645,7 +14788,7 @@ msgstr "Изменен"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/public/js/frappe/ui/filters/filter.js:643
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'
@@ -14661,13 +14804,13 @@ 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:647
msgid "Last Quarter"
-msgstr "Последний квартал"
+msgstr ""
#. Label of the last_received_at (Datetime) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -14678,7 +14821,7 @@ msgstr "Последний раз получено в"
#. 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
@@ -14688,12 +14831,12 @@ 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_on (Datetime) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Last Synced On"
-msgstr "Последняя синхронизация"
+msgstr ""
#. Label of the last_updated (Datetime) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -14713,24 +14856,29 @@ 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:639
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:655
msgid "Last Year"
-msgstr "Прошлый год"
+msgstr ""
#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
msgstr "Последняя синхронизация {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "Макет"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "Сброс макета"
@@ -14746,7 +14894,7 @@ 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
@@ -14758,9 +14906,15 @@ msgstr "Покинуть этот разговор"
msgid "Ledger"
msgstr "Регистр"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14776,12 +14930,12 @@ 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"
@@ -14848,13 +15002,13 @@ 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:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14865,25 +15019,25 @@ 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 "Сценарии фирменных бланков"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "Фирменный бланк не может быть одновременно отключен и задан по умолчанию"
@@ -14891,7 +15045,7 @@ msgstr "Фирменный бланк не может быть одноврем
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head in HTML"
-msgstr "Заголовок письма в HTML"
+msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
#. Label of the permlevel (Int) field in DocType 'DocPerm'
@@ -14905,7 +15059,7 @@ msgstr "Заголовок письма в HTML"
msgid "Level"
msgstr "Уровень"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "Уровень 0 предназначен для разрешений на уровне документа, более высокие уровни — для разрешений на уровне полей."
@@ -14921,12 +15075,12 @@ 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'
@@ -14938,7 +15092,7 @@ 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"
@@ -14946,7 +15100,7 @@ msgstr "Светлая тема"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Подобно"
@@ -14968,16 +15122,16 @@ 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:299
+#: frappe/database/query.py:302
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'
@@ -15015,12 +15169,12 @@ 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'
@@ -15035,12 +15189,12 @@ msgstr "Подробности ссылки"
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link DocType"
-msgstr "Ссылка DocType"
+msgstr ""
#. Label of the link_doctype (Link) field in DocType 'Dynamic Link'
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Document Type"
-msgstr "Ссылка Тип документа"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
@@ -15051,12 +15205,12 @@ msgstr "Срок действия ссылки истек"
#. 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'
@@ -15076,14 +15230,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 'Desktop Icon'
#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
@@ -15096,11 +15250,11 @@ msgstr "Название ссылки"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: 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"
@@ -15114,10 +15268,10 @@ msgstr "Ссылка на строку"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: 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"
@@ -15130,19 +15284,19 @@ 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"
@@ -15157,6 +15311,7 @@ msgstr "LinkedIn"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15178,21 +15333,21 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
-msgstr "Список"
+msgstr ""
#. Label of the list__search_settings_section (Section Break) field in DocType
#. 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "List / Search Settings"
-msgstr "Настройки списка / поиска"
+msgstr ""
#. Label of the list_columns (Table) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "List Columns"
-msgstr "Колонки списка"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/list_filter/list_filter.json
@@ -15209,7 +15364,7 @@ msgstr "Фильтр списка"
msgid "List Settings"
msgstr "Настройки списка"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Настройки списка"
@@ -15223,7 +15378,7 @@ msgstr "Вид списка"
msgid "List View Settings"
msgstr "Настройки просмотра списка"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "Список типа документа"
@@ -15232,7 +15387,7 @@ msgstr "Список типа документа"
#: 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'
@@ -15250,16 +15405,16 @@ msgstr "Список выполненных патчей"
msgid "List setting message"
msgstr "Сообщение о настройке списка"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "Списки"
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Load Balancing"
-msgstr "Балансировка нагрузки"
+msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15277,10 +15432,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "Загрузка"
@@ -15297,8 +15452,8 @@ msgid "Loading versions..."
msgstr "Загрузка версий..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15308,14 +15463,15 @@ msgid "Loading..."
msgstr "Загрузка..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr "Местоположение"
#. Label of the log (Code) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
msgid "Log"
-msgstr "Журнал"
+msgstr ""
#. Label of the log_api_requests (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -15325,12 +15481,12 @@ msgstr "Журнал API-запросов"
#. Label of the log_data_section (Section Break) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Log Data"
-msgstr "Данные журнала"
+msgstr ""
#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear'
#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Log DocType"
-msgstr "Журнал DocType"
+msgstr ""
#: frappe/templates/emails/login_with_email_link.html:27
msgid "Log In To {0}"
@@ -15339,7 +15495,7 @@ 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
@@ -15381,15 +15537,20 @@ msgstr "Выполнен выход"
msgid "Login"
msgstr "Логин"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+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"
@@ -15403,13 +15564,13 @@ msgstr "Требуется идентификатор входа"
#. 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}"
@@ -15456,7 +15617,7 @@ msgstr "Войдите, чтобы начать новое обсуждение"
msgid "Login to {0}"
msgstr "Войти в {0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "Требуется токен входа"
@@ -15476,13 +15637,13 @@ msgstr "Войти с помощью LDAP"
#. 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:150
msgid "Login with username and password is not allowed."
@@ -15505,7 +15666,7 @@ msgstr "URL-адрес логотипа"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/me.html:91
msgid "Logout"
-msgstr "Выход из системы"
+msgstr ""
#: frappe/core/doctype/user/user.js:195
msgid "Logout All Sessions"
@@ -15515,16 +15676,15 @@ 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
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Журналы"
@@ -15536,7 +15696,7 @@ 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'
@@ -15545,7 +15705,7 @@ 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"
@@ -15555,7 +15715,7 @@ msgstr "Похоже, вы не изменили значение"
msgid "Looks like you haven’t added any third party apps."
msgstr "Похоже, вы не добавили ни одного стороннего приложения."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "Похоже, что вы не получали никаких уведомлений."
@@ -15573,7 +15733,7 @@ msgstr "M"
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "MIT License"
-msgstr "Лицензия MIT"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:48
msgid "Madam"
@@ -15582,17 +15742,17 @@ 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
msgid "Main Section (HTML)"
-msgstr "Основной раздел (HTML)"
+msgstr ""
#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (Markdown)"
-msgstr "Основной раздел (Markdown)"
+msgstr ""
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
@@ -15608,7 +15768,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'
#. Label of the show_name_in_global_search (Check) field in DocType 'Customize
@@ -15616,7 +15776,7 @@ msgstr "Главная"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
-msgstr "Сделать \"имя\" доступным для поиска в Глобальном поиске"
+msgstr ""
#. Label of the make_attachment_public (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -15629,13 +15789,13 @@ 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"
@@ -15678,12 +15838,12 @@ 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 ""
#: frappe/website/doctype/web_form/web_form.py:537
msgid "Mandatory Information missing:"
@@ -15705,7 +15865,7 @@ msgstr "Обязательные поля в таблице {0}, строка {1
msgid "Mandatory fields required in {0}"
msgstr "Обязательные поля в {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "Обязательные поля для заполнения:"
@@ -15717,7 +15877,7 @@ msgstr "Обязательный:"
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Map"
-msgstr "Карта"
+msgstr ""
#: frappe/public/js/frappe/data_import/import_preview.js:194
#: frappe/public/js/frappe/data_import/import_preview.js:306
@@ -15735,7 +15895,7 @@ msgstr "Сопоставить столбцы из {0} с полями в {1}"
#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Map route parameters into form variables. Example /project/<name>"
-msgstr "Сопоставьте параметры маршрута с переменными формы. Пример /project/<name>"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:923
msgid "Mapping column {0} to field {1}"
@@ -15744,22 +15904,22 @@ 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
msgid "Margin Left"
-msgstr "Левое поле"
+msgstr ""
#. Label of the margin_right (Float) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Right"
-msgstr "Маржа справа"
+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'
@@ -15767,7 +15927,7 @@ msgstr "Маргинальный верх"
msgid "MariaDB Variables"
msgstr "Переменные MariaDB"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "Пометить все прочитанными"
@@ -15802,12 +15962,12 @@ 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 ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Marked As Spam"
-msgstr "Помечено как спам"
+msgstr ""
#. Name of a role
#: frappe/website/doctype/utm_campaign/utm_campaign.json
@@ -15819,9 +15979,12 @@ msgstr "Менеджер по маркетингу"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "Маска"
@@ -15832,29 +15995,29 @@ 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 ""
#. 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 "Максимальный размер файла (МБ)"
+msgstr ""
#. Label of the max_height (Data) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Max Height"
-msgstr "Максимальная высота"
+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
@@ -15864,7 +16027,7 @@ 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 "Максимальное значение"
+msgstr ""
#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -15875,7 +16038,7 @@ msgstr "Максимальный размер крепления"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max auto email report per user"
-msgstr "Максимальный автоматический отчет по электронной почте для одного пользователя"
+msgstr ""
#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System
#. Settings'
@@ -15883,14 +16046,14 @@ msgstr "Максимальный автоматический отчет по э
msgid "Max signups allowed per hour"
msgstr "Максимальное количество регистраций в час"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "Максимальная ширина для типа «Валюта» составляет 100 пикселей в строке {0}"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "Максимальный"
+msgstr ""
#: frappe/core/doctype/file/file.py:342
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
@@ -15904,20 +16067,27 @@ msgstr "Достигнут максимальный лимит вложений
msgid "Maximum {0} rows allowed"
msgstr "Максимально допустимое количество строк: {0}"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Мне"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "Значение слов Отправить, Отменить, Изменить"
+msgid "Meaning of Different Permission Types"
+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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15933,12 +16103,12 @@ msgstr "Встреча"
#: frappe/email/doctype/notification/notification.js:210
#: 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'
@@ -15953,20 +16123,20 @@ msgstr "Использование памяти в МБ"
#. 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:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "Меню"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Слияние с существующими"
@@ -16000,13 +16170,13 @@ msgstr "Объединение возможно только между груп
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Сообщение"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Сообщение"
@@ -16014,19 +16184,19 @@ 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"
@@ -16035,9 +16205,9 @@ 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:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Сообщение вырезано"
@@ -16052,7 +16222,7 @@ 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
@@ -16062,12 +16232,12 @@ 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
msgid "Meta"
-msgstr "Мета"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
@@ -16082,7 +16252,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 ""
#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
@@ -16132,9 +16302,9 @@ msgstr "Метаданные"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Метод"
+msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "Метод не допускается"
@@ -16145,7 +16315,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'
@@ -16174,13 +16344,13 @@ 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
@@ -16223,7 +16393,7 @@ msgstr "Мисс"
msgid "Missing DocType"
msgstr "Отсутствует DocType"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "Отсутствует поле"
@@ -16243,7 +16413,7 @@ msgstr "Отсутствие разрешения"
msgid "Missing Value"
msgstr "Отсутствующее значение"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16271,7 +16441,7 @@ 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 ""
#. Label of the module (Data) field in DocType 'Block Module'
#. Label of the module (Link) field in DocType 'DocType'
@@ -16308,7 +16478,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16326,7 +16496,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
@@ -16339,12 +16509,12 @@ msgstr "Модуль Def"
#. Label of the module_html (HTML) field in DocType 'Module Profile'
#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module HTML"
-msgstr "Модуль HTML"
+msgstr ""
#. Label of the module_name (Data) field in DocType 'Module Def'
#: frappe/core/doctype/module_def/module_def.json
msgid "Module Name"
-msgstr "Название модуля"
+msgstr ""
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -16355,16 +16525,15 @@ msgstr "Модуль адаптации"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "Профиль модуля"
#. Label of the module_profile_name (Data) field in DocType 'Module Profile'
#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module Profile Name"
-msgstr "Имя профиля модуля"
+msgstr ""
#: frappe/desk/doctype/module_onboarding/module_onboarding.py:73
msgid "Module onboarding progress reset"
@@ -16374,7 +16543,7 @@ msgstr "Сброс хода подключения модуля"
msgid "Module to Export"
msgstr "Модуль для экспорта"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "Модуль {} не найден"
@@ -16388,7 +16557,7 @@ msgstr "Модули"
#. Label of the modules_html (HTML) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr "Модули HTML"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -16414,7 +16583,7 @@ 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"
@@ -16445,7 +16614,7 @@ msgstr "Ежемесячно"
#: 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
@@ -16487,9 +16656,9 @@ msgstr "Больше статей на тему {0}"
#. 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
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "Часто используемые"
@@ -16504,7 +16673,7 @@ msgstr "Скорее всего, ваш пароль слишком длинны
msgid "Move"
msgstr "Переместить"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Переместить в"
@@ -16516,19 +16685,19 @@ msgstr "Переместить в корзину"
msgid "Move current and all subsequent sections to a new tab"
msgstr "Переместить текущий и все последующие разделы на новую вкладку"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "Переместить курсор в строку выше"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "Переместить курсор на нижнюю строку"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "Переместить курсор в следующий столбец"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "Переместить курсор в предыдущий столбец"
@@ -16540,20 +16709,20 @@ msgstr "Переместить разделы на новую вкладку"
msgid "Move the current field and the following fields to a new column"
msgstr "Переместить текущее поле и следующие поля в новый столбец"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Перейти к номеру строки"
#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Move to next step when clicked inside highlighted area."
-msgstr "Переход к следующему шагу при нажатии внутри выделенной области."
+msgstr ""
#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form
#. Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround"
-msgstr "Mozilla не поддерживает :has(), поэтому вы можете передать родительский селектор здесь в качестве обходного пути"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:43
msgid "Mr"
@@ -16575,13 +16744,13 @@ msgstr "Несколько корневых узлов не допускаютс
#. Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr "Должен быть общедоступный URL-адрес Google Sheets"
+msgstr ""
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))"
-msgstr "Должны быть заключены в '()' и включать '{0}', который является заполнителем для имени пользователя/логина. т.е. (&(objectclass=user)(uid={0}))"
+msgstr ""
#. Description of the 'Image Field' (Data) field in DocType 'DocType'
#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
@@ -16601,7 +16770,7 @@ msgstr "Необходимо указать запрос для выполнен
#. 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"
@@ -16631,7 +16800,7 @@ msgstr "ПРИМЕЧАНИЕ: Если Вы добавите состояния
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings"
-msgstr "ПРИМЕЧАНИЕ: Эта коробка подлежит амортизации. Пожалуйста, перенастройте LDAP для работы с более новыми настройками"
+msgstr ""
#. Label of the fieldname (Data) field in DocType 'DocField'
#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
@@ -16658,7 +16827,7 @@ msgstr "Имя (Название документа)"
msgid "Name already taken, please set a new name"
msgstr "Имя уже занято, пожалуйста, введите новое имя"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "Имя не может содержать специальные символы, такие как {0}"
@@ -16670,7 +16839,7 @@ msgstr "Имя типа документа (DocType), с которым вы х
msgid "Name of the new Print Format"
msgstr "Наименование нового формата печати"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "Имя {0} не может быть {1}"
@@ -16687,23 +16856,21 @@ 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
msgid "Naming Options:\n"
"- field:[fieldname] - By Field
- naming_series: - By Naming Series (field called naming_series must be present)
- Prompt - Prompt user for a name
- [series] - Series by prefix (separated by a dot); for example PRE.#####
\n"
"- format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
"
-msgstr "Параметры именования:\n"
-"- field:[fieldname] - По полю
- naming_series: - По серии именования (поле naming_series должно присутствовать)
- Запрос - Запрос имени у пользователя
- [series] — Серия по префиксу (разделённая точкой); например, PRE.#####
\n"
-"- Формат:ПРИМЕР-{MM}morewords{fieldname1}-{fieldname2}-{#####} — Заменить все слова в скобках (имена полей, даты (ДД, ММ, ГГ), серии) их значениями. Вне скобок можно использовать любые символы.
"
+msgstr ""
#. Label of the naming_rule (Select) field in DocType 'DocType'
#. Label of the naming_rule (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming Rule"
-msgstr "Правило именования"
+msgstr ""
#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming
#. Settings'
@@ -16711,7 +16878,7 @@ msgstr "Правило именования"
msgid "Naming Series"
msgstr "Серия названий"
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Обязательное указание серии"
@@ -16721,7 +16888,7 @@ 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
@@ -16735,57 +16902,57 @@ msgstr "Элемент панели навигации"
msgid "Navbar Settings"
msgstr "Настройки панели навигации"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Перейти по списку вниз"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Перейти по списку вверх"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "Перейти к основному содержанию"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+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/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "Нужна помощь?"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Требуется роль менеджера рабочего пространства для редактирования личных рабочих пространств других пользователей"
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Отрицательное значение"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr "Вложенные фильтры должны быть представлены в виде списка или последовательности."
@@ -16807,6 +16974,7 @@ msgstr "Никогда"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16823,7 +16991,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "Новый адрес"
@@ -16839,15 +17007,15 @@ msgstr "Новый контакт"
msgid "New Custom Block"
msgstr "Новый пользовательский блок"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
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 "Форма нового документа"
+msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.py:154
msgid "New Document Shared {0}"
@@ -16889,7 +17057,7 @@ msgstr "Новое сообщение со страницы контактов
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Новое имя"
@@ -16910,8 +17078,8 @@ msgstr "Новый 'Ввод в курс дела'"
msgid "New Password"
msgstr "Новый пароль"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Наименование нового формата печати"
@@ -16938,8 +17106,8 @@ msgstr "Новый ярлык"
msgid "New Users (Last 30 days)"
msgstr "Новые пользователи (последние 30 дней)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "Новое значение"
@@ -16947,7 +17115,7 @@ msgstr "Новое значение"
msgid "New Workflow Name"
msgstr "Новое имя рабочего процесса"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "Новое рабочее пространство"
@@ -16984,40 +17152,40 @@ msgstr "Доступны новые обновления"
#. 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:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Новый {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Новый {0} Создан"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Новый {0} {1} добавлен на панель управления {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "Создан новый {0} {1}"
@@ -17029,7 +17197,7 @@ msgstr "Новый {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Доступны новые {} версии для следующих приложений"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "У вновь созданного пользователя {0} не включено ни одной роли."
@@ -17050,7 +17218,7 @@ msgstr "Менеджер новостной рассылки"
msgid "Next"
msgstr "Далее"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "Далее"
@@ -17075,26 +17243,30 @@ msgstr "Следующие 7 дней"
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Next Action Email Template"
-msgstr "Шаблон письма следующего действия"
+msgstr ""
+
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+msgstr ""
#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Next Actions HTML"
-msgstr "Следующие действия HTML"
+msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
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 "Следующее исполнение"
+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:695
msgid "Next Month"
@@ -17107,7 +17279,7 @@ 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"
@@ -17116,19 +17288,19 @@ 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:691
msgid "Next Week"
@@ -17145,24 +17317,28 @@ 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'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Нет"
@@ -17188,7 +17364,7 @@ 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:309
@@ -17232,7 +17408,7 @@ msgstr "Фильтры не установлены"
msgid "No Google Calendar Event to sync."
msgstr "Нет событий Календаря Google для синхронизации."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "Нет изображений"
@@ -17251,23 +17427,23 @@ msgstr "Не найден пользователь LDAP для электрон
msgid "No Label"
msgstr "Нет этикетки"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr "Нет фирменного бланка"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "Имя не указано для {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "Нет Новых уведомлений"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "Разрешения не указаны"
@@ -17287,11 +17463,11 @@ msgstr "На этой панели нет разрешенных диаграм
msgid "No Preview"
msgstr "Без просмотра"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "Предпросмотр недоступен"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "Принтер недоступен."
@@ -17299,7 +17475,7 @@ msgstr "Принтер недоступен."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "Рабочие устройства RQ не подключены. Попробуйте перезапустить стенд."
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "Результатов нет"
@@ -17307,7 +17483,7 @@ msgstr "Результатов нет"
msgid "No Results found"
msgstr "Результаты не найдены"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "Роли не указаны"
@@ -17323,7 +17499,7 @@ msgstr "Нет предложений"
msgid "No Tags"
msgstr "Нет тегов"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "Нет предстоящих Событий"
@@ -17343,7 +17519,7 @@ msgstr "Предложения по автоматической оптимиз
msgid "No changes in document"
msgstr "Никаких изменений в документе"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "Никаких изменений не было сделано"
@@ -17407,7 +17583,7 @@ msgstr "Не найдено ни одного поля, которое можн
msgid "No file attached"
msgstr "Файл не прикреплен"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "Фильтры не найдены"
@@ -17448,18 +17624,18 @@ 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 ""
#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Sent SMS"
msgstr "Количество отправленных SMS"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "Нет разрешения на {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Нет разрешения на '{0}' {1}"
@@ -17468,7 +17644,7 @@ msgstr "Нет разрешения на '{0}' {1}"
msgid "No permission to read {0}"
msgstr "Нет разрешения на чтение {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "Нет разрешения на {0} {1} {2}"
@@ -17484,7 +17660,7 @@ msgstr "Нет записей в {0}"
msgid "No records tagged."
msgstr "Нет отмеченных записей."
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "Записи не будут экспортированы"
@@ -17492,7 +17668,7 @@ msgstr "Записи не будут экспортированы"
msgid "No rows"
msgstr "Нет строк"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr "Строки не выбраны"
@@ -17504,11 +17680,12 @@ msgstr "Без темы"
msgid "No template found at path: {0}"
msgstr "Не найден шаблон по пути: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr "Нет пользователя с ролью {0}"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "Нет значений для отображения"
@@ -17520,7 +17697,7 @@ msgstr "Нет {0}"
msgid "No {0} found"
msgstr "Не найдено {0}"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Нет {0}, соответствующих выбранным фильтрам. Очистите фильтры, чтобы увидеть все {0}."
@@ -17529,7 +17706,7 @@ msgid "No {0} mail"
msgstr "Нет почты {0}"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "№."
@@ -17546,7 +17723,7 @@ msgstr "Nomatim"
#: 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"
@@ -17565,19 +17742,19 @@ 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:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "Не разрешено"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "Не разрешено: Отключенный пользователь"
@@ -17600,7 +17777,7 @@ 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"
@@ -17619,7 +17796,7 @@ msgstr "Не связано ни с одной записью"
msgid "Not Nullable"
msgstr "Не допускается значение NULL"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17628,7 +17805,7 @@ msgstr "Не допускается значение NULL"
msgid "Not Permitted"
msgstr "Нет допуска"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "Не разрешается читать {0}"
@@ -17637,8 +17814,8 @@ msgstr "Не разрешается читать {0}"
msgid "Not Published"
msgstr "Не опубликовано"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17658,7 +17835,7 @@ msgstr "Не видели"
msgid "Not Sent"
msgstr "Не отправлено"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "Не установлено"
@@ -17672,15 +17849,15 @@ msgstr "Не установлено"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Не является действительным значением, разделенным запятыми (CSV-файл)"
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "Недопустимое изображение пользователя."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "Недопустимое действие рабочего процесса"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "Недействительный пользователь"
@@ -17688,7 +17865,7 @@ msgstr "Недействительный пользователь"
msgid "Not active"
msgstr "Не действует"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "Не разрешено для {0}: {1}"
@@ -17708,11 +17885,11 @@ msgstr "Не разрешается печатать отмененные док
msgid "Not allowed to print draft documents"
msgstr "Не разрешается распечатывать проекты документов"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "Не разрешено через проверку разрешения контроллера"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Не найдено"
@@ -17725,11 +17902,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Не в режиме разработчика! Установите в site_config.json или сделайте 'Custom' DocType."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Не разрешено"
@@ -17757,7 +17934,7 @@ msgstr "Примечание просмотрено"
msgid "Note:"
msgstr "Примечание:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Примечание: Изменение названия страницы приведет к поломке предыдущего URL-адреса этой страницы."
@@ -17769,13 +17946,13 @@ msgstr "Примечание: в некоторых часовых поясах
#. 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:394
msgid "Note: This will be shared with user."
@@ -17789,7 +17966,7 @@ msgstr "Примечание: Ваш запрос на удаление акка
msgid "Notes:"
msgstr "Примечания:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "Ничего нового"
@@ -17801,8 +17978,8 @@ msgstr "Ничего не осталось переделывать"
msgid "Nothing left to undo"
msgstr "Ничего не осталось, что можно было бы отменить"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17813,11 +17990,13 @@ msgid "Nothing to update"
msgstr "Нечего обновлять"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "Уведомление"
@@ -17833,7 +18012,7 @@ msgstr "Получатель уведомления"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "Настройки уведомлений"
@@ -17842,11 +18021,6 @@ msgstr "Настройки уведомлений"
msgid "Notification Subscribed Document"
msgstr "Уведомление о подписке на документ"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr "Краткое изложение уведомлений"
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "Уведомление отправлено"
@@ -17864,13 +18038,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "Уведомление: у пользователя {0} не установлен номер мобильного телефона"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Уведомления"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "Уведомления отключены"
@@ -17878,37 +18054,37 @@ 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
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:28
#: frappe/public/js/frappe/form/controls/time.js:37
@@ -17918,7 +18094,7 @@ 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
@@ -17935,7 +18111,7 @@ msgstr "Ссылка на номер карты"
#. 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'
@@ -17951,22 +18127,22 @@ 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 ""
#: frappe/core/doctype/doctype/doctype.py:444
#: frappe/public/js/frappe/doctype/index.js:66
@@ -17980,20 +18156,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 ""
#. 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 ""
#. 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 "Количество дней, по истечении которых срок действия ссылки Web View документа, переданной по электронной почте, истекает"
+msgstr ""
#. Label of the cache_keys (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -18030,7 +18206,7 @@ msgstr "OAuth-клиент"
#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "OAuth Client ID"
-msgstr "Идентификатор клиента OAuth"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -18065,7 +18241,7 @@ msgstr "OAuth включён, но не авторизован. Для этог
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "OPTIONS"
-msgstr "ВАРИАНТЫ"
+msgstr ""
#: frappe/public/js/form_builder/components/Tabs.vue:190
msgid "OR"
@@ -18075,12 +18251,12 @@ msgstr "ИЛИ"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP App"
-msgstr "Приложение OTP"
+msgstr ""
#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP Issuer Name"
-msgstr "Имя эмитента OTP"
+msgstr ""
#. Label of the otp_sms_template (Small Text) field in DocType 'System
#. Settings'
@@ -18106,7 +18282,7 @@ msgstr "Секретный пароль OTP сброшен. При следую
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr "Заполнитель OTP следует определить как {{ otp }} "
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "Настройка одноразового пароля (OTP) с помощью приложения OTP не завершена. Обратитесь к администратору."
@@ -18119,12 +18295,12 @@ 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
msgid "Office"
-msgstr "Офис"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -18139,14 +18315,14 @@ msgstr "Официальная документация"
#. Label of the offset_x (Int) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset X"
-msgstr "Смещение X"
+msgstr ""
#. Label of the offset_y (Int) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset Y"
-msgstr "Смещение Y"
+msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "Смещение должно быть неотрицательным целым числом"
@@ -18154,7 +18330,7 @@ msgstr "Смещение должно быть неотрицательным ц
msgid "Old Password"
msgstr "Старый пароль"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Старые и новые названия полей одинаковы."
@@ -18162,7 +18338,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'
@@ -18179,7 +18355,7 @@ 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
@@ -18209,7 +18385,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 ""
#: frappe/public/js/frappe/ui/filters/filter.js:66
#: frappe/public/js/frappe/ui/filters/filter.js:72
@@ -18221,7 +18397,7 @@ msgstr "В или После"
msgid "On or Before"
msgstr "В или До"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "На {0}, {1} написал:"
@@ -18229,7 +18405,7 @@ msgstr "На {0}, {1} написал:"
#: 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"
@@ -18243,7 +18419,7 @@ msgstr "Разрешение на регистрацию"
#. Label of the onboarding_status (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Onboarding Status"
-msgstr "Статус регистрации"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -18265,7 +18441,7 @@ msgstr "Ознакомление Завершено"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "После подачи документы не подлежат изменению. Их можно только отменить и внести поправки."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "После настройки пользователи смогут получить доступ только к тем документам (например, записи в блоге), на которые существует ссылка (например, Blogger)."
@@ -18281,11 +18457,11 @@ msgstr "Регистрационный код одноразового паро
msgid "One of"
msgstr "Один из"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "В одном запросе разрешено только 200 вставок"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Только администратор может удалить очередь электронной почты"
@@ -18304,16 +18480,16 @@ 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:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Для поля данных разрешены только следующие параметры:"
#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Only Send Records Updated in Last X Hours"
-msgstr "Отправлять только записи, обновленные за последние X часов"
+msgstr ""
#: frappe/core/doctype/file/file.py:167
msgid "Only System Managers can make this file public."
@@ -18329,11 +18505,11 @@ msgstr "Только менеджер рабочего пространства
msgid "Only allow System Managers to upload public files"
msgstr "Разрешить системным администраторам загружать только общедоступные файлы"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "Экспорт настроек разрешен только в режиме разработчика"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Отклонять можно только черновики документов"
@@ -18341,7 +18517,7 @@ 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."
@@ -18376,7 +18552,7 @@ msgstr "Выполнить эту задачу может только отве
msgid "Only {0} emailed reports are allowed per user."
msgstr "Только {0} отчетов разрешено отправлять по электронной почте на одного пользователя."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Ой! Что-то пошло не так."
@@ -18399,8 +18575,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Открыт"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18420,7 +18596,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"
@@ -18430,12 +18606,16 @@ msgstr "Открыть Справку"
#. Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr "Открытый справочный документ"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
msgstr "Открыть настройки"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Приложения с открытым исходным кодом для Интернета"
@@ -18443,14 +18623,14 @@ msgstr "Приложения с открытым исходным кодом д
#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Open URL in a New Tab"
-msgstr "Открыть URL в новой вкладке"
+msgstr ""
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr "Откройте диалоговое окно с обязательными полями для быстрого создания новой записи. Для отображения в диалоговом окне должно быть хотя бы одно обязательное поле."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Открыть модуль или инструмент"
@@ -18462,11 +18642,11 @@ msgstr "Открыть консоль"
msgid "Open in a new tab"
msgstr "Открыть в новой вкладке"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr "Открыть в новой вкладке"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Открыть элемент списка"
@@ -18481,23 +18661,23 @@ msgstr "Откройте приложение аутентификации на
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Открыть {0}"
#. Label of the openid_configuration (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "OpenID Configuration"
-msgstr "Конфигурация OpenID"
+msgstr ""
#: frappe/integrations/doctype/connected_app/connected_app.js:15
msgid "OpenID Configuration fetched successfully!"
@@ -18506,12 +18686,12 @@ msgstr "Конфигурация OpenID успешно получена!"
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "OpenLDAP"
-msgstr "OpenLDAP"
+msgstr ""
#. 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
@@ -18522,7 +18702,7 @@ msgstr "Операция"
msgid "Operator must be one of {0}"
msgstr "Оператор должен быть одним из {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr "Оператор {0} требует ровно 2 аргумента (левый и правый операнды)"
@@ -18548,19 +18728,19 @@ msgstr "Вариант 2"
msgid "Option 3"
msgstr "Вариант 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "Параметр {0} для поля {1} не является дочерней таблицей"
#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Optional: Always send to these ids. Each Email Address on a new row"
-msgstr "Необязательно: Всегда отправлять на эти адреса. Каждый адрес электронной почты в новой строке"
+msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr "Необязательно: Оповещение будет отправлено, если это выражение равно true"
+msgstr ""
#. Label of the options (Small Text) field in DocType 'DocField'
#. Label of the options (Data) field in DocType 'Report Column'
@@ -18582,16 +18762,16 @@ msgstr "Необязательно: Оповещение будет отправ
msgid "Options"
msgstr "Опции"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Параметры поля типа «Динамическая ссылка» должны указывать на другое поле ссылки с параметрами типа «DocType»"
#. Label of the options_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr "Помощь в выборе"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Варианты для поля Рейтинг могут варьироваться от 3 до 10."
@@ -18599,7 +18779,7 @@ msgstr "Варианты для поля Рейтинг могут варьир
msgid "Options for select. Each option on a new line."
msgstr "Варианты выбора. Каждый вариант с новой строки."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Параметры для {0} должны быть установлены до установки значения по умолчанию."
@@ -18607,7 +18787,7 @@ msgstr "Параметры для {0} должны быть установлен
msgid "Options is required for field {0} of type {1}"
msgstr "Параметры обязательны для поля {0} типа {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Параметры не установлены для поля ссылки {0}"
@@ -18623,7 +18803,7 @@ msgstr "Оранжевый"
msgid "Order"
msgstr "Порядок"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "Order By должен быть строкой"
@@ -18631,20 +18811,24 @@ msgstr "Order By должен быть строкой"
#. 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:21
msgid "Orientation"
msgstr "Ориентация"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Исходное значение"
@@ -18658,7 +18842,7 @@ 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
@@ -18669,7 +18853,7 @@ msgstr "Исходящие"
#. 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'
@@ -18682,13 +18866,13 @@ msgstr "Исходящие электронные письма (последни
#: 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"
@@ -18706,7 +18890,7 @@ msgstr "Outlook.com"
#: 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"
@@ -18719,42 +18903,44 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "Создание PDF-файла в процессе"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF-генератор"
#. Label of the pdf_page_height (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Height (in mm)"
-msgstr "Высота страницы PDF (в мм)"
+msgstr ""
#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr "Размер страницы PDF"
+msgstr ""
#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Width (in mm)"
-msgstr "Ширина страницы PDF (в мм)"
+msgstr ""
#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr "Настройки PDF"
+msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "Сбой создания PDF-файла"
@@ -18762,18 +18948,18 @@ msgstr "Сбой создания PDF-файла"
msgid "PDF generation failed because of broken image links"
msgstr "Создание PDF-файла не удалось из-за неработающих ссылок на изображения"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "Создание PDF-файлов может работать не так, как ожидается."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "Печать PDF-файлов через «Raw Print» не поддерживается."
#. Label of the pid (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "PID"
-msgstr "PID"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
@@ -18787,7 +18973,7 @@ msgstr "POST"
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "PUT"
-msgstr "PUT"
+msgstr ""
#. Label of the package (Link) field in DocType 'Module Def'
#. Name of a DocType
@@ -18810,7 +18996,7 @@ 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
@@ -18856,7 +19042,7 @@ msgstr "Страница"
#: 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
@@ -18867,12 +19053,12 @@ 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 "Страница HTML"
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
@@ -18885,24 +19071,24 @@ 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"
@@ -18915,7 +19101,7 @@ 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)"
@@ -18925,7 +19111,7 @@ msgstr "Ширина страницы (в мм)"
msgid "Page has expired!"
msgstr "Срок действия страницы истек!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Высота и ширина страницы не могут быть равны нулю"
@@ -18941,7 +19127,7 @@ msgstr "Страница для отображения на сайте\n"
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Страница {0} из {1}"
@@ -18952,21 +19138,21 @@ msgid "Parameter"
msgstr "Параметр"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Родитель"
#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Parent DocType"
-msgstr "Родительский DocType"
+msgstr ""
#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
#. Label of the parent_document_type (Link) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
-msgstr "Тип родительского документа"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
@@ -18976,20 +19162,20 @@ msgstr "Для создания номерной карты требуется
#. 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:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Родительское поле (дерево)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Родительское поле должно быть допустимым именем поля"
@@ -19001,16 +19187,16 @@ 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:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
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"
@@ -19028,18 +19214,18 @@ msgstr "Parent — имя документа, в который будут до
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr "Группировка по принципу «родитель-ребенок» или «ребенок-разный ребенок» не допускается."
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "Родительское поле не указано в {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "Для вставки дочерней записи необходимы поля Parenttype, Parent и Parentfield"
#. 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
@@ -19049,9 +19235,9 @@ 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'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Участники"
@@ -19065,7 +19251,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
@@ -19088,20 +19274,20 @@ msgstr "Пассивный"
msgid "Password"
msgstr "Пароль"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "Пароль отправлен"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Сброс пароля"
#. Label of the password_reset_limit (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Password Reset Link Generation Limit"
-msgstr "Лимит генерации ссылок для сброса пароля"
+msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "Пароль не может быть отфильтрован"
@@ -19112,7 +19298,7 @@ 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 ""
#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
@@ -19130,11 +19316,11 @@ msgstr "Отсутствует пароль в учетной записи эл
msgid "Password not found for {0} {1} {2}"
msgstr "Пароль не найден для {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr "Пароль не соответствует требованиям"
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Инструкции по сбросу пароля отправлены на электронную почту {}"
@@ -19146,7 +19332,7 @@ msgstr "Пароль установлен"
msgid "Password size exceeded the maximum allowed size"
msgstr "Размер пароля превышает максимально допустимый размер"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "Размер пароля превышает максимально допустимый размер."
@@ -19167,7 +19353,7 @@ msgstr "Вставить"
#: 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
@@ -19195,20 +19381,20 @@ 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 Certs"
+msgstr ""
#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr "Путь к сертификату сервера"
+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/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "Путь {0} не находится внутри модуля {1}"
@@ -19219,7 +19405,7 @@ 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
@@ -19242,7 +19428,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
@@ -19259,7 +19445,7 @@ msgstr "Отложенные задания"
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Verification"
-msgstr "Ожидание проверки"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -19273,7 +19459,7 @@ msgstr "Процент"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "Процент"
+msgstr ""
#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
#. Report'
@@ -19286,22 +19472,22 @@ 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:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "Окончательно отменить {0}?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "Окончательно удалить {0}?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "Отправить навсегда {0}?"
@@ -19309,7 +19495,11 @@ msgstr "Отправить навсегда {0}?"
msgid "Permanently delete {0}?"
msgstr "Удалить {0} навсегда?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Ошибка доступа"
@@ -19319,12 +19509,12 @@ msgid "Permission Inspector"
msgstr "Инспектор прав доступа"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Уровень Доступов"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Уровни доступа"
@@ -19333,20 +19523,15 @@ msgstr "Уровни доступа"
msgid "Permission Log"
msgstr "Журнал доступа"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "Менеджер доступа"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
-msgstr "Запрос разрешения"
+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'
@@ -19355,7 +19540,7 @@ msgstr "Правила выдачи разрешений"
#: frappe/core/doctype/permission_inspector/permission_inspector.json
#: frappe/core/doctype/permission_type/permission_type.json
msgid "Permission Type"
-msgstr "Тип разрешения"
+msgstr ""
#: frappe/core/doctype/permission_type/permission_type.py:40
msgid "Permission Type '{0}' is reserved. Please choose another name."
@@ -19368,7 +19553,6 @@ msgstr "Тип разрешения «{0}» зарезервирован. Выб
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19379,13 +19563,12 @@ msgstr "Тип разрешения «{0}» зарезервирован. Выб
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Разрешения"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Ошибка доступа"
@@ -19397,11 +19580,11 @@ msgstr "Разрешения автоматически применяются
msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
msgstr "Разрешения устанавливаются для ролей и типов документов (называемых DocTypes) путем задания таких прав, как чтение, запись, создание, удаление, отправка, отмена, изменение, отчет, импорт, экспорт, печать, электронная почта и установка разрешений пользователя."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Разрешения на уровне 0 — это разрешения уровня документа, т.е. они являются первичными для доступа к документу."
@@ -19420,12 +19603,12 @@ msgstr "Разрешенные документы для пользовател
#. 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
@@ -19469,22 +19652,22 @@ 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:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Номер телефона {0} указанный в поле {1} недействителен."
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Выберите столбцы"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr "Пирог"
+msgstr ""
#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19512,12 +19695,12 @@ 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}"
@@ -19535,7 +19718,7 @@ msgstr "Пожалуйста, скопируйте эту тему веб-сай
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Чтобы использовать функциональность ldap, установите библиотеку ldap3 через pip."
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Пожалуйста, установите диаграмму"
@@ -19551,7 +19734,7 @@ msgstr "Пожалуйста, добавьте тему к вашему элек
msgid "Please add a valid comment."
msgstr "Пожалуйста, добавьте обоснованный комментарий."
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Попросите администратора подтвердить вашу регистрацию"
@@ -19559,11 +19742,11 @@ msgstr "Попросите администратора подтвердить
msgid "Please attach a file first."
msgstr "Пожалуйста, сначала прикрепите файл."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Прикрепите файл изображения, чтобы задать HTML для нижнего колонтитула."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Прикрепите файл изображения, чтобы задать HTML для фирменного бланка."
@@ -19575,11 +19758,11 @@ msgstr "Пожалуйста, прикрепите пакет"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Проверьте значения фильтра, установленные для диаграммы панели мониторинга: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Проверьте значение параметра «Извлечь из», заданное для поля {0}"
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Пожалуйста, проверьте свою электронную почту для подтверждения"
@@ -19611,7 +19794,7 @@ msgstr "Нажмите на следующую ссылку, чтобы уста
msgid "Please confirm your action to {0} this document."
msgstr "Пожалуйста, подтвердите свое действие в {0} этом документе."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Для установки корректной версии обратитесь к своему системному администратору."
@@ -19641,10 +19824,10 @@ msgstr "Прежде чем отключать вход с помощью име
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Пожалуйста, включите всплывающие окна"
@@ -19657,7 +19840,7 @@ msgstr "Пожалуйста, разрешите всплывающие окна
msgid "Please enable {} before continuing."
msgstr "Прежде чем продолжить, включите {}."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Убедитесь, что в вашем профиле указан адрес электронной почты"
@@ -19731,15 +19914,15 @@ msgstr "Пожалуйста, войдите в систему, чтобы ос
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Пожалуйста, убедитесь, что справочные коммуникационные документы не имеют циклических ссылок."
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Пожалуйста, обновите страницу, чтобы получить последнюю версию документа."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Пожалуйста, удалите сопоставление принтера в настройках принтера и повторите попытку."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Пожалуйста, сохраните перед прикреплением."
@@ -19755,7 +19938,7 @@ msgstr "Пожалуйста, сохраните документ перед у
msgid "Please save the form before previewing the message"
msgstr "Пожалуйста, сохраните форму перед предварительным просмотром сообщения"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Пожалуйста, сначала сохраните отчет"
@@ -19775,7 +19958,7 @@ msgstr "Сначала выберите тип объекта"
msgid "Please select Minimum Password Score"
msgstr "Пожалуйста, выберите минимальный балл пароля"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Пожалуйста, выберите поля X и Y"
@@ -19783,7 +19966,7 @@ msgstr "Пожалуйста, выберите поля X и Y"
msgid "Please select a DocType in options before setting filters"
msgstr "Перед настройкой фильтров выберите DocType в параметрах"
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Пожалуйста, выберите код страны для поля {1}."
@@ -19823,7 +20006,7 @@ msgstr "Пожалуйста, выберите тип документа."
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Please select the LDAP Directory being used"
-msgstr "Выберите используемый каталог LDAP"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:100
msgid "Please select {0}"
@@ -19833,11 +20016,11 @@ msgstr "Пожалуйста, выберите {0}"
msgid "Please set Email Address"
msgstr "Пожалуйста, укажите адрес электронной почты"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Установите сопоставление принтера для этого формата печати в настройках принтера"
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Пожалуйста, установите фильтры"
@@ -19845,7 +20028,7 @@ msgstr "Пожалуйста, установите фильтры"
msgid "Please set filters value in Report Filter table."
msgstr "Пожалуйста, установите значение фильтров в таблице Фильтр Отчета."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Пожалуйста, укажите название документа"
@@ -19865,7 +20048,7 @@ msgstr "Пожалуйста, настройте SMS перед использо
msgid "Please setup a message first"
msgstr "Пожалуйста, сначала настройте сообщение"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Настройте исходящую учетную запись электронной почты по умолчанию в разделе «Настройки» > «Учетная запись электронной почты»"
@@ -19877,7 +20060,7 @@ msgstr "Настройте учетную запись исходящей эле
msgid "Please specify"
msgstr "Пожалуйста, сформулируйте"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Укажите допустимый родительский DocType для {0}"
@@ -19905,7 +20088,7 @@ msgstr "Пожалуйста, укажите, какое поле даты и в
msgid "Please specify which value field must be checked"
msgstr "Пожалуйста, укажите, какое поле значения необходимо проверить"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Пожалуйста, попробуйте еще раз"
@@ -19940,13 +20123,13 @@ 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 "Элемент Popover"
+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'
@@ -19957,7 +20140,7 @@ msgstr "Всплывающее или модальное описание"
#: frappe/email/doctype/email_domain/email_domain.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr "Порт"
+msgstr ""
#: frappe/www/me.html:81
msgid "Portal"
@@ -19966,7 +20149,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
@@ -19985,7 +20168,7 @@ 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
@@ -20002,7 +20185,7 @@ 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
@@ -20013,7 +20196,7 @@ 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 ""
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
@@ -20024,13 +20207,13 @@ 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:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "Точность ({0}) для {1} не может быть больше его длины ({2})."
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Точность должна составлять от 1 до 6"
@@ -20045,12 +20228,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
@@ -20058,7 +20241,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'
@@ -20082,11 +20265,11 @@ msgstr "Подготовленный отчет пользователя"
msgid "Prepared report render failed"
msgstr "Подготовленный отчет не удалось отобразить"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Подготовка отчета"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Добавьте шаблон к сообщению электронной почты"
@@ -20094,7 +20277,7 @@ msgstr "Добавьте шаблон к сообщению электронно
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Нажмите клавишу Alt, чтобы вызвать дополнительные сочетания клавиш в меню и боковой панели"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Нажмите Enter, чтобы сохранить"
@@ -20112,19 +20295,19 @@ msgstr "Нажмите Enter, чтобы сохранить"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Просмотр"
#. Label of the preview_html (HTML) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr "Предварительный просмотр HTML"
+msgstr ""
#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr "Предварительное сообщение"
+msgstr ""
#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
@@ -20134,7 +20317,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}"
@@ -20156,16 +20339,16 @@ msgstr "Предпросмотр:"
msgid "Previous"
msgstr "Предыдущий"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Предыдущий"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Предыдущий документ"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Предыдущая публикация"
@@ -20179,7 +20362,7 @@ msgstr "Предыдущая публикация"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: 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"
@@ -20188,7 +20371,7 @@ 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"
@@ -20218,19 +20401,19 @@ msgstr "Первичный ключ doctype {0} не может быть изм
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Распечатать"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Распечатать"
@@ -20248,8 +20431,9 @@ msgstr "Печать документов"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20286,14 +20470,14 @@ msgstr "Формат печати для"
#. Label of the print_format_help (HTML) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
-msgstr "Справка о формате печати"
+msgstr ""
#. Label of the print_format_type (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Type"
-msgstr "Тип формата печати"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "Формат печати не найден"
@@ -20314,7 +20498,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'
@@ -20324,13 +20508,13 @@ 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:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Язык печати"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Печать Отправлено на принтер!"
@@ -20338,13 +20522,13 @@ msgstr "Печать Отправлено на принтер!"
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "Сервер печати"
+msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Настройки печати"
@@ -20361,12 +20545,12 @@ 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'
@@ -20375,28 +20559,28 @@ 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:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Печать документа"
#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "Печать на фирменном бланке"
+msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Принтер"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Сопоставление принтеров"
@@ -20404,17 +20588,17 @@ msgstr "Сопоставление принтеров"
#. Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "Имя принтера"
+msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Настройки принтера"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Сопоставление принтеров не установлено."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Печать не удалась"
@@ -20463,7 +20647,7 @@ msgstr "Совет: Добавьте ссылку: {{ reference_doctype }}
msgid "Proceed"
msgstr "Продолжить"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Продолжать в любом случае"
@@ -20482,7 +20666,7 @@ msgstr "Профессор"
#. Group in User's connections
#: frappe/core/doctype/user/user.json
msgid "Profile"
-msgstr "Профиль"
+msgstr ""
#. Label of a field in the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
@@ -20503,9 +20687,9 @@ msgid "Project"
msgstr "Проект"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "Свойство"
@@ -20517,7 +20701,7 @@ 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
@@ -20532,7 +20716,7 @@ msgstr "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 "Тип собственности"
+msgstr ""
#. Label of the protect_attached_files (Check) field in DocType 'DocType'
#. Label of the protect_attached_files (Check) field in DocType 'Customize
@@ -20550,14 +20734,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 ""
#. 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'
@@ -20566,7 +20750,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'
@@ -20575,7 +20759,7 @@ msgstr "Имя поставщика"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Публичный"
@@ -20626,7 +20810,7 @@ msgstr "Опубликованные веб страницы"
#. 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"
@@ -20636,23 +20820,23 @@ msgstr "Получить письма"
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr "Извлечь из календаря Google"
+msgstr ""
#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr "Извлечение из контактов Google"
+msgstr ""
#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr "Извлечено из Google Calendar"
+msgstr ""
#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr "Извлечено из Google Contacts"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.js:209
msgid "Pulling emails..."
@@ -20698,13 +20882,13 @@ msgstr "Push-уведомления"
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr "Передача данных в Календарь Google"
+msgstr ""
#. Label of the push_to_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr "Передача данных в Контакты Google"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
@@ -20725,7 +20909,7 @@ msgstr "QR-код"
msgid "QR Code for Login Verification"
msgstr "QR-код для подтверждения входа"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ Лоток не работает:"
@@ -20746,18 +20930,18 @@ msgstr "Ежеквартально"
#: 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
@@ -20785,9 +20969,9 @@ msgstr "Запрос должен иметь тип SELECT или WITH толь
#: 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:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "Очередь перегружена"
@@ -20799,23 +20983,23 @@ 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 "Очередь в фоновом режиме (BETA)"
+msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Очередь должна быть одной из {0}"
#. Label of the queue (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue(s)"
-msgstr "Очередь(и)"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
@@ -20829,12 +21013,12 @@ 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:186
msgid "Queued for Submission. You can track the progress over {0}."
@@ -20849,7 +21033,7 @@ msgstr "В очереди на резервное копирование. Вы
msgid "Queues"
msgstr "Очереди"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "Очередь {0} для отправки"
@@ -20868,13 +21052,13 @@ msgstr "Краткая помощь по настройке разрешений
#. 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:314
msgid "Quoting must be between 0 and 3"
@@ -20884,7 +21068,7 @@ msgstr "Цитата должна быть от 0 до 3"
#. 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "RAW Information Log"
-msgstr "Информационный журнал RAW"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/rq_job/rq_job.json
@@ -20901,7 +21085,7 @@ msgstr "Работник RQ"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Random"
-msgstr "Случайный"
+msgstr ""
#: frappe/website/report/website_analytics/website_analytics.js:20
msgid "Range"
@@ -20911,7 +21095,7 @@ msgstr "Диапазон"
#. Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Rate Limiting"
-msgstr "Ограничение скорости"
+msgstr ""
#. Label of the rate_limit_email_link_login (Int) field in DocType 'System
#. Settings'
@@ -20939,7 +21123,16 @@ msgstr "Необработанные команды"
#. Label of the raw (Code) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Raw Email"
-msgstr "Необработанная электронная почта"
+msgstr ""
+
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
@@ -20947,9 +21140,9 @@ 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:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Настройка печати Raw"
@@ -20967,7 +21160,7 @@ msgstr "Ответ:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Ответ: {0}"
@@ -20978,11 +21171,12 @@ msgstr "Ответ: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21012,14 +21206,14 @@ 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 ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Режим \"только для чтения\""
@@ -21027,13 +21221,13 @@ 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"
@@ -21059,7 +21253,7 @@ msgstr "В реальном времени (SocketIO)"
msgid "Reason"
msgstr "Причина"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Перестроить"
@@ -21084,24 +21278,24 @@ 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
msgid "Receiver Parameter"
-msgstr "Параметр приемника"
+msgstr ""
#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
msgstr "Последние годы легко угадать."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Недавние"
@@ -21110,7 +21304,7 @@ msgstr "Недавние"
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr "Получатель"
+msgstr ""
#. Label of the recipient_account_field (Data) field in DocType 'DocType'
#. Label of the recipient_account_field (Data) field in DocType 'Customize
@@ -21123,7 +21317,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'
@@ -21131,7 +21325,7 @@ 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
@@ -21152,7 +21346,7 @@ msgstr "Рекомендуемый индекс регистратора"
msgid "Records for following doctypes will be filtered"
msgstr "Будут отфильтрованы записи для следующих типов документов"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Рекурсивная выборка из"
@@ -21177,25 +21371,25 @@ msgstr "Перенаправить на путь"
#. Label of the redirect_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Redirect URI"
-msgstr "Перенаправление URI"
+msgstr ""
#. Label of the redirect_uri_bound_to_authorization_code (Data) field in
#. DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr "Перенаправление URI, привязанного к коду авторизации"
+msgstr ""
#. 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 ""
#. 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 ""
#. Description of the 'Default App' (Select) field in DocType 'System Settings'
#. Description of the 'Default App' (Select) field in DocType 'User'
@@ -21207,7 +21401,7 @@ msgstr "Перенаправление в выбранное приложени
#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Redirect to this URL after successful confirmation."
-msgstr "Перенаправление на этот URL после успешного подтверждения."
+msgstr ""
#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -21218,12 +21412,12 @@ msgstr "Перенаправления"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Кэш-сервер Redis не работает. Обратитесь в службу технической поддержки или к администратору"
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Повторить"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Повторить последнее действие"
@@ -21276,14 +21470,14 @@ msgstr "Справочный документ"
#. Label of the reference_name (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr "Ссылка DocName"
+msgstr ""
#. Label of the reference_doctype (Link) field in DocType 'Error Log'
#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/error_log/error_log.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr "Ссылка DocType"
+msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
@@ -21295,7 +21489,7 @@ msgstr "Обязательно укажите тип документа и им
#: frappe/core/doctype/submission_queue/submission_queue.json
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr "Ссылка Docname"
+msgstr ""
#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
@@ -21406,7 +21600,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'
@@ -21415,19 +21609,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}"
@@ -21439,12 +21633,12 @@ msgstr "Ссылка: {0} {1}"
msgid "Referrer"
msgstr "Реферер"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21459,9 +21653,9 @@ msgstr "Обновить все"
#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Refresh Google Sheet"
-msgstr "Обновить лист Google"
+msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "Обновить предварительный просмотр печати"
@@ -21474,9 +21668,9 @@ 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:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Обновление"
@@ -21487,7 +21681,7 @@ msgstr "Обновление"
msgid "Refreshing..."
msgstr "Обновление..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Зарегистрирован, но отключен"
@@ -21506,18 +21700,18 @@ msgstr "URL-адрес сервера ретрансляции отсутств
#. 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
msgid "Release"
-msgstr "Выпуск"
+msgstr ""
#. Label of the release_notes (Markdown Editor) field in DocType 'Package
#. Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
-msgstr "Примечания к выпуску"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:48
#: frappe/core/doctype/communication/communication.js:159
@@ -21531,12 +21725,10 @@ 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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Перезагрузить"
@@ -21548,7 +21740,7 @@ msgstr "Перезагрузить файл"
msgid "Reload List"
msgstr "Перезагрузить список"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Перезагрузить отчет"
@@ -21559,7 +21751,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
@@ -21567,7 +21759,7 @@ msgstr "Запомнить последнее выбранное значени
msgid "Remind At"
msgstr "Напомнить в"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Напомнить мне"
@@ -21647,9 +21839,9 @@ msgid "Removed"
msgstr "Удалено"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21677,44 +21869,44 @@ msgstr "В этом разделе отображаются метки слев
msgid "Reopen"
msgstr "Возобновить"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
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
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"
@@ -21724,7 +21916,7 @@ msgstr "Повторы типа \"aaa\" легко угадать"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Повторы типа \"abcabcabc\" угадать лишь немного сложнее, чем \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Повторяет {0}"
@@ -21787,6 +21979,7 @@ msgstr "Ответить Всем"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21801,10 +21994,9 @@ msgstr "Ответить Всем"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Отчет"
@@ -21824,7 +22016,7 @@ 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:156
msgid "Report Document Error"
@@ -21848,13 +22040,13 @@ 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
@@ -21873,7 +22065,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Название отчета"
@@ -21892,7 +22084,7 @@ msgstr "Ссылка на отчет DocType"
#. 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'
@@ -21901,20 +22093,16 @@ 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:204
msgid "Report View"
msgstr "Просмотр отчёта"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Сообщить об ошибке"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Отчет не может быть установлен для типов Single"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21925,7 +22113,7 @@ msgstr "Отчет не содержит данных, пожалуйста, и
msgid "Report has no numeric fields, please change the Report Name"
msgstr "В отчете нет числовых полей, пожалуйста, измените название отчета"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Отчет начат, нажмите для просмотра статуса"
@@ -21937,7 +22125,7 @@ msgstr "Лимит отчетов достигнут"
msgid "Report timed out."
msgstr "Отчет завершен по времени."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Отчет успешно обновлен"
@@ -21945,12 +22133,12 @@ msgstr "Отчет успешно обновлен"
msgid "Report was not saved (there were errors)"
msgstr "Отчет не был сохранен (были ошибки)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Отчет с более чем 10 столбцами выглядит лучше в альбомной ориентации."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Отчет {0}"
@@ -21973,7 +22161,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Отчеты"
@@ -21981,7 +22169,7 @@ msgstr "Отчеты"
msgid "Reports & Masters"
msgstr "Отчеты и настройки"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Отчеты уже в очереди"
@@ -21997,7 +22185,7 @@ msgstr "Представляет состояния, разрешенные в
#: frappe/integrations/doctype/webhook/webhook.js:101
msgid "Request Body"
-msgstr "Тело запроса"
+msgstr ""
#. Label of the data (Code) field in DocType 'Integration Request'
#. Title of the request-data Web Form
@@ -22005,55 +22193,55 @@ msgstr "Тело запроса"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/website/web_form/request_data/request_data.json
msgid "Request Data"
-msgstr "Запрос данных"
+msgstr ""
#. Label of the request_description (Data) field in DocType 'Integration
#. Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Description"
-msgstr "Описание запроса"
+msgstr ""
#. Label of the request_headers (Code) field in DocType 'Recorder'
#. Label of the request_headers (Code) field in DocType 'Integration Request'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Headers"
-msgstr "Заголовки запросов"
+msgstr ""
#. Label of the request_id (Data) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request ID"
-msgstr "Идентификатор запроса"
+msgstr ""
#. Label of the rate_limit_count (Int) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Request Limit"
-msgstr "Лимит запросов"
+msgstr ""
#. Label of the request_method (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Method"
-msgstr "Метод запроса"
+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
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "Время ожидания запроса истекло"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Истекло время ожидания запроса"
#. Label of the request_url (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request URL"
-msgstr "URL-адрес запроса"
+msgstr ""
#. Title of the request-to-delete-data Web Form
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
@@ -22069,19 +22257,19 @@ msgstr "Запрошенные номера"
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Require Trusted Certificate"
-msgstr "Требуется доверенный сертификат"
+msgstr ""
#. Description of the 'LDAP search path for Groups' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com"
-msgstr "Требуется любой действительный путь fdn. Например, ou=groups,dc=example,dc=com"
+msgstr ""
#. Description of the 'LDAP search path for Users' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com"
-msgstr "Требуется любой действительный путь fdn. Например, ou=users,dc=example,dc=com"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:279
msgid "Res: {0}"
@@ -22136,19 +22324,19 @@ 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'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Template"
-msgstr "Шаблон для сброса пароля"
+msgstr ""
#: frappe/core/page/permission_manager/permission_manager.js:116
msgid "Reset Permissions for {0}?"
@@ -22162,7 +22350,7 @@ msgstr "Сброс по умолчанию"
msgid "Reset sorting"
msgstr "Сброс сортировки"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Сброс по умолчанию"
@@ -22208,7 +22396,7 @@ msgstr "Ресурс TOS URI"
#: 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_headers (Code) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
@@ -22218,9 +22406,9 @@ 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:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Остаток дня"
@@ -22229,7 +22417,7 @@ msgstr "Остаток дня"
msgid "Restore"
msgstr "Восстановить"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Восстановить исходные права доступа"
@@ -22240,7 +22428,7 @@ 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"
@@ -22249,7 +22437,12 @@ msgstr "Восстановление удаленного документа"
#. Label of the restrict_ip (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr "Ограничить IP"
+msgstr ""
+
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
@@ -22259,27 +22452,27 @@ 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 ""
#: frappe/public/js/frappe/list/list_view.js:199
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Ограничения"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Итог"
@@ -22309,7 +22502,7 @@ msgstr "Изменение длины на {0} для '{1}' в '{2}'. Устан
#. Label of the revocation_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Revocation URI"
-msgstr "URI отзыва"
+msgstr ""
#: frappe/www/third_party_apps.html:47
msgid "Revoke"
@@ -22318,7 +22511,7 @@ 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 'Web Page'
#: frappe/website/doctype/web_page/web_page.js:92
@@ -22326,9 +22519,15 @@ msgstr "Отозвано"
msgid "Rich Text"
msgstr "Форматированный текст"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22344,12 +22543,12 @@ 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
@@ -22363,8 +22562,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22379,8 +22576,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22402,7 +22598,7 @@ msgstr "Роль 'Desk User' будет присвоена всем пользо
#: 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
@@ -22424,7 +22620,7 @@ msgstr "Разрешения ролей"
msgid "Role Permissions Manager"
msgstr "Менеджер разрешений ролей"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Управление разрешениями ролей"
@@ -22432,11 +22628,9 @@ msgstr "Управление разрешениями ролей"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Профиль роли"
@@ -22456,9 +22650,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:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Роль установлена в соответствии с типом пользователя {0}"
@@ -22498,20 +22692,20 @@ msgstr "Роли и права доступа"
#: 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 ""
#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
#. and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr "Роли Html"
+msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:7
msgid "Roles can be set for users from their User page."
@@ -22524,12 +22718,12 @@ msgstr "Root Пользователь {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'
@@ -22570,27 +22764,27 @@ 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 ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Строка"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "Строка #"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Строка # {0}: Пользователь, не являющийся администратором, не может установить роль {1} на пользовательский doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Строка #{0}:"
@@ -22606,18 +22800,18 @@ 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 "Индексы строк"
+msgstr ""
#. Label of the row_name (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Row Name"
-msgstr "Имя строки"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:509
msgid "Row Number"
msgstr "Номер строки"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Изменены значения строк"
@@ -22636,14 +22830,14 @@ msgstr "Строка {0}: Не разрешено включать опцию \"
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Добавленные строки"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Удаленные строки"
@@ -22658,15 +22852,15 @@ msgstr "Пороговое значение строк для поиска по
#. Label of the rule (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr "Правило"
+msgstr ""
#. Label of the section_break_3 (Section Break) field in DocType 'Document
#. Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr "Условия правил"
+msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Правило для этой комбинации doctype, role, permlevel и if-owner уже существует."
@@ -22678,29 +22872,29 @@ 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
msgid "Rules with higher priority number will be applied first."
-msgstr "Правила с более высоким номером приоритета будут применяться в первую очередь."
+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"
@@ -22723,7 +22917,7 @@ 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 "URL-адрес SMS-шлюза"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/sms_log/sms_log.json
@@ -22746,7 +22940,7 @@ msgstr "Настройки СМС"
msgid "SMS sent successfully"
msgstr "SMS успешно отправлено"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS не было отправлено. Пожалуйста, свяжитесь с администратором."
@@ -22762,7 +22956,7 @@ 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 ""
#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder/recorder.js:85
@@ -22773,21 +22967,21 @@ msgstr "SQL Explain"
#. Label of the sql_output (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
-msgstr "Вывод SQL"
+msgstr ""
#. Label of the sql_queries (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
-msgstr "SQL-запросы"
+msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr "Функции SQL не допускаются в виде строк в SELECT: {0}. Вместо этого используйте синтаксис словаря, например {{'COUNT': '*'}}."
#. 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 ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
@@ -22831,7 +23025,7 @@ 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'
@@ -22852,22 +23046,23 @@ msgstr "Суббота"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22880,7 +23075,7 @@ msgid "Save Anyway"
msgstr "Сохранить в любом случае"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Сохранить как"
@@ -22888,7 +23083,7 @@ msgstr "Сохранить как"
msgid "Save Customizations"
msgstr "Сохранить настройки"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Сохранить отчет"
@@ -22899,27 +23094,27 @@ 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 "Сохраните документ."
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Сохранено"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Сохранённые фильтры"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Сохранение"
@@ -22928,11 +23123,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Сохранение"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr "Сохранение изменений..."
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Сохранение настроек..."
@@ -22982,7 +23177,7 @@ 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 "Запланированное задание"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
@@ -23025,7 +23220,7 @@ 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:124
msgid "Scheduler Inactive"
@@ -23055,7 +23250,7 @@ msgstr "Планировщик: Неактивен"
#. Label of the scope (Data) field in DocType 'OAuth Scope'
#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "Scope"
-msgstr "Область применения"
+msgstr ""
#. Label of the sb_scope_section (Section Break) field in DocType 'Connected
#. App'
@@ -23070,7 +23265,7 @@ msgstr "Область применения"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Scopes"
-msgstr "Прицелы"
+msgstr ""
#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -23090,7 +23285,7 @@ msgstr "Поддерживаемые области"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Script"
-msgstr "Скрипт"
+msgstr ""
#. Name of a role
#: frappe/core/doctype/server_script/server_script.json
@@ -23100,12 +23295,12 @@ 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
msgid "Script Type"
-msgstr "Тип сценария"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/website_script/website_script.json
@@ -23122,12 +23317,12 @@ msgstr "Скриптинг"
#. Label of the section_break_6 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Scripting / Style"
-msgstr "Скриптинг / Стиль"
+msgstr ""
#. Label of the scripts_section (Section Break) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Scripts"
-msgstr "Скрипты"
+msgstr ""
#. Label of the search_section (Section Break) field in DocType 'System
#. Settings'
@@ -23136,7 +23331,7 @@ msgstr "Скрипты"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23147,16 +23342,16 @@ 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'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr "Поля поиска"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Помощь в поиске"
@@ -23164,7 +23359,7 @@ msgstr "Помощь в поиске"
#. Search Settings'
#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Search Priorities"
-msgstr "Приоритеты поиска"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132
msgid "Search Results"
@@ -23174,7 +23369,7 @@ msgstr "Результаты поиска"
msgid "Search by filename or extension"
msgstr "Поиск по имени или расширению файла"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Поле поиска {0} недействительно"
@@ -23191,12 +23386,12 @@ msgstr "Поиск типов полей..."
msgid "Search for anything"
msgstr "Поиск чего угодно"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "Искать {0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Поиск по типу документа"
@@ -23227,7 +23422,7 @@ msgstr "Секунды"
#: 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'
@@ -23242,7 +23437,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"
@@ -23251,7 +23446,7 @@ msgstr "Заголовок раздела"
#. Label of the section_id (Data) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Section ID"
-msgstr "Идентификатор секции"
+msgstr ""
#: frappe/public/js/form_builder/components/Section.vue:28
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8
@@ -23266,17 +23461,17 @@ msgstr "Раздел должен иметь хотя бы один столбе
#. Label of the sb3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Security Settings"
-msgstr "Настройки безопасности"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Смотреть все Деятельность"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Посмотреть все прошлые отчеты."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Смотрите на сайте"
@@ -23305,12 +23500,12 @@ 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'
@@ -23326,24 +23521,26 @@ msgstr "Стол"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Выбрать"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Выбрать все"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23359,7 +23556,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Выберите столбцы"
@@ -23380,7 +23577,7 @@ msgstr "Выберите панель инструментов"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Select Date Range"
-msgstr "Выберите диапазон дат"
+msgstr ""
#. Label of the doc_type (Link) field in DocType 'Web Form'
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28
@@ -23392,7 +23589,7 @@ msgstr "Выберите DocType"
#. Label of the reference_doctype (Link) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Select Doctype"
-msgstr "Выберите Doctype"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50
#: frappe/workflow/page/workflow_builder/workflow_builder.js:50
@@ -23403,13 +23600,13 @@ msgstr "Выберите тип документа"
msgid "Select Document Type or Role to start."
msgstr "Выберите тип документа или роль, чтобы начать работу."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Выберите поле"
@@ -23418,7 +23615,7 @@ msgstr "Выберите поле"
msgid "Select Field..."
msgstr "Выберите поле..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Выбрать поля"
@@ -23427,19 +23624,19 @@ msgstr "Выбрать поля"
msgid "Select Fields (Up to {0})"
msgstr "Выберите поля (до {0})"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Выберите поля для вставки"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Выберите поля для обновления"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Выбрать фильтры"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Выберите Календарь Google, с которым должно быть синхронизировано событие."
@@ -23462,28 +23659,28 @@ 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
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Выберите обязательное"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Выбрать модуль"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Выберите сетевой принтер"
#. Label of the page_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Page"
-msgstr "Выберите страницу"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Выберите формат печати"
@@ -23494,7 +23691,7 @@ 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}"
@@ -23508,7 +23705,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"
@@ -23517,13 +23714,7 @@ msgstr "Выберите рабочий процесс"
#. Label of the workspace_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Workspace"
-msgstr "Выберите рабочую область"
-
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr "Выберите рабочие пространства"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
@@ -23541,11 +23732,11 @@ msgstr "Выберите поле, чтобы изменить его свойс
msgid "Select a group {0} first."
msgstr "Сначала выберите группу {0}."
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Выберите действительное поле отправителя для создания документов из электронной почты"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Выберите действительное поле \"Тема\" для создания документов из электронной почты"
@@ -23561,7 +23752,7 @@ msgstr "Выберите существующий формат для редак
#. 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 ""
#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
@@ -23571,13 +23762,13 @@ msgstr "Выберите не менее 1 записи для печати"
msgid "Select atleast 2 actions"
msgstr "Выберите не менее 2 действий"
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Выберите элемент списка"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Выберите несколько элементов списка"
@@ -23597,7 +23788,7 @@ 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."
@@ -23611,7 +23802,7 @@ msgstr "Выберите две версии, чтобы просмотреть
msgid "Select {0}"
msgstr "Выберите {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Самоутверждение не допускается"
@@ -23634,17 +23825,22 @@ 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 raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr "Отправить оповещение по электронной почте"
+msgstr ""
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -23655,7 +23851,7 @@ msgstr "Отправить электронное письмо о состоян
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr "Отправить по электронной почте Печать вложений в формате PDF (рекомендуется)"
+msgstr ""
#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
#. Transition'
@@ -23666,23 +23862,23 @@ 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"
@@ -23691,9 +23887,9 @@ 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 ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Отправить подтверждение прочтения"
@@ -23701,12 +23897,12 @@ msgstr "Отправить подтверждение прочтения"
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr "Отправить системное уведомление"
+msgstr ""
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
-msgstr "Отправить всем получателям"
+msgstr ""
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -23716,7 +23912,7 @@ 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'
@@ -23727,18 +23923,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'
@@ -23750,26 +23946,26 @@ 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:220
msgid "Send login link"
msgstr "Отправить ссылку для входа"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Пришлите мне копию"
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr "Отправляйте только при наличии данных"
+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'
@@ -23793,23 +23989,23 @@ msgstr "Электронная почта отправителя"
#: 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:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Поле отправителя должно иметь значение Email в опциях"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.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
@@ -23848,7 +24044,7 @@ 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
@@ -23858,17 +24054,17 @@ 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
msgid "Separator"
-msgstr "Сепаратор"
+msgstr ""
#. Label of the sequence_id (Float) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -23879,7 +24075,7 @@ msgstr "Идентификатор последовательности"
#. 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 {}"
@@ -23889,7 +24085,7 @@ msgstr "Серия обновлена для {}"
msgid "Series counter for {} updated to {} successfully"
msgstr "Счетчик серии для {} успешно обновлен до {}"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Серия {0} уже использована в {1}"
@@ -23897,9 +24093,9 @@ 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 "Действия сервера"
+msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Ошибка сервера"
@@ -23907,7 +24103,7 @@ msgstr "Ошибка сервера"
#. Label of the server_ip (Data) field in DocType 'Network Printer Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Server IP"
-msgstr "IP-адрес сервера"
+msgstr ""
#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
@@ -23926,11 +24122,15 @@ msgstr "Серверные скрипты отключены. Включите
msgid "Server Scripts feature is not available on this site."
msgstr "Функция Server Scripts недоступна на этом сайте."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "Серверу не удалось обработать этот запрос из-за параллельного конфликтующего запроса. Повторите попытку."
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "Сервер был слишком занят для обработки этого запроса. Попробуйте ещё раз."
@@ -23958,16 +24158,14 @@ msgstr "Сессия по умолчанию"
msgid "Session Default Settings"
msgstr "Настройки сеанса по умолчанию"
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Настройки сеанса по умолчанию"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Сохранение настроек сеанса по умолчанию"
@@ -23978,7 +24176,7 @@ 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:125
msgid "Session Expiry must be in format {0}"
@@ -24006,9 +24204,9 @@ msgstr "Установить"
#. 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:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Установить диаграмму"
@@ -24034,7 +24232,7 @@ msgstr "Установить фильтры"
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Установить уровень"
@@ -24046,12 +24244,12 @@ 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
msgid "Set New Password"
-msgstr "Установите новый пароль"
+msgstr ""
#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
@@ -24075,10 +24273,10 @@ 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
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Установить количество"
@@ -24086,7 +24284,7 @@ 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:129
#: frappe/core/page/permission_manager/permission_manager.js:72
@@ -24096,14 +24294,14 @@ 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:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Установить все приватно"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Установить все публичные"
@@ -24120,7 +24318,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."
@@ -24134,7 +24332,7 @@ 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 "Установка нестандартной точности для поля Float или Currency"
+msgstr ""
#. Description of the 'Precision' (Select) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -24144,7 +24342,7 @@ msgstr "Установите нестандартную точность для
#. 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
@@ -24201,14 +24399,7 @@ 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 "Укажите путь к функции из белого списка, которая вернет данные для числовой карты в следующем формате:\n\n"
-"\n"
-"{\n"
-"\t\"value\": value,\n"
-"\t\"fieldtype\": \"Currency\",\n"
-"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
-"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
-"}
"
+msgstr ""
#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
@@ -24231,8 +24422,8 @@ msgstr "Настройка вашей системы"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24241,7 +24432,7 @@ 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
@@ -24255,11 +24446,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Настраивать"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Настройка > Настроить форму"
@@ -24267,12 +24458,12 @@ msgstr "Настройка > Настроить форму"
msgid "Setup > User"
msgstr "Настройка > Пользователь"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Настройка > Разрешения пользователей"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Настройка автоматической электронной почты"
@@ -24286,7 +24477,7 @@ msgstr "Установка завершена"
#. 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"
@@ -24301,13 +24492,14 @@ msgstr "Сбой установки"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Поделиться"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Поделиться с"
@@ -24315,14 +24507,14 @@ msgstr "Поделиться с"
msgid "Share this document with"
msgstr "Поделитесь этим документом с"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Поделиться {0} с"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "Общий"
+msgstr ""
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
@@ -24331,7 +24523,7 @@ msgstr "Доступно следующим пользователям с пра
#. 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"
@@ -24340,7 +24532,7 @@ msgstr "Адрес доставки"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Магазин"
+msgstr ""
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
@@ -24373,18 +24565,12 @@ 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:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Показать все"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr "Показывать значки приложений в виде папок"
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24403,7 +24589,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'
@@ -24430,31 +24616,31 @@ msgstr "Показать ошибку"
msgid "Show External Link Warning"
msgstr "Предупреждение о внешней ссылке"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Показать имя поля (нажмите, чтобы скопировать в буфер обмена)"
#. Label of the first_document (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
-msgstr "Показать первый тур по документам"
+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
@@ -24475,26 +24661,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:443
+#: frappe/public/js/frappe/form/toolbar.js:433
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"
@@ -24512,12 +24698,12 @@ msgstr "Показать предварительный просмотр"
#: 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'
@@ -24539,12 +24725,12 @@ 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'
@@ -24560,7 +24746,7 @@ 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
@@ -24568,7 +24754,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:1523
msgid "Show Totals"
@@ -24600,9 +24786,9 @@ 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
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Показать все версии"
@@ -24613,7 +24799,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 "Показать как cc"
+msgstr ""
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24624,18 +24810,18 @@ 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'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr "Показывайте полную форму вместо модального окна быстрого входа"
+msgstr ""
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Показать в разделе модулей"
+msgstr ""
#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
#. Login Key'
@@ -24646,12 +24832,12 @@ 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
@@ -24672,7 +24858,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
@@ -24682,7 +24868,7 @@ 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"
@@ -24704,7 +24890,7 @@ msgstr "Показываются только первые {0} рядов из {
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/sidebar_item_group/sidebar_item_group.json
msgid "Sidebar"
-msgstr "Боковая панель"
+msgstr ""
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace Sidebar Item'
@@ -24721,17 +24907,17 @@ 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
msgid "Sidebar Settings"
-msgstr "Настройки боковой панели"
+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_out (Button) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -24742,9 +24928,9 @@ msgstr "Выйти"
#. DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
-msgstr "Регистрация и подтверждение"
+msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Регистрация отключена"
@@ -24756,7 +24942,7 @@ msgstr "Зарегистрироваться"
#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Sign ups"
-msgstr "Регистрация"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -24771,7 +24957,7 @@ msgstr "Регистрация"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr "Подпись"
+msgstr ""
#: frappe/www/login.html:168
msgid "Signup Disabled"
@@ -24802,7 +24988,7 @@ msgstr "Простое выражение Python, пример: \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
-msgstr "Ключ API браузера, полученный из Google Cloud Console в разделе \n"
-"«API & Службы» > «Учетные данные»\n"
-""
+msgstr ""
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr "Изменения были отменены."
@@ -26558,7 +26753,7 @@ msgstr "Комментарий не может быть пустым"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "Содержание этого письма строго конфиденциально. Пожалуйста, не пересылайте это письмо никому."
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Показанное количество является приблизительным. Нажмите здесь, чтобы увидеть точное количество."
@@ -26582,13 +26777,17 @@ msgstr "Документ был назначен на {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "The document type selected is a child table, so the parent document type is required."
-msgstr "Выбранный тип документа является дочерней таблицей, поэтому требуется указать тип родительского документа."
+msgstr ""
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr ""
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr "Поле {0} в {1} не позволяет игнорировать разрешения пользователя"
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr "Поле {0} в {1} ссылается на {2} а не на {3}"
@@ -26639,22 +26838,26 @@ 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 Calendar"
+msgstr ""
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
-msgstr "Следующий тур начнется с того места, на котором остановился пользователь."
+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:101
msgid "The password of your account has expired."
msgstr "Срок действия пароля вашей учетной записи истек."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+msgstr ""
+
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
msgstr "Начался процесс удаления данных {0} связанных с {1}."
@@ -26672,15 +26875,15 @@ msgstr "Номер проекта, полученный из Google Cloud Consol
msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "Запрошенный вами отчет создан.
Нажмите здесь, чтобы загрузить:
{0}
Срок действия этой ссылки истечет через {1} часов."
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "Срок действия ссылки для сброса пароля истек"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr "Ссылка на сброс пароля либо уже использовалась, либо недействительна"
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Искомый ресурс недоступен"
@@ -26692,7 +26895,7 @@ msgstr "Роль {0} должна быть пользовательской."
msgid "The selected document {0} is not a {1}."
msgstr "Выбранный документ {0} не является {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Система находится в процессе обновления. Пожалуйста, обновите систему через несколько минут."
@@ -26704,6 +26907,42 @@ msgstr "Система предоставляет множество преду
msgid "The total number of user document types limit has been crossed."
msgstr "Превышен лимит общего количества типов пользовательских документов."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr "Значение, которое вы вставили, было длиной {0} символов. Максимально допустимое количество символов - {1}."
@@ -26711,7 +26950,7 @@ msgstr "Значение, которое вы вставили, было дли
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr "Вебхук будет запущен, если это выражение будет истинным"
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183
msgid "The {0} is already on auto repeat {1}"
@@ -26724,7 +26963,7 @@ msgstr "Сайт {0} уже находится в режиме автомати
#: 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"
@@ -26734,18 +26973,18 @@ msgstr "Тема изменена"
#. Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr "Конфигурация темы"
+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."
msgstr "Есть документы, у которых есть состояния рабочего процесса, не существующие в этом рабочем процессе. Рекомендуется добавить эти состояния в рабочий процесс и изменить их, прежде чем удалять эти состояния."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Для вас нет предстоящих событий."
@@ -26753,7 +26992,7 @@ msgstr "Для вас нет предстоящих событий."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Для этого {1} нет {0} почему бы вам не начать"
-#: frappe/public/js/frappe/views/reports/query_report.js:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "В очереди уже есть {0} с теми же фильтрами:"
@@ -26762,7 +27001,7 @@ msgstr "В очереди уже есть {0} с теми же фильтрам
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "В веб-форме может быть только 9 полей разрыва страницы"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "В форме может быть только одна папка"
@@ -26774,11 +27013,11 @@ msgstr "В вашем шаблоне адреса {0} допущена ошиб
msgid "There is no data to be exported"
msgstr "Нет данных для экспорта"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "Задачи с названием «{}» не существует"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Сейчас нет ничего нового, что можно было бы Вам показать."
@@ -26786,7 +27025,7 @@ msgstr "Сейчас нет ничего нового, что можно был
msgid "There is some problem with the file url: {0}"
msgstr "Возникла проблема с url файла: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "В очереди уже есть {0} с теми же фильтрами:"
@@ -26802,7 +27041,7 @@ msgstr "При создании этой страницы произошла о
msgid "There was an error saving filters"
msgstr "Произошла ошибка при сохранении фильтров"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Были допущены ошибки"
@@ -26810,11 +27049,11 @@ msgstr "Были допущены ошибки"
msgid "There were errors while creating the document. Please try again."
msgstr "При создании документа возникли ошибки. Пожалуйста, попробуйте еще раз."
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "При отправке электронной почты возникли ошибки. Пожалуйста, попробуйте ещё раз."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "При установке имени возникли ошибки, обратитесь к администратору"
@@ -26822,7 +27061,7 @@ msgstr "При установке имени возникли ошибки, об
#. 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "These announcements will appear inside a dismissible alert below the Navbar."
-msgstr "Эти объявления будут отображаться в виде отбрасываемого оповещения под панелью Navbar."
+msgstr ""
#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth
#. Settings'
@@ -26834,12 +27073,12 @@ msgstr "Эти поля используются для предоставлен
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
-msgstr "Эти настройки необходимы, если используется 'Custom' LDAP Directory"
+msgstr ""
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr "Эти значения будут автоматически обновляться в транзакциях, а также будут полезны для ограничения прав данного пользователя на транзакции, содержащие эти значения."
+msgstr ""
#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
@@ -26849,7 +27088,7 @@ msgstr "Сторонние приложения"
#. '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"
@@ -26883,11 +27122,11 @@ msgstr "В этом году"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Это действие необратимо. Вы хотите продолжить?"
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Это действие разрешено только для {}"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Этого не исправить"
@@ -26900,18 +27139,18 @@ 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 "У этого доктайпа нет бесхозных полей, которые нужно обрезать"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Этот доктайп имеет ожидающие миграции, выполните команду 'bench migrate' перед изменением доктайпа, чтобы избежать потери изменений."
@@ -26927,15 +27166,15 @@ msgstr "В очереди на отправку. Вы можете отслеж
msgid "This document has been modified after the email was sent."
msgstr "Этот документ был изменен после отправки письма."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "В этом документе есть несохраненные изменения, которые могут не отобразиться в конечном PDF-файле.
Сохраните документ перед печатью."
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr "В этот документ уже внесены изменения, вы не можете вносить их снова"
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Этот документ в настоящее время заблокирован и находится в очереди на выполнение. Пожалуйста, повторите попытку через некоторое время."
@@ -26949,7 +27188,7 @@ msgid "This feature can not be used as dependencies are missing.\n"
msgstr "Эта функция не может быть использована, так как отсутствуют зависимости.\n"
"\t\t\t\tПожалуйста, свяжитесь с вашим системным менеджером, чтобы включить эту функцию, установив pycups!"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "Эта функция является совершенно новой и пока еще экспериментальной"
@@ -26960,10 +27199,7 @@ 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 "Это поле появится только в том случае, если заданное здесь имя поля имеет значение ИЛИ правила верны (примеры):\n"
-"myfield\n"
-"eval:doc.myfield=='My Value'\n"
-"eval:doc.age>18"
+msgstr ""
#: frappe/core/doctype/file/file.py:532
msgid "This file is attached to a protected document and cannot be deleted."
@@ -26977,18 +27213,18 @@ msgstr "Этот файл является публичным и доступе
msgid "This file is public. It can be accessed without authentication."
msgstr "Этот файл общедоступный. Доступ к нему возможен без аутентификации."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Эта форма была изменена после того, как вы ее загрузили"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "Эту форму невозможно редактировать из-за рабочего процесса."
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr "Этот формат используется, если не найден формат для конкретной страны"
+msgstr ""
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
msgid "This geolocation provider is not supported yet."
@@ -26998,9 +27234,9 @@ 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:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Это фоновый отчет. Пожалуйста, установите соответствующие фильтры, а затем сгенерируйте новый."
@@ -27032,7 +27268,7 @@ msgstr "Это похоже на часто используемый парол
#. 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."
@@ -27042,15 +27278,15 @@ msgstr "Эта ссылка уже активирована для провер
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Эта ссылка недействительна или устарела. Убедитесь, что вы вставили её правильно."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Это может быть напечатано на нескольких страницах."
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "В этом месяце"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Этот отчет содержит {0} строк и слишком велик для отображения в браузере, вместо него можно использовать {1}."
@@ -27058,7 +27294,7 @@ msgstr "Этот отчет содержит {0} строк и слишком в
msgid "This report was generated on {0}"
msgstr "Этот отчет был создан на сайте {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Этот отчет был создан на сайте {0}."
@@ -27082,7 +27318,7 @@ msgstr "Это программное обеспечение создано на
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "Это название будет использоваться в качестве заголовка веб-страницы, а также в мета-тегах"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "Это значение поля извлекается от {0} до {1}"
@@ -27100,13 +27336,13 @@ msgstr "Маршрут будет автоматически сгенериро
#. '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"
@@ -27126,14 +27362,14 @@ msgstr "Это сбросит настройки тура и покажет ег
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr "Это приведет к немедленному прекращению работы и может быть опасно, вы уверены?"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Периодически"
#. Label of the thumbnail_url (Small Text) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Thumbnail URL"
-msgstr "URL-адрес миниатюры"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -27157,6 +27393,7 @@ msgstr "Четверг"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27164,6 +27401,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Время"
@@ -27173,7 +27411,7 @@ msgstr "Время"
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time Format"
-msgstr "Формат времени"
+msgstr ""
#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -27183,22 +27421,22 @@ msgstr "Интервал времени"
#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr "Временные ряды"
+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'
@@ -27215,17 +27453,17 @@ 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
msgid "Time format"
-msgstr "Формат времени"
+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'
@@ -27244,12 +27482,7 @@ msgstr "Время {0} должно быть в формате: {1}"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Timed Out"
-msgstr "Вышел срок"
-
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr "Постоянная стартовая площадка"
+msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
@@ -27258,42 +27491,42 @@ 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 "Временная шкала DocType"
+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:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "Поле временной шкалы должно быть ссылкой или динамической ссылкой"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "Поле временной шкалы должно быть допустимым именем поля"
#. Label of the timeout (Duration) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Timeout"
-msgstr "Тайм-аут"
+msgstr ""
#. Label of the timeout (Int) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -27303,7 +27536,7 @@ 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 "Временные ряды"
+msgstr ""
#. Label of the timespan (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -27357,7 +27590,7 @@ msgstr "Совет: попробуйте новую раскрывающуюся
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27373,14 +27606,14 @@ msgstr "Заголовок"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr "Поле заголовка"
+msgstr ""
#. Label of the title_prefix (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr "Префикс названия"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Поле Title должно быть действительным именем поля"
@@ -27409,7 +27642,7 @@ 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 ""
#: frappe/desk/doctype/todo/todo_list.js:6
msgid "To Do"
@@ -27419,8 +27652,7 @@ msgstr "Задачи"
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "To add dynamic subject, use jinja tags like\n\n"
"New {{ doc.doctype }} #{{ doc.name }}
"
-msgstr "Чтобы добавить динамическую тему, используйте теги jinja, например\n\n"
-". Новый {{ doc.doctype }} #{{ doc.name }}
"
+msgstr ""
#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
@@ -27429,11 +27661,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n"
"{ \"id\": \"{{ doc.name }}\" }\n"
"
\n"
""
-msgstr "Чтобы добавить динамические значения из документа, используйте теги jinja, например\n\n"
-". \n"
-"{ \"id\": \"{{ doc.name }}\" }\n"
-"
\n"
-""
+msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.py:109
msgid "To allow more reports update limit in System Settings."
@@ -27443,13 +27671,13 @@ msgstr "Чтобы разрешить больше отчетов, обнови
#. '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 "Чтобы начать диапазон дат с начала выбранного периода. Например, если в качестве периода выбран \"Год\", отчет будет начинаться с 1 января текущего года."
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
@@ -27471,7 +27699,7 @@ msgstr "Чтобы экспортировать этот шаг в формат
msgid "To generate password click {0}"
msgstr "Чтобы сгенерировать пароль нажмите {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "Чтобы получить обновленный отчет, перейдите по ссылке {0}."
@@ -27505,7 +27733,7 @@ msgstr "Чтобы использовать индексирование Google,
#. Description of the 'Slack Channel' (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "To use Slack Channel, add a Slack Webhook URL."
-msgstr "Чтобы использовать Slack Channel, добавьте URL-адрес Slack Webhook."
+msgstr ""
#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
@@ -27524,35 +27752,18 @@ msgstr "Задачи"
msgid "Today"
msgstr "Сегодня"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Переключить диаграмму"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Переключить полную ширину"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Переключить вид сетки"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Переключить боковую панель"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Переключить тему"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr "Токен"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/token_cache/token_cache.json
@@ -27568,12 +27779,12 @@ 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 "URI токена"
+msgstr ""
#: frappe/utils/oauth.py:213
msgid "Token is missing"
@@ -27584,7 +27795,7 @@ msgid "Tomorrow"
msgstr "Завтра"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "Слишком много документов"
@@ -27592,15 +27803,19 @@ msgstr "Слишком много документов"
msgid "Too Many Requests"
msgstr "Слишком много запросов"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "Слишком много изменений для базы данных в одном действии."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Слишком много фоновых заданий в очереди ({0}). Повторите попытку через некоторое время."
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "В последнее время на сайте зарегистрировалось слишком много пользователей, поэтому регистрация отключена. Пожалуйста, попробуйте вернуться через час"
@@ -27608,7 +27823,7 @@ msgstr "В последнее время на сайте зарегистрир
#: 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"
@@ -27622,7 +27837,7 @@ msgstr "Элемент верхней панели"
#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr "Лучшие предметы для бара"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -27630,7 +27845,7 @@ 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
@@ -27641,7 +27856,7 @@ msgstr "Главные ошибки"
#: 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'
@@ -27649,17 +27864,17 @@ 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:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Общая сумма"
@@ -27674,7 +27889,7 @@ msgstr "Общее количество фоновых процессов"
msgid "Total Errors (last 1 day)"
msgstr "Всего ошибок (за последний 1 день)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Всего изображений"
@@ -27687,7 +27902,7 @@ msgstr "Всего исходящих писем"
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/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
@@ -27697,7 +27912,7 @@ 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'
@@ -27720,7 +27935,7 @@ msgstr "Строка итогов"
#. Label of the trace_id (Data) field in DocType 'Error Log'
#: frappe/core/doctype/error_log/error_log.json
msgid "Trace ID"
-msgstr "Идентификатор трассировки"
+msgstr ""
#. Label of the traceback (Code) field in DocType 'Patch Log'
#: frappe/core/doctype/patch_log/patch_log.json
@@ -27732,34 +27947,34 @@ msgstr "Трассировка"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr "Отслеживание изменений"
+msgstr ""
#. Label of the track_email_status (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr "Отслеживание состояния электронной почты"
+msgstr ""
#. Label of the track_field (Data) field in DocType 'Milestone'
#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr "Легкая атлетика"
+msgstr ""
#. Label of the track_seen (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr "След виден"
+msgstr ""
#. Label of the track_steps (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Track Steps"
-msgstr "Отслеживание шагов"
+msgstr ""
#. Label of the track_views (Check) field in DocType 'DocType'
#. Label of the track_views (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr "Просмотр треков"
+msgstr ""
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
@@ -27776,7 +27991,7 @@ msgstr "Отслеживайте, было ли ваше письмо откры
msgid "Track milestones for any document"
msgstr "Отслеживайте основные этапы для любого документа"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "Создается URL-адрес отслеживания и копируется в буфер обмена"
@@ -27791,7 +28006,7 @@ 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 transition_tasks (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
@@ -27801,7 +28016,7 @@ 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'
@@ -27810,9 +28025,9 @@ 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:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "Перевести данные"
@@ -27821,9 +28036,9 @@ msgstr "Перевести данные"
#: 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:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Перевод значений"
@@ -27834,7 +28049,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
@@ -27853,15 +28068,15 @@ 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
-msgstr "Дерево"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:211
msgid "Tree View"
@@ -27870,7 +28085,7 @@ 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}"
@@ -27879,7 +28094,7 @@ msgstr "Просмотр дерева недоступен для {0}"
#. Label of the method (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Trigger Method"
-msgstr "Метод срабатывания"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
@@ -27892,7 +28107,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 ""
#: frappe/custom/doctype/customize_form/customize_form.js:144
msgid "Trim Table"
@@ -27906,10 +28121,10 @@ 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:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Попробуйте новый конструктор печати"
@@ -27943,18 +28158,19 @@ 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'
#. 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 'Event Notifications'
#. 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'
@@ -27968,6 +28184,7 @@ msgstr "Метод двухфакторной аутентификации"
#: 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/event_notifications/event_notifications.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
@@ -27976,7 +28193,7 @@ msgstr "Метод двухфакторной аутентификации"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28010,7 +28227,7 @@ msgstr "Тип:"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "UI Tour"
-msgstr "Тур по пользовательскому интерфейсу"
+msgstr ""
#. Label of the uid (Int) field in DocType 'Communication'
#. Label of the uid (Data) field in DocType 'Email Flag Queue'
@@ -28071,7 +28288,7 @@ msgstr "URL"
#. Description of the 'Documentation Link' (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "URL for documentation or help"
-msgstr "URL-адрес документации или справки"
+msgstr ""
#: frappe/core/doctype/file/file.py:241
msgid "URL must start with http:// or https://"
@@ -28122,7 +28339,7 @@ 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-адрес, на который нужно перейти при нажатии на изображение в слайд-шоу"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/utm_campaign/utm_campaign.json
@@ -28144,7 +28361,7 @@ msgstr "Источник UTM"
msgid "UUID"
msgstr "UUID"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "Отмена подписки на документ {0}"
@@ -28152,7 +28369,7 @@ msgstr "Отмена подписки на документ {0}"
msgid "Unable to find DocType {0}"
msgstr "Не удалось найти DocType {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Невозможно загрузить камеру."
@@ -28168,7 +28385,7 @@ msgstr "Невозможно открыть прикрепленный файл.
msgid "Unable to read file format for {0}"
msgstr "Невозможно прочитать формат файла для {0}"
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "Невозможно отправить почту из-за отсутствия учетной записи электронной почты. Пожалуйста, настройте учетную запись электронной почты по умолчанию в разделе Настройки > Учетная запись электронной почты"
@@ -28183,26 +28400,26 @@ 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:399
msgid "Uncaught Exception"
msgstr "Непонятное исключение сервера"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Без изменений"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Отменить"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Отменить последнее действие"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Отписаться"
@@ -28223,7 +28440,7 @@ 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
@@ -28266,28 +28483,29 @@ 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:498
msgid "Unsafe SQL query"
msgstr "Небезопасный SQL-запрос"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
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:67
msgid "Unsubscribe"
@@ -28296,7 +28514,7 @@ 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
@@ -28313,11 +28531,11 @@ msgstr "Параметры отмены подписки"
msgid "Unsubscribed"
msgstr "Подписка отменена"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr "Неподдерживаемая функция или оператор: {0}"
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr "Неподдерживаемые {0}: {1}"
@@ -28337,7 +28555,7 @@ msgstr "Распакованные файлы {0}"
msgid "Unzipping files..."
msgstr "Распаковка файлов..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Предстоящие события на сегодня"
@@ -28345,13 +28563,13 @@ msgstr "Предстоящие события на сегодня"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Обновить"
@@ -28359,18 +28577,18 @@ 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
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
@@ -28394,18 +28612,18 @@ msgstr "Обновить профиль"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
-msgstr "Счетчик серии Update"
+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"
@@ -28416,13 +28634,13 @@ msgstr "Обновление переводов"
#: 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"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "Обновление записей {0}"
@@ -28430,8 +28648,7 @@ msgstr "Обновление записей {0}"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Обновленный"
@@ -28443,11 +28660,11 @@ msgstr "Обновлено успешно"
msgid "Updated To A New Version 🎉"
msgstr "Обновлено до новой версии 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Успешно обновляется"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Обновление"
@@ -28472,11 +28689,11 @@ msgstr "Обновление глобальных настроек"
msgid "Updating naming series options"
msgstr "Обновление параметров серии именования"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "Обновление связанных полей..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Обновление {0}"
@@ -28484,12 +28701,12 @@ msgstr "Обновление {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "Обновление {0} из {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "План модернизации"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28510,42 +28727,43 @@ 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 ""
#. Label of the uploaded_to_google_drive (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Google Drive"
-msgstr "Загружено на Google Диск"
+msgstr ""
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#, python-format
msgid "Use % for any non empty value."
-msgstr "Используйте % для любого непустого значения."
+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 ""
#. 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
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
-msgstr "Используйте HTML"
+msgstr ""
#. Label of the use_imap (Check) field in DocType 'Email Account'
#. Label of the use_imap (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr "Используйте IMAP"
+msgstr ""
#. Label of the use_number_format_from_currency (Check) field in DocType
#. 'System Settings'
@@ -28556,12 +28774,12 @@ 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 ""
#. 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'
@@ -28570,21 +28788,21 @@ msgstr "Используйте диаграмму отчетов"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr "Используйте SSL"
+msgstr ""
#. Label of the use_starttls (Check) field in DocType 'Email Account'
#. Label of the use_starttls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
-msgstr "Используйте STARTTLS"
+msgstr ""
#. Label of the use_tls (Check) field in DocType 'Email Account'
#. Label of the use_tls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use TLS"
-msgstr "Используйте TLS"
+msgstr ""
#: frappe/utils/password_strength.py:191
msgid "Use a few uncommon words together."
@@ -28597,7 +28815,7 @@ 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
@@ -28608,14 +28826,14 @@ msgstr "Используйте, если настройки по умолчан
msgid "Use of sub-query or function is restricted"
msgstr "Использование подзапроса или функции ограничено"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Используйте новый конструктор форматов печати"
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr "Используйте это поле для создания названия"
+msgstr ""
#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
#. Account'
@@ -28626,7 +28844,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 ""
#. Label of the user (Link) field in DocType 'Assignment Rule User'
#. Label of the user (Link) field in DocType 'Auto Repeat User'
@@ -28642,9 +28860,8 @@ msgstr "Используется OAuth"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28671,11 +28888,11 @@ msgstr "Используется OAuth"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28711,17 +28928,17 @@ msgstr "Отчет об активности пользователей без
#: frappe/core/doctype/user_session_display/user_session_display.json
#: 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:550
msgid "User Changed"
@@ -28730,7 +28947,7 @@ 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
@@ -28759,7 +28976,7 @@ msgstr "Email пользователя"
#. 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
@@ -28775,27 +28992,27 @@ msgstr "Член группы пользователей"
#. 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 ""
#. 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}"
@@ -28804,14 +29021,14 @@ msgstr "Поле \"Идентификатор пользователя\" явл
#. Label of the user_image (Attach Image) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr "Изображение пользователя"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/user_invitation/user_invitation.json
msgid "User Invitation"
msgstr "Приглашение пользователя"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Меню пользователя"
@@ -28819,7 +29036,7 @@ msgstr "Меню пользователя"
#. 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
@@ -28827,19 +29044,19 @@ msgid "User Permission"
msgstr "Разрешение пользователя"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Разрешения пользователя"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Разрешения пользователя"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "Разрешения пользователей используются для ограничения доступа пользователей к определенным записям."
@@ -28852,7 +29069,7 @@ msgstr "Разрешения пользователя созданы успеш
#: frappe/core/doctype/user_role/user_role.json
#: 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
@@ -28883,7 +29100,7 @@ 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
@@ -28904,15 +29121,15 @@ msgstr "Модуль типа пользователя"
#. 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
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "Пользователь не существует."
@@ -28932,7 +29149,7 @@ msgstr "Пользователь обязателен для Поделитьс
#. 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"
@@ -28946,27 +29163,27 @@ msgstr "Пользователь с адресом электронной поч
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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Пользователь {0} не может быть удален"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Пользователь {0} не может быть отключен"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Пользователь {0} не может быть переименован"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "Пользователь {0} не имеет доступа к этому документу"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Пользователь {0} не имеет доступа к типу документа через разрешение роли для документа {1}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "Пользователь {0} не имеет разрешения на создание рабочей области."
@@ -28975,11 +29192,11 @@ msgstr "Пользователь {0} не имеет разрешения на
msgid "User {0} has requested for data deletion"
msgstr "Пользователь {0} запросил удаление данных"
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "Пользователь {0} выдал себя за {1}"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Пользователь {0} отключен"
@@ -28994,7 +29211,7 @@ msgstr "Пользователю {0} не разрешен доступ к эт
#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Userinfo URI"
-msgstr "URI пользовательской информации"
+msgstr ""
#. Label of the username (Data) field in DocType 'User'
#. Label of the username (Data) field in DocType 'User Social Login'
@@ -29004,18 +29221,17 @@ msgstr "URI пользовательской информации"
msgid "Username"
msgstr "Имя пользователя"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Имя пользователя {0} уже существует"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29047,13 +29263,13 @@ 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'
#: 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
@@ -29067,7 +29283,7 @@ 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'
@@ -29086,14 +29302,14 @@ msgstr "Проверить настройки почты Frappe"
msgid "Validate SSL Certificate"
msgstr "Проверка SSL сертификата"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Ошибка валидации"
#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr "Валидность"
+msgstr ""
#. Label of the value (Data) field in DocType 'Milestone'
#. Label of the defvalue (Text) field in DocType 'DefaultValue'
@@ -29115,7 +29331,7 @@ msgstr "Валидность"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29125,7 +29341,7 @@ 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
@@ -29135,22 +29351,26 @@ 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:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Значение не может быть изменено для {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Значение не может быть отрицательным для"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Значение не может быть отрицательным для {0}: {1}"
@@ -29162,7 +29382,7 @@ msgstr "Значение поля проверки может быть 0 или
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Значение поля {0} слишком длинное в {1}. Длина должна быть меньше {2} символов"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "Значение для {0} не может быть списком"
@@ -29170,7 +29390,7 @@ msgstr "Значение для {0} не может быть списком"
#. 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 "Значение из этого поля будет установлено в качестве даты выполнения в ToDo"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:713
msgid "Value must be one of {0}"
@@ -29185,9 +29405,15 @@ msgstr "Значение «None» подразумевает публичный
#. 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:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Слишком большое значение"
@@ -29204,7 +29430,7 @@ msgstr "Значение {0} должно быть в допустимом фо
msgid "Value {0} must in {1} format"
msgstr "Значение {0} должно быть в формате {1}"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Значения изменено"
@@ -29213,11 +29439,11 @@ msgstr "Значения изменено"
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Верификация"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Код проверки"
@@ -29225,7 +29451,7 @@ msgstr "Код проверки"
msgid "Verification Link"
msgstr "Ссылка для проверки"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "Не отправлено письмо с кодом проверки. Пожалуйста, свяжитесь с администратором."
@@ -29236,10 +29462,10 @@ 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
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Проверьте"
@@ -29263,7 +29489,7 @@ msgstr "Обновленная версия"
#. Label of the video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr "URL-адрес видео"
+msgstr ""
#. Label of the view_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -29275,7 +29501,7 @@ msgstr "Посмотреть"
msgid "View All"
msgstr "Смотреть все"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "История изменений / проверок"
@@ -29287,7 +29513,7 @@ msgstr "Просмотр разрешений Doctype"
msgid "View File"
msgstr "Просмотр файла"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Просмотреть полный журнал"
@@ -29309,12 +29535,12 @@ 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
@@ -29322,25 +29548,22 @@ msgstr "Посмотреть отчет"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr "Просмотр настроек"
+msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
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 "Посмотреть веб-сайт"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr "Просмотреть всех {0} пользователей"
@@ -29356,7 +29579,7 @@ msgstr "Просмотр отчета в браузере"
msgid "View this in your browser"
msgstr "Посмотреть в браузере"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Просмотреть свой ответ"
@@ -29370,7 +29593,7 @@ 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
@@ -29382,7 +29605,7 @@ 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 {}"
@@ -29392,14 +29615,14 @@ msgstr "Виртуальный DocType {} требует статическог
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "Виртуальный DocType {} требует переопределения метода экземпляра под названием {} found {}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
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."
@@ -29408,7 +29631,7 @@ msgstr "Видно пользователям веб-сайта/портала."
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Visit"
-msgstr "Посетите"
+msgstr ""
#: frappe/desk/doctype/desktop_settings/desktop_settings.js:6
msgid "Visit Desktop"
@@ -29421,7 +29644,7 @@ 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?"
@@ -29440,7 +29663,7 @@ msgstr "Склад"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Предупреждение"
@@ -29449,7 +29672,7 @@ msgstr "Предупреждение"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "Внимание: ПОТЕРЯ ДАННЫХ НЕИЗБЕЖНА! Следующие столбцы базы данных будут безвозвратно удалены из типа документа {0}:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Внимание: наименование не задано"
@@ -29460,7 +29683,7 @@ msgstr "Предупреждение: Невозможно найти {0} ни
#. 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/core/doctype/doctype/doctype.py:458
msgid "Warning: Usage of 'format:' is discouraged."
@@ -29516,7 +29739,7 @@ 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
@@ -29533,7 +29756,7 @@ msgstr "Веб-страница"
msgid "Web Page Block"
msgstr "Блок веб-страницы"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "URL-адрес веб-страницы"
@@ -29557,7 +29780,7 @@ 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"
@@ -29566,7 +29789,7 @@ 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'
@@ -29593,12 +29816,12 @@ msgstr "Заголовок вебхука"
#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr "Заголовки вебхуков"
+msgstr ""
#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr "Запрос вебхука"
+msgstr ""
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -29610,27 +29833,27 @@ msgstr "Журнал запросов Webhook"
#. Label of the webhook_secret (Password) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr "Секрет вебхука"
+msgstr ""
#. Label of the sb_security (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr "Безопасность вебхуков"
+msgstr ""
#. 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
msgid "Webhook URL"
-msgstr "URL-адрес вебхука"
+msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29683,9 +29906,9 @@ 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:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Поле поиска на сайте должно быть допустимым именем поля"
@@ -29737,19 +29960,24 @@ 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 ""
#. Label of a number card in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Themes Available"
msgstr "Доступные темы веб-сайта"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29784,7 +30012,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'
@@ -29813,7 +30041,7 @@ msgstr "Еженедельно"
#: 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"
@@ -29825,27 +30053,27 @@ 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 "Приветственный URL"
+msgstr ""
#. Name of a Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "Welcome Workspace"
msgstr "Добро пожаловать в рабочее пространство"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "Приветственное письмо отправлено"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Добро пожаловать в {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Что Нового"
@@ -29853,23 +30081,19 @@ msgstr "Что Нового"
#. '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 на сайте Communication. Внимание: Это может привести к увеличению объема памяти."
+msgstr ""
#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
-msgstr "При загрузке файлов принудительно используйте веб-камеру для захвата изображений. Если этот флажок снят, то по умолчанию при обнаружении использования с мобильного телефона будет использоваться встроенная камера."
-
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr "Если вы внесете изменения в документ после отмены и сохраните его, ему будет присвоен новый номер, являющийся версией старого номера."
+msgstr ""
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
@@ -29888,7 +30112,7 @@ msgstr "К какому представлению соответствующе
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Ширина"
@@ -29900,13 +30124,13 @@ 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'
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Will add \"%\" before and after the query"
-msgstr "Добавит \"%\" до и после запроса"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
@@ -29930,12 +30154,12 @@ msgstr "На фирменном бланке"
#. 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
@@ -29963,7 +30187,7 @@ msgstr "Мастер действий рабочего процесса"
#. 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
@@ -29974,7 +30198,7 @@ msgstr "Действие рабочего процесса Разрешенна
#. 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
@@ -29989,7 +30213,7 @@ 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 their properties from the sidebar."
@@ -29998,7 +30222,7 @@ msgstr "Workflow Builder позволяет визуально создават
#. 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:44
msgid "Workflow Details"
@@ -30009,10 +30233,14 @@ msgstr "Детали рабочего процесса"
msgid "Workflow Document State"
msgstr "Состояние документа рабочего процесса"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+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
@@ -30024,13 +30252,13 @@ 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:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Состояние рабочего процесса не установлено"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Не разрешен переход состояния рабочего процесса с {0} на {1}"
@@ -30038,7 +30266,7 @@ msgstr "Не разрешен переход состояния рабочего
msgid "Workflow States Don't Exist"
msgstr "Состояние рабочего процесса не установлено"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Состояние рабочего процесса"
@@ -30073,18 +30301,15 @@ msgstr "Рабочий процесс успешно обновлен"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Рабочее пространство"
@@ -30111,7 +30336,6 @@ 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 "Управление рабочим пространством"
@@ -30125,27 +30349,15 @@ msgstr "Карточка номера рабочего пространства"
msgid "Workspace Quick List"
msgstr "Краткий список рабочего пространства"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "Настройки рабочего пространства"
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr "Настройка рабочего пространства завершена"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Ярлык рабочего пространства"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr "Боковая панель рабочего пространства"
@@ -30155,20 +30367,14 @@ msgstr "Боковая панель рабочего пространства"
msgid "Workspace Sidebar Item"
msgstr "Элемент боковой панели рабочего пространства"
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr "Видимость рабочего пространства"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "Рабочее пространство {0} создано"
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Workspaces"
-msgstr "Рабочие места"
+msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:757
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
@@ -30190,11 +30396,12 @@ msgstr "Завершение"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
-msgstr "Пишите"
+msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Неправильное значение Fetch From"
@@ -30212,14 +30419,14 @@ msgstr "X-поле"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr "Ошибка XMLHttpRequest"
#. 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 ""
#: frappe/public/js/frappe/views/reports/report_view.js:496
msgid "Y Axis Fields"
@@ -30227,7 +30434,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y-поле"
@@ -30239,7 +30446,7 @@ msgstr "Yahoo! Почта"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Yandex.Mail"
-msgstr "Яндекс.Почта"
+msgstr ""
#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart'
#. Label of the year (Data) field in DocType 'Company History'
@@ -30275,10 +30482,14 @@ msgstr "Жёлтый"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30287,10 +30498,10 @@ msgstr "Жёлтый"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Да"
@@ -30326,7 +30537,7 @@ msgstr "Вы добавили 1 строку в {0}"
msgid "You added {0} rows to {1}"
msgstr "Вы добавили {0} строк в {1}"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "Вы собираетесь открыть внешнюю ссылку. Для подтверждения нажмите на ссылку ещё раз."
@@ -30334,7 +30545,7 @@ msgstr "Вы собираетесь открыть внешнюю ссылку.
msgid "You are connected to internet."
msgstr "Вы подключены к Интернету."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "Вы выдаете себя за другого пользователя."
@@ -30342,11 +30553,11 @@ msgstr "Вы выдаете себя за другого пользовател
msgid "You are not allowed to access this resource"
msgstr "Вы не имеете права доступа к этому ресурсу"
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
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:426
+#: frappe/permissions.py:432
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}"
@@ -30369,7 +30580,7 @@ msgstr "Вам не разрешено редактировать отчет."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "Вам не разрешено экспортировать {} doctype"
@@ -30377,10 +30588,14 @@ msgstr "Вам не разрешено экспортировать {} doctype"
msgid "You are not allowed to print this report"
msgstr "Вам не разрешено печатать этот отчет"
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr "Вам запрещено отправлять электронные письма, связанные с этим документом"
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Вам не разрешено обновлять этот документ веб-формы"
@@ -30397,7 +30612,7 @@ msgstr "Вы не можете получить доступ к этой стр
msgid "You are not permitted to access this page."
msgstr "Вы не имеете права доступа к этой странице."
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "Вам не разрешен доступ к этому ресурсу. Войдите, чтобы получить доступ"
@@ -30405,7 +30620,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Вам разрешено только обновлять порядок, не удалять и не добавлять приложения."
@@ -30418,7 +30633,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "Вы прикрепили {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Вы можете добавлять динамические свойства из документа, используя шаблоны Jinja."
@@ -30442,10 +30657,6 @@ msgstr "Вы также можете скопировать и вставить
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "Если вы все еще хотите присоединиться, попросите свою команду повторно отправить приглашение."
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "Вы можете изменить поданные документы, отменив их, а затем внеся в них изменения."
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "Вы можете изменить политику хранения из {0}."
@@ -30500,7 +30711,7 @@ msgstr "Вы можете установить большое значение,
msgid "You can try changing the filters of your report."
msgstr "Вы можете попробовать изменить фильтры вашего отчета."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Вы можете использовать функцию «Настроить форму» для установки уровней полей."
@@ -30530,6 +30741,10 @@ msgstr "Вы отменили этот документ {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Вы не можете создать диаграмму приборной панели из отдельных типов документов"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Вы не можете снять значение 'Только чтение' для поля {0}"
@@ -30556,7 +30771,6 @@ msgid "You changed {0} to {1}"
msgstr "Вы изменили {0} на {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "Вы создали это"
@@ -30565,11 +30779,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "Вы отменили этот документ {0}"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "У вас нет прав на чтение или выбор для {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "У вас недостаточно прав для доступа к этому ресурсу. Пожалуйста, свяжитесь с вашим менеджером, чтобы получить доступ."
@@ -30581,15 +30791,19 @@ msgstr "У вас недостаточно прав для выполнения
msgid "You do not have import permission for {0}"
msgstr "У вас нет разрешения на импорт {0}"
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "У вас нет прав доступа к полю: {0}"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "У вас нет разрешения на доступ к {0}: {1}."
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "У вас нет прав на отмену всех связанных документов."
@@ -30625,7 +30839,7 @@ msgstr "Вы успешно вышли из системы"
msgid "You have hit the row size limit on database table: {0}"
msgstr "Вы превысили предельный размер строки в таблице базы данных: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Вы не ввели значение. Поле будет установлено пустым."
@@ -30645,7 +30859,7 @@ msgstr "У вас есть невидимые {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Вы еще не добавили ни одной диаграммы приборной панели или карточки с цифрами."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "Вы еще не создали {0}"
@@ -30654,7 +30868,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Вы превысили лимит скорости из-за слишком большого количества запросов. Пожалуйста, попробуйте через некоторое время."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Последний раз вы редактировали это"
@@ -30670,12 +30883,12 @@ msgstr "Вы должны войти в систему, чтобы исполь
msgid "You must login to submit this form"
msgstr "Вы должны войти в систему, чтобы отправить эту форму"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Для выполнения этого действия вам необходимо разрешение '{0}' на {1} {2} ."
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Чтобы удалить публичную рабочую область, необходимо быть менеджером рабочей области."
@@ -30683,7 +30896,7 @@ msgstr "Чтобы удалить публичную рабочую област
msgid "You need to be Workspace Manager to edit this document"
msgstr "Для редактирования этого документа вам необходимо быть менеджером рабочей области"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Вы должны войти в систему, чтобы получить доступ к этой странице."
@@ -30715,7 +30928,7 @@ msgstr "Чтобы ваше приложение работало, необхо
msgid "You need to have \"Share\" permission"
msgstr "Вам необходимо иметь разрешение \"Поделиться\""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Чтобы использовать эту функцию, необходимо установить pycups!"
@@ -30735,7 +30948,7 @@ msgstr "Для объединения необходимо разрешение
msgid "You need write permission on {0} {1} to rename"
msgstr "Чтобы переименовать {0} {1} , вам нужно разрешение на запись."
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "Вам необходимо разрешение {0} для получения значений с {1} {2}"
@@ -30782,7 +30995,7 @@ msgstr "Вы отписались от этого документа"
msgid "You viewed this"
msgstr "Вы просмотрели это"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "Вы будете перенаправлены на:"
@@ -30859,7 +31072,7 @@ msgstr "Ваш email"
msgid "Your exported report: {0}"
msgstr "Экспорт отчета: {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Ваша форма была успешно обновлена"
@@ -30901,7 +31114,7 @@ msgstr "Ваш отчёт создаётся в фоновом режиме. К
msgid "Your session has expired, please login again to continue."
msgstr "Ваш сеанс истек, пожалуйста, войдите снова, чтобы продолжить."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "Ваш сайт находится на техническом обслуживании или обновляется."
@@ -30917,13 +31130,13 @@ 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:363
msgid "[Action taken by {0}]"
msgstr "[Действие выполнил {0}]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator` работает только с `as_list=True` или `as_dict=True`"
@@ -30934,15 +31147,15 @@ msgstr "Параметр `job_id` необходим для дедупликац
#. 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:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "и"
@@ -30954,7 +31167,7 @@ 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"
@@ -30965,7 +31178,7 @@ msgstr "по ролям"
msgid "cProfile Output"
msgstr "Вывод cProfile"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "календарь"
@@ -30973,15 +31186,17 @@ msgstr "календарь"
#. 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 ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "chrome"
@@ -30997,15 +31212,15 @@ msgstr "прокомментировал"
#. 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:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "d"
@@ -31013,7 +31228,7 @@ msgstr "d"
#. 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"
@@ -31024,46 +31239,46 @@ msgstr "приборная панель"
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd-mm-yyyy"
-msgstr "dd-mm-yyy"
+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 "По убыванию"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "тип документа..., например, клиент"
@@ -31073,7 +31288,7 @@ msgstr "тип документа..., например, клиент"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "например, «Поддержка», «Продажи», «Джерри Янг»"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "например (55 + 434) / 4 или =Math.sin(Math.PI/2)..."
@@ -31115,12 +31330,16 @@ msgstr "emacs"
msgid "email"
msgstr "эл. почта"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "почта для входящих"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "пустой"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "пустой"
@@ -31176,12 +31395,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip не найден в PATH! Это необходимо для создания резервной копии."
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "ч"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "хаб"
@@ -31196,6 +31415,20 @@ msgstr "иконка"
msgid "import"
msgstr "импорт"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "jane@example.com"
@@ -31232,19 +31465,14 @@ msgstr "login_required"
#: 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:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "м"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr "Панель запуска macOS"
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "{0} объединён в {1}"
@@ -31263,15 +31491,15 @@ msgstr "мм-дд-гггг"
msgid "mm/dd/yyyy"
msgstr "мм/дд/гггг"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "имя модуля..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "новый"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "новый тип документа"
@@ -31333,7 +31561,7 @@ msgstr "on_update"
msgid "on_update_after_submit"
msgstr "on_update_after_submit"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "или"
@@ -31379,7 +31607,7 @@ msgstr "в очереди"
#. 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
@@ -31394,19 +31622,19 @@ msgstr "переименован с {0} на {1}"
#. 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 "восстановлено {0} как {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "с"
@@ -31420,26 +31648,26 @@ 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'
#: 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:310
msgid "since last month"
@@ -31460,7 +31688,7 @@ 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..."
@@ -31470,31 +31698,31 @@ msgstr "начало установки..."
#. 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 "строковое значение, т.е. {0} или uid={0},ou=users,dc=example,dc=com"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "submit"
-msgstr "отправить"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "имя тега..., например, #tag"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "текст в типе документа"
@@ -31543,7 +31771,7 @@ 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"
@@ -31561,7 +31789,7 @@ msgstr "через импорт данных"
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
-msgstr "через Google Meet"
+msgstr ""
#: frappe/email/doctype/notification/notification.py:410
msgid "via Notification"
@@ -31592,11 +31820,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "при нажатии на элемент, он будет фокусироваться на всплывающем окне."
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (с исправленным qt)."
@@ -31632,11 +31862,11 @@ msgstr "гггг-мм-дд"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : type}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31653,8 +31883,8 @@ msgstr "{0} ({1}) (1 строка обязательна)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31667,13 +31897,13 @@ msgid "{0} Chart"
msgstr "Диаграмма {0}"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "Дашборд {0}"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31707,11 +31937,11 @@ msgstr "{0} М"
msgid "{0} Map"
msgstr "{0} Карта"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} Имя"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Не разрешается изменять {1} после подачи с {2} на {3}"
@@ -31719,7 +31949,7 @@ msgstr "{0} Не разрешается изменять {1} после пода
msgid "{0} Report"
msgstr "{0} Отчет"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} Отчеты"
@@ -31732,11 +31962,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} добавлено"
@@ -31798,7 +32028,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} отменил этот документ {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} не может быть изменен, поскольку он не отменен. Пожалуйста, отмените документ перед созданием поправки."
@@ -31827,16 +32057,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} изменено {1} на {2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0} содержит недопустимое выражение Fetch From, Fetch From не может быть самореферентным."
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} успешно создан"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "{0} создал это"
@@ -31853,11 +32086,19 @@ msgstr "{0} д"
msgid "{0} days ago"
msgstr "{0} дн. назад"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{0} не существует в строке {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} поле не может быть установлено как уникальное в {1}, так как существуют неуникальные значения"
@@ -31882,7 +32123,7 @@ msgstr "{0} ч"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} уже присвоено значение по умолчанию для {1}."
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr "{0} имеет недопустимую нотацию обратной кавычки: {1}"
@@ -31903,7 +32144,11 @@ msgstr "{0} если вы не будете перенаправлены в те
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} в строке {1} не может быть как URL, так и дочерних элементов"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} - обязательное поле"
@@ -31911,7 +32156,15 @@ msgstr "{0} - обязательное поле"
msgid "{0} is a not a valid zip file"
msgstr "{0} — недопустимый zip-файл"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} является недопустимым полем \"Данные\"."
@@ -31919,6 +32172,15 @@ msgstr "{0} является недопустимым полем \"Данные\
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} является недопустимым адресом электронной почты в 'Получатели'"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} находится между {1} и {2}"
@@ -31928,22 +32190,36 @@ msgstr "{0} находится между {1} и {2}"
msgid "{0} is currently {1}"
msgstr "{0} в данный момент {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} равно {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} больше или равно {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} больше, чем {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} меньше или равно {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} меньше, чем {1}"
@@ -31956,10 +32232,14 @@ msgstr "{0} это как {1}"
msgid "{0} is mandatory"
msgstr "{0} является обязательным"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "{0} не является дочерней таблицей {1}"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant 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}"
@@ -31976,12 +32256,12 @@ msgstr "{0} не является действительным календар
msgid "{0} is not a valid Cron expression."
msgstr "{0} не является правильным выражением Cron."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} не является допустимым DocType для динамической ссылки"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} не является действительным адресом электронной почты"
@@ -31989,23 +32269,23 @@ msgstr "{0} не является действительным адресом э
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} не является допустимым кодом ISO 3166 ALPHA-2."
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} не является действительным именем"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} не является действительным номером телефона"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} не является действительным состоянием рабочего процесса. Пожалуйста, обновите рабочий процесс и повторите попытку."
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} не является допустимым родительским DocType для {1}"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} не является допустимым родительским полем для {1}"
@@ -32021,6 +32301,11 @@ msgstr "{0} не является zip файлом"
msgid "{0} is not an allowed role for {1}"
msgstr "{0} не является допустимым родительским полем для {1}"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} не равен {1}"
@@ -32029,10 +32314,12 @@ msgstr "{0} не равен {1}"
msgid "{0} is not like {1}"
msgstr "{0} не похож на {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} не является одним из {1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} не задан"
@@ -32041,36 +32328,50 @@ msgstr "{0} не задан"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} теперь является форматом печати по умолчанию для типа документа {1}"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} — один из {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} требуется"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} задан"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} входит в {1}"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "Выбрано {0} элементов"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} только что выдал себя за тебя. Они указали причину: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} последний раз редактировал это"
@@ -32098,35 +32399,35 @@ msgstr "{0} мин назад"
msgid "{0} months ago"
msgstr "{0} месяцев назад"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} должно быть после {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} должно начинаться с '{1}'"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} должно быть равно '{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} не может быть ни одним из {1}"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} должно быть одним из {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "Сначала необходимо задать {0}"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} должно быть уникальным"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} должно быть {1} {2}"
@@ -32143,11 +32444,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} не разрешается переименовать"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} из {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} из {1} ({2} строк с дочерними)"
@@ -32176,7 +32477,7 @@ msgstr "."
msgid "{0} records deleted"
msgstr "{0} записей удалено"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} записей будет экспортировано"
@@ -32201,7 +32502,7 @@ msgstr "{0} удалено {1} строк из {2}"
msgid "{0} role does not have permission on any doctype"
msgstr "Роль {0} не имеет разрешения ни на один тип документа"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} ряд #{1}:"
@@ -32215,7 +32516,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0} строк до {1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} сохранено успешно"
@@ -32223,7 +32524,7 @@ msgstr "{0} сохранено успешно"
msgid "{0} self assigned this task: {1}"
msgstr "{0} сам себе назначил эту задачу: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} поделился с вами документом {1} {2}"
@@ -32291,7 +32592,7 @@ msgstr "{0} нед"
msgid "{0} weeks ago"
msgstr "{0} недель назад"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr "{0} с ролью {1}"
@@ -32303,7 +32604,7 @@ msgstr "{0} г"
msgid "{0} years ago"
msgstr "{0} лет назад"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} добавлено"
@@ -32311,11 +32612,11 @@ msgstr "{0} {1} добавлено"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} добавлено в Dashboard {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} уже существует"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} не может быть \"{2}\". Должен быть одним из \"{3}\""
@@ -32327,11 +32628,11 @@ msgstr "{0} {1} не может быть листовым узлом, так к
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} не существует, выберите новую цель для объединения"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} связана со следующими представленными документами: {2}"
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} не найдено"
@@ -32339,87 +32640,59 @@ msgstr "{0} {1} не найдено"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Отправленная запись не может быть удалена. Сначала необходимо {2} Отменить {3}."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, Строка {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} complete | Пожалуйста, оставьте эту вкладку открытой до завершения."
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) будет усечен, так как максимальное количество символов {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Невозможно установить \"Изменить\" без \"Отменить"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Невозможно назначить поправку, если она не подлежит отправке"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Невозможно назначить отправку, если она не подлежит отправке"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Невозможно установить Отмена без Отправки"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Невозможно установить импорт без Создать"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Невозможно установить \"Отправить\", \"Отменить\", \"Изменить\" без записи"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Невозможно установить импорт, поскольку {1} не подлежит импорту"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Не удалось прикрепить новый повторяющийся документ. Чтобы включить прикрепление документа в уведомлении об автоматическом повторе, включите {1} в Настройках печати"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: Поле '{1}' не может быть установлено как уникальное, так как оно имеет неуникальные значения"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: Поле {1} в строке {2} не может быть скрытым и обязательным для заполнения по умолчанию"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Поле {1} типа {2} не может быть обязательным"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Имя поля {1} встречается несколько раз в строках {2}"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Тип поля {1} для {2} не может быть уникальным"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Базовые разрешения не установлены"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Разрешено только одно правило с одинаковой ролью, уровнем и {1}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Параметры должны быть допустимым DocType для поля {1} в строке {2}"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: Параметры, необходимые для поля типа \"Ссылка\" или \"Таблица\" {1} в строке {2}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Параметры {1} должны быть такими же, как имя doctype {2} для поля {3}"
@@ -32427,15 +32700,59 @@ msgstr "{0}: Параметры {1} должны быть такими же, к
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Могут применяться и другие правила выдачи разрешений"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Разрешение на уровне 0 должно быть установлено до установки более высоких уровней"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: При необходимости вы можете увеличить лимит для поля с помощью {1}"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: имя поля не может быть задано как зарезервированное ключевое слово {1}"
@@ -32448,15 +32765,15 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} устанавливается в состояние {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} против {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}:Тип поля {1} для {2} не может быть индексирован"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} сохранено"
@@ -32476,11 +32793,11 @@ msgstr "{count} строка выбрана"
msgid "{count} rows selected"
msgstr "{count} строк выбрано"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} не является правильным шаблоном имени поля. Должно быть {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Завершено"
diff --git a/frappe/locale/sl.po b/frappe/locale/sl.po
index 8959280b1a..1890276fb0 100644
--- a/frappe/locale/sl.po
+++ b/frappe/locale/sl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Slovenian\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "\"Nadrejena\" označuje nadrejeno tabelo, v katero je treba dodati to vr
msgid "\"Team Members\" or \"Management\""
msgstr "\"Člani Ekipe\" ali \"Vodstvo\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "Polje \"amended_from\" mora biti prisotno, če želite izvesti spremembo."
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. in sodelavci"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr "'*' je dovoljen samo v funkcijah {0} SQL"
@@ -74,7 +74,7 @@ msgstr "'*' je dovoljen samo v funkcijah {0} SQL"
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "»V Globalnem Iskanju« ni dovoljeno za polje {0} tipa {1}"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "»V Globalnem Iskanju« ni dovoljeno za tip {0} v vrstici {1}"
@@ -90,19 +90,19 @@ msgstr "»V Pogledu Seznama« ni dovoljeno za tip {0} v vrstici {1}"
msgid "'Recipients' not specified"
msgstr "»Prejemniki« niso navedeni"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' ni veljaven IBAN"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "»{0}« ni veljaven URL"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' ni dovoljeno za tip {1} v vrstici {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Obvezno)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0 je najvišja"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Pravilno in 0 = Napačno"
@@ -159,7 +159,7 @@ msgstr "1 Dan"
msgid "1 Google Calendar Event synced."
msgstr "Sinhroniziran je bil 1 dogodek v Google Koledarju."
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Poročilo"
@@ -190,7 +190,7 @@ msgstr "pred 1 mesecem"
msgid "1 of 2"
msgstr "1 od 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "Izvožen bo 1 zapis"
@@ -602,7 +602,7 @@ msgstr "Primer Odgovora po E-pošti
\n\n"
#. Content of the 'html_5' (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Or
"
-msgstr "Ali
"
+msgstr ""
#. Content of the 'Message Examples' (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -773,7 +773,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "Ime tipa DocType se mora začeti s črko in je lahko sestavljeno le iz črk, številk, presledkov, podčrtajev in vezajev"
@@ -787,7 +787,7 @@ msgstr "Primerek ogrodja Frappe lahko deluje kot odjemalec OAuth, vir ali strež
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "Povezava za prenos z vašimi podatki bo poslana na e-poštni naslov, povezan z vašim računom."
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "Polje z imenom {0} že obstaja v {1}"
@@ -1108,7 +1108,7 @@ msgstr "Dejanje / Pot"
msgid "Action Complete"
msgstr "Dejanje Končano"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Dejanje ni uspelo"
@@ -1157,13 +1157,13 @@ msgstr ""
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Dejanja"
@@ -1220,20 +1220,20 @@ msgstr "Dejavnost"
msgid "Activity Log"
msgstr "Dnevnik Dejavnosti"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Dodaj"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Dodaj / Odstrani Stolpce"
@@ -1241,11 +1241,11 @@ msgstr "Dodaj / Odstrani Stolpce"
msgid "Add / Update"
msgstr "Dodaj / Posodobi"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Dodaj Novo Pravilo"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Dodaj Prilogo"
@@ -1265,11 +1265,15 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1278,8 +1282,8 @@ msgid "Add Child"
msgstr "Dodaj Podrejeno"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1323,11 +1327,7 @@ msgstr "Dodaj Skupino"
msgid "Add Indexes"
msgstr "Dodaj Indekse"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Dodaj Več"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr ""
@@ -1340,17 +1340,13 @@ msgstr "Dodaj Udeležence"
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Dodaj Vloge"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr "Dodaj Vrstico"
-
#. 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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Dodaj Podpis"
@@ -1369,16 +1365,16 @@ msgstr "Dodajte Prostor na Vrhu"
msgid "Add Subscribers"
msgstr "Dodaj Naročnike"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Dodaj Oznake"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Dodaj Oznake"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Dodaj Predlogo"
@@ -1428,19 +1424,19 @@ msgstr "Dodaj komentar"
msgid "Add a new section"
msgstr "Dodaj nov razdelek"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Dodaj vrstico nad trenutno vrstico"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Dodaj vrstico na dno"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Dodaj vrstico na vrh"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Dodaj vrstico pod trenutno vrstico"
@@ -1458,6 +1454,10 @@ msgstr "Dodaj stolpec"
msgid "Add field"
msgstr "Dodaj polje"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1471,6 +1471,10 @@ msgstr ""
msgid "Add page break"
msgstr "Dodaj prelom strani"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Dodaj skript za podrejeno tabelo"
@@ -1489,7 +1493,7 @@ msgid "Add tab"
msgstr "Dodaj zavihek"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Dodaj na Nadzorno Ploščo"
@@ -1529,8 +1533,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr ""
@@ -1620,7 +1624,7 @@ msgstr ""
msgid "Adds a custom field to a DocType"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Administracija"
@@ -1647,15 +1651,15 @@ msgstr "Administracija"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Administrator Prijavljen"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator je dostopal do {0} na {1} prek naslova IP {2}."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "Administrator ne more slediti"
@@ -1672,8 +1676,8 @@ msgstr "Napredno"
msgid "Advanced Control"
msgstr "Napredni Nadzor"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Napredno Iskanje"
@@ -1754,7 +1758,7 @@ msgstr ""
msgid "Alert"
msgstr "Opozorilo"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1778,6 +1782,15 @@ msgstr "Poravnaj desno"
msgid "Align Value"
msgstr "Poravnaj vrednost"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1810,7 +1823,7 @@ msgstr "Vsi"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Ves Dan"
@@ -1822,11 +1835,11 @@ msgstr ""
msgid "All Records"
msgstr "Vsi zapisi"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr ""
@@ -2137,7 +2150,7 @@ msgstr "Dovoljene Vloge"
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -2171,13 +2184,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Že Registriran"
@@ -2272,7 +2333,7 @@ msgstr "Sprememba"
msgid "Amendment Naming Override"
msgstr "Sprememba Razveljavitev Poimenovanja"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Sprememba ni Dovoljena"
@@ -2285,7 +2346,7 @@ msgstr "Pravila poimenovanja sprememb so posodobljena."
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2336,7 +2397,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr "Anonimni odgovori"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr ""
@@ -2349,7 +2410,7 @@ msgstr ""
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2399,11 +2460,11 @@ msgstr "Naziv Aplikacije"
msgid "App Name (Client Name)"
msgstr ""
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr ""
@@ -2477,7 +2538,7 @@ msgstr ""
msgid "Apply"
msgstr "Uporabi"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Uporabi Pravilo Dodelitve"
@@ -2486,6 +2547,10 @@ msgstr "Uporabi Pravilo Dodelitve"
msgid "Apply Filters"
msgstr "Uporabi Filtre"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2525,7 +2590,7 @@ msgstr ""
msgid "Apply to all Documents Types"
msgstr ""
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Uporaba: {0}"
@@ -2533,18 +2598,11 @@ msgstr "Uporaba: {0}"
msgid "Approval Required"
msgstr "Zahtevana Odobritev"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Aplikacije"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr "Aplikacije z Iskanjem"
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2567,16 +2625,16 @@ msgstr "Arhivirani Stolpci"
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr ""
@@ -2595,19 +2653,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
@@ -2627,7 +2685,7 @@ msgstr ""
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
@@ -2676,7 +2734,7 @@ msgstr ""
msgid "Ask"
msgstr "Vprašaj"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Dodeli"
@@ -2689,7 +2747,7 @@ msgstr "Dodeli Pogoj"
msgid "Assign To"
msgstr "Dodeli"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodeli"
@@ -2739,7 +2797,7 @@ msgstr "Dodelil/a"
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2828,7 +2886,7 @@ msgstr "Dodela"
msgid "Asynchronous"
msgstr "Asinhrono"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2853,7 +2911,7 @@ msgstr ""
msgid "Attach"
msgstr "Priloži"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Priloži Dokument Tisk"
@@ -2951,19 +3009,26 @@ msgstr "Nastavitve Priloge"
#. 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:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Priloge"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr ""
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "Pripisovanje"
@@ -3288,11 +3353,6 @@ msgstr "Odlično delo"
msgid "Awesome, now try making an entry yourself"
msgstr "Odlično, zdaj pa poskusite sami ustvariti vnos"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr "Awesomebar"
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3398,17 +3458,12 @@ msgstr "Barva Ozadja"
msgid "Background Image"
msgstr "Slika Ozadja"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-msgstr "Dejavnost opravila v ozadju"
-
#. 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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Ozadna Dela"
@@ -3521,8 +3576,8 @@ 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:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "Na podlagi"
@@ -3546,6 +3601,8 @@ msgstr "Osnovno"
msgid "Basic Info"
msgstr "Osnovne informacije"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3615,7 +3672,7 @@ msgstr "Začenši z"
msgid "Beta"
msgstr "Beta"
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr ""
@@ -3743,18 +3800,11 @@ msgstr "Znamka HTML"
msgid "Brand Image"
msgstr "Slika Znamke"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr "Logotip Znamke"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr "Logotip Znamke z Iskanjem"
-
#. 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"
@@ -3825,7 +3875,7 @@ msgstr "Množično brisanje"
msgid "Bulk Edit"
msgstr "Množično urejanje"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Množično urejanje {0}"
@@ -3846,7 +3896,7 @@ msgstr "Množično izvažanje PDF"
msgid "Bulk Update"
msgstr "Množična posodobitev"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3858,7 +3908,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -4007,7 +4057,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Izračunaj"
@@ -4057,12 +4107,12 @@ msgid "Callback Title"
msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4074,11 +4124,11 @@ msgstr "Kampanja"
msgid "Campaign Description (Optional)"
msgstr "Opis Kampanje (Neobvezno)"
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -4088,7 +4138,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -4110,7 +4160,7 @@ msgstr ""
msgid "Cancel"
msgstr "Prekliči"
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Prekliči"
@@ -4120,11 +4170,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Prekliči"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "Prekliči Vse"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr ""
@@ -4136,7 +4186,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -4169,7 +4219,7 @@ msgstr ""
msgid "Cancelling documents"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr ""
@@ -4177,7 +4227,7 @@ msgstr ""
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -4185,7 +4235,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4205,11 +4255,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4221,7 +4271,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4229,10 +4279,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr ""
@@ -4241,15 +4295,15 @@ msgstr ""
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4260,11 +4314,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4292,7 +4346,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4305,7 +4359,7 @@ msgstr ""
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr ""
@@ -4321,15 +4375,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4341,7 +4395,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr ""
@@ -4366,7 +4420,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr ""
@@ -4386,7 +4440,7 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
@@ -4400,7 +4454,7 @@ msgstr "Kartica"
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr ""
@@ -4429,17 +4483,19 @@ msgstr "Opis Kategorije"
msgid "Category Name"
msgstr "Ime Kategorije"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr "Center"
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4527,7 +4583,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4592,6 +4648,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr ""
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr ""
@@ -4643,7 +4705,7 @@ msgstr "Podrejeni Doctype"
msgid "Child Item"
msgstr "Podrejeni Artikel"
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4653,7 +4715,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4661,7 +4723,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4681,10 +4743,6 @@ msgstr ""
msgid "Choose authentication method to be used by all users"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr ""
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4701,11 +4759,11 @@ msgstr "Mesto/Kraj"
msgid "Clear"
msgstr "Počisti"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "Počisti & Dodaj Predlogo"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "Počisti & Dodaj Predlogo"
@@ -4713,7 +4771,7 @@ msgstr "Počisti & Dodaj Predlogo"
msgid "Clear All"
msgstr "Počisti vse"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Počisti dodelitev"
@@ -4739,7 +4797,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4807,7 +4865,7 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
@@ -4915,7 +4973,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Zapri"
@@ -4925,7 +4983,7 @@ msgstr "Zapri"
msgid "Close Condition"
msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4981,12 +5039,12 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -5043,7 +5101,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5054,7 +5112,7 @@ msgstr "Barva"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5099,11 +5157,11 @@ msgstr "Ime Stolpca"
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -5146,7 +5204,7 @@ msgstr "Comm10E"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5293,12 +5351,12 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5313,7 +5371,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr ""
@@ -5404,7 +5462,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5493,8 +5551,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5612,7 +5670,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5681,11 +5739,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5697,12 +5755,12 @@ msgstr ""
msgid "Copy embed code"
msgstr ""
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr ""
@@ -5723,7 +5781,7 @@ msgstr ""
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr ""
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr ""
@@ -5731,7 +5789,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr ""
@@ -5739,11 +5797,11 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5751,7 +5809,7 @@ msgstr ""
msgid "Could not start up:"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr ""
@@ -5803,7 +5861,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
@@ -5830,15 +5888,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
@@ -5851,13 +5910,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr ""
@@ -5891,7 +5950,7 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
@@ -5904,7 +5963,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5920,18 +5979,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5948,7 +6007,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr ""
@@ -5967,13 +6026,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr ""
@@ -6167,7 +6234,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr ""
@@ -6178,15 +6245,15 @@ msgstr ""
msgid "Custom Field"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr ""
@@ -6212,7 +6279,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr ""
@@ -6258,7 +6325,7 @@ msgstr ""
msgid "Custom Report"
msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr ""
@@ -6283,11 +6350,11 @@ msgstr ""
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6310,26 +6377,26 @@ msgstr ""
msgid "Customization"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr ""
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr ""
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6426,7 +6493,7 @@ msgstr ""
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr ""
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr ""
@@ -6483,8 +6550,8 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr ""
@@ -6734,7 +6801,7 @@ msgstr ""
msgid "Days Before or After"
msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr ""
@@ -6931,11 +6998,11 @@ msgstr ""
msgid "Default display currency"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr ""
@@ -6992,11 +7059,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -7004,7 +7072,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -7018,10 +7086,6 @@ msgstr ""
msgid "Delete Account"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr ""
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7051,7 +7115,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr ""
@@ -7079,6 +7151,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7093,16 +7169,20 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7133,7 +7213,7 @@ msgstr ""
msgid "Deleted all documents successfully"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr ""
@@ -7240,6 +7320,7 @@ msgstr "Podrejeni Od (Vključno)"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7322,16 +7403,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7361,11 +7447,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr ""
@@ -7513,10 +7599,11 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr ""
@@ -7530,11 +7617,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7608,11 +7695,11 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7620,7 +7707,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7675,7 +7762,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7698,7 +7784,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7711,7 +7796,7 @@ msgstr ""
msgid "DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr ""
@@ -7779,10 +7864,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr ""
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7800,15 +7881,15 @@ msgstr ""
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr ""
@@ -7822,7 +7903,7 @@ msgstr ""
msgid "Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7861,7 +7942,7 @@ msgstr ""
msgid "Document Follow"
msgstr ""
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr ""
@@ -7884,19 +7965,19 @@ msgstr ""
msgid "Document Links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7915,8 +7996,8 @@ msgstr ""
msgid "Document Name"
msgstr ""
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7934,7 +8015,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr ""
@@ -8038,7 +8119,7 @@ msgstr ""
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8058,11 +8139,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr ""
@@ -8091,27 +8172,27 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr ""
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr ""
@@ -8123,11 +8204,11 @@ msgstr ""
msgid "Document not Relinked"
msgstr ""
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
@@ -8143,10 +8224,6 @@ msgstr ""
msgid "Document {0} has been set to state {1} by {2}"
msgstr ""
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr ""
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8284,7 +8361,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr ""
@@ -8368,7 +8445,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr ""
@@ -8376,19 +8453,15 @@ msgstr ""
msgid "Duplicate Entry"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr ""
@@ -8396,6 +8469,18 @@ msgstr ""
msgid "Duplicate field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8483,9 +8568,10 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8496,7 +8582,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Uredi"
@@ -8506,7 +8592,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Uredi"
@@ -8527,15 +8613,15 @@ msgstr "Uredi Grafikon"
msgid "Edit Custom Block"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8549,7 +8635,7 @@ msgstr ""
msgid "Edit Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr ""
@@ -8562,7 +8648,7 @@ msgstr ""
msgid "Edit Format"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8620,7 +8706,7 @@ msgstr ""
msgid "Edit Shortcut"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8643,11 +8729,11 @@ msgstr ""
msgid "Edit the {0} Doctype"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr ""
@@ -8703,6 +8789,7 @@ msgstr ""
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8718,12 +8805,14 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8758,7 +8847,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr ""
@@ -8956,7 +9045,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8995,7 +9084,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -9003,7 +9092,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9322,11 +9411,11 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr ""
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9353,6 +9442,10 @@ msgstr ""
msgid "Enter folder name"
msgstr ""
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9383,7 +9476,7 @@ msgstr ""
msgid "Entity Type"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr ""
@@ -9417,7 +9510,7 @@ msgstr ""
msgid "Error"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr ""
@@ -9432,12 +9525,12 @@ msgstr ""
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ""
@@ -9475,15 +9568,15 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9499,15 +9592,15 @@ msgstr ""
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9517,6 +9610,12 @@ msgstr ""
msgid "Errors"
msgstr ""
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9535,6 +9634,11 @@ msgstr ""
msgid "Event Frequency"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9560,11 +9664,11 @@ msgstr ""
msgid "Event Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr ""
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr ""
@@ -9586,6 +9690,7 @@ msgid "Exact Copies"
msgstr ""
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr ""
@@ -9656,7 +9761,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9677,21 +9782,21 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr ""
@@ -9743,20 +9848,21 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr ""
@@ -9795,11 +9901,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr ""
@@ -9815,6 +9921,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9827,7 +9937,7 @@ msgstr ""
msgid "Export without main header"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr ""
@@ -9867,7 +9977,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr ""
@@ -9916,12 +10026,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr ""
@@ -9984,7 +10099,7 @@ msgstr ""
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9996,7 +10111,7 @@ msgstr ""
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr ""
@@ -10012,7 +10127,7 @@ msgstr ""
msgid "Failed to request login to Frappe Cloud"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr ""
@@ -10054,7 +10169,7 @@ msgstr ""
msgid "Fax"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr ""
@@ -10114,8 +10229,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10125,7 +10240,7 @@ msgstr ""
msgid "Field \"route\" is mandatory for Web Views"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -10133,7 +10248,7 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr ""
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -10142,7 +10257,7 @@ msgstr ""
msgid "Field Description"
msgstr "Opis Polja"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10190,7 +10305,7 @@ msgstr "Polje za sledenje"
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10198,11 +10313,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10224,7 +10339,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10233,7 +10348,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10241,7 +10356,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10257,7 +10372,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10305,7 +10420,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10329,7 +10444,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10405,12 +10520,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10437,12 +10552,17 @@ msgstr "Datoteke"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filter"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10461,7 +10581,7 @@ msgstr "Filter Meta"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Ime Filtra"
@@ -10470,11 +10590,11 @@ msgstr "Ime Filtra"
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10493,10 +10613,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10520,7 +10644,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10551,10 +10675,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10572,14 +10692,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10667,11 +10787,11 @@ msgstr "Decimalna Natančnost"
msgid "Fold"
msgstr "Zloži"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Zloženka ne sme biti na koncu obrazca"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Zloženka mora biti pred prekinitvijo oddelka"
@@ -10700,12 +10820,12 @@ msgstr ""
msgid "Folio"
msgstr "Folio"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Sledi"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10713,7 +10833,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10721,7 +10841,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10729,7 +10849,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10798,7 +10918,7 @@ msgstr "Podrobnosti Stopke"
msgid "Footer HTML"
msgstr "Stopka HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "Stopka HTML nastaviti iz priponke {0}"
@@ -10835,7 +10955,7 @@ msgstr ""
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10868,15 +10988,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10900,20 +11011,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10941,7 +11048,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10991,7 +11098,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -11170,7 +11278,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11191,7 +11299,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11232,7 +11340,7 @@ msgstr ""
msgid "Full Name"
msgstr ""
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11245,7 +11353,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11254,11 +11362,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11323,11 +11431,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11337,8 +11445,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11449,7 +11557,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11509,7 +11617,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11735,7 +11843,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11815,6 +11923,10 @@ msgstr ""
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11903,7 +12015,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11939,7 +12051,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11976,7 +12088,7 @@ msgstr ""
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12031,7 +12143,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -12067,8 +12179,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12234,7 +12346,7 @@ msgstr ""
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12317,18 +12429,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12379,7 +12491,6 @@ msgid "IP Address"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12400,11 +12511,16 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr ""
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12415,6 +12531,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12446,13 +12566,13 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr ""
@@ -12579,12 +12699,20 @@ msgstr ""
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
@@ -12684,7 +12812,7 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr ""
@@ -12750,11 +12878,11 @@ msgstr ""
msgid "Image Width"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr ""
@@ -12788,7 +12916,7 @@ msgstr ""
msgid "Impersonated by {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12806,11 +12934,12 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -13033,15 +13162,15 @@ msgid "Include Web View Link in Email"
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr ""
@@ -13108,11 +13237,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr ""
@@ -13164,7 +13293,7 @@ msgstr ""
msgid "Indicator Color"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr ""
@@ -13211,15 +13340,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr ""
@@ -13249,8 +13378,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr ""
@@ -13276,15 +13405,15 @@ msgstr ""
msgid "Instructions"
msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13352,7 +13481,7 @@ msgstr ""
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr ""
@@ -13361,6 +13490,11 @@ msgstr ""
msgid "Internal record of document shares"
msgstr ""
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13400,13 +13534,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13446,7 +13580,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13454,7 +13588,8 @@ msgstr ""
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr ""
@@ -13462,8 +13597,8 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13487,7 +13622,7 @@ msgstr ""
msgid "Invalid Login Token"
msgstr ""
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr ""
@@ -13495,7 +13630,7 @@ msgstr ""
msgid "Invalid Mail Server. Please rectify and try again."
msgstr ""
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr ""
@@ -13506,8 +13641,8 @@ msgstr ""
msgid "Invalid Operation"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr ""
@@ -13519,7 +13654,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr ""
@@ -13532,11 +13667,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13545,7 +13680,7 @@ msgstr ""
msgid "Invalid Search Field {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr ""
@@ -13564,7 +13699,7 @@ msgstr ""
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr ""
@@ -13576,7 +13711,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13584,19 +13719,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13604,18 +13739,22 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr ""
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr ""
@@ -13624,11 +13763,11 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13636,11 +13775,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13648,11 +13787,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13660,7 +13799,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13677,19 +13816,19 @@ msgstr ""
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13713,11 +13852,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13734,24 +13873,24 @@ msgstr ""
msgid "Invalid username or password"
msgstr ""
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr ""
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13879,7 +14018,7 @@ msgstr ""
msgid "Is Folder"
msgstr "Je Mapa"
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Je Globalno"
@@ -13950,7 +14089,7 @@ msgstr "Je Javno"
msgid "Is Published Field"
msgstr "Je Objavljeno Polje"
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr ""
@@ -14195,8 +14334,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr ""
@@ -14519,7 +14658,7 @@ msgstr ""
msgid "Label and Type"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr ""
@@ -14542,7 +14681,7 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14588,6 +14727,14 @@ msgstr ""
msgid "Last Active"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14712,6 +14859,11 @@ msgstr ""
msgid "Last synced {0}"
msgstr ""
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
@@ -14739,9 +14891,15 @@ msgstr ""
msgid "Ledger"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14835,7 +14993,7 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14864,7 +15022,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14886,7 +15044,7 @@ msgstr ""
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr ""
@@ -14927,7 +15085,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr ""
@@ -14951,7 +15109,7 @@ msgstr ""
msgid "Limit"
msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr ""
@@ -15077,7 +15235,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -15095,7 +15253,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
@@ -15138,6 +15296,7 @@ msgstr ""
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15159,8 +15318,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr ""
@@ -15190,7 +15349,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -15204,7 +15363,7 @@ msgstr ""
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr ""
@@ -15231,7 +15390,7 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
@@ -15240,7 +15399,7 @@ msgstr ""
msgid "Load Balancing"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15258,10 +15417,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr ""
@@ -15278,8 +15437,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15289,7 +15448,8 @@ msgid "Loading..."
msgstr ""
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
@@ -15362,6 +15522,11 @@ msgstr ""
msgid "Login"
msgstr ""
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15437,7 +15602,7 @@ msgstr ""
msgid "Login to {0}"
msgstr ""
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr ""
@@ -15504,8 +15669,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr ""
@@ -15536,7 +15700,7 @@ msgstr ""
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr ""
@@ -15686,7 +15850,7 @@ msgstr ""
msgid "Mandatory fields required in {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
@@ -15748,7 +15912,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15800,9 +15964,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15864,7 +16031,7 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr ""
@@ -15885,20 +16052,27 @@ msgstr ""
msgid "Maximum {0} rows allowed"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15942,12 +16116,12 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15981,13 +16155,13 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr ""
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
@@ -16018,7 +16192,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr ""
@@ -16115,7 +16289,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -16204,7 +16378,7 @@ msgstr ""
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16224,7 +16398,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16289,7 +16463,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16336,9 +16510,8 @@ msgstr ""
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16355,7 +16528,7 @@ msgstr ""
msgid "Module to Export"
msgstr ""
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16470,7 +16643,7 @@ msgstr ""
msgid "More content for the bottom of the page."
msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr ""
@@ -16485,7 +16658,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr ""
@@ -16497,19 +16670,19 @@ msgstr ""
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16521,7 +16694,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr ""
@@ -16639,7 +16812,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr ""
@@ -16651,7 +16824,7 @@ msgstr ""
msgid "Name of the new Print Format"
msgstr ""
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr ""
@@ -16690,7 +16863,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr ""
@@ -16714,11 +16887,6 @@ msgstr ""
msgid "Navbar Settings"
msgstr ""
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16732,39 +16900,44 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16786,6 +16959,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16802,7 +16976,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16818,8 +16992,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr ""
@@ -16868,7 +17042,7 @@ msgstr ""
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16889,8 +17063,8 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr ""
@@ -16917,8 +17091,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16926,7 +17100,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16969,32 +17143,32 @@ msgstr ""
msgid "New value to be set"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr ""
@@ -17006,7 +17180,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -17027,7 +17201,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr ""
@@ -17054,12 +17228,16 @@ msgstr ""
msgid "Next Action Email Template"
msgstr ""
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -17126,20 +17304,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -17209,7 +17391,7 @@ msgstr ""
msgid "No Google Calendar Event to sync."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17228,23 +17410,23 @@ msgstr ""
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr ""
@@ -17264,11 +17446,11 @@ msgstr ""
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr ""
@@ -17276,7 +17458,7 @@ msgstr ""
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17284,7 +17466,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17300,7 +17482,7 @@ msgstr ""
msgid "No Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17320,7 +17502,7 @@ msgstr ""
msgid "No changes in document"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17384,7 +17566,7 @@ msgstr ""
msgid "No file attached"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr ""
@@ -17432,11 +17614,11 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
@@ -17445,7 +17627,7 @@ msgstr ""
msgid "No permission to read {0}"
msgstr ""
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr ""
@@ -17461,7 +17643,7 @@ msgstr ""
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr ""
@@ -17469,7 +17651,7 @@ msgstr ""
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17481,11 +17663,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17497,7 +17680,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17506,7 +17689,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17549,12 +17732,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr ""
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17596,7 +17779,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17605,7 +17788,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17614,8 +17797,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17635,7 +17818,7 @@ msgstr ""
msgid "Not Sent"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr ""
@@ -17649,15 +17832,15 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr ""
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr ""
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17665,7 +17848,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17685,11 +17868,11 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr ""
@@ -17702,11 +17885,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17734,7 +17917,7 @@ msgstr ""
msgid "Note:"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17766,7 +17949,7 @@ msgstr ""
msgid "Notes:"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr ""
@@ -17778,8 +17961,8 @@ msgstr ""
msgid "Nothing left to undo"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17790,11 +17973,13 @@ msgid "Nothing to update"
msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr ""
@@ -17810,7 +17995,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17819,11 +18004,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17841,13 +18021,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -18083,7 +18265,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -18123,7 +18305,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -18131,7 +18313,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18198,7 +18380,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18242,7 +18424,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18258,11 +18440,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18283,7 +18465,7 @@ msgstr ""
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
@@ -18306,11 +18488,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18353,7 +18535,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18376,8 +18558,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18413,6 +18595,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18427,7 +18613,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18439,11 +18625,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18458,16 +18644,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18499,7 +18685,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18525,7 +18711,7 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18559,7 +18745,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
@@ -18568,7 +18754,7 @@ msgstr ""
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18576,7 +18762,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18584,7 +18770,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18600,7 +18786,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18620,8 +18806,12 @@ msgstr ""
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18696,18 +18886,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18731,7 +18923,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18739,11 +18931,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18902,7 +19094,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18918,7 +19110,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18929,7 +19121,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18962,11 +19154,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18980,7 +19172,7 @@ msgstr ""
msgid "Parent Label"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -19005,11 +19197,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -19028,7 +19220,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -19065,11 +19257,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -19078,7 +19270,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -19107,11 +19299,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -19123,7 +19315,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -19185,7 +19377,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19270,15 +19462,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19286,7 +19478,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19296,12 +19492,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19310,11 +19506,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19345,7 +19536,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19356,13 +19546,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19374,11 +19563,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19448,13 +19637,13 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
@@ -19512,7 +19701,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19528,7 +19717,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19536,11 +19725,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19552,11 +19741,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19588,7 +19777,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19618,10 +19807,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19634,7 +19823,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19708,15 +19897,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19732,7 +19921,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19752,7 +19941,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19760,7 +19949,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19810,11 +19999,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19822,7 +20011,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19842,7 +20031,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19854,7 +20043,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19882,7 +20071,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -20003,11 +20192,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -20059,11 +20248,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -20071,7 +20260,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -20089,7 +20278,7 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
@@ -20133,16 +20322,16 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20195,19 +20384,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20225,8 +20414,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20270,7 +20460,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20303,11 +20493,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20320,8 +20510,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20360,7 +20550,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20369,11 +20559,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20383,15 +20573,15 @@ msgstr ""
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20440,7 +20630,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20480,9 +20670,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20552,7 +20742,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr ""
@@ -20702,7 +20892,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20764,7 +20954,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20785,7 +20975,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20826,7 +21016,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20918,6 +21108,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20926,7 +21125,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20944,7 +21143,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20955,11 +21154,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20996,7 +21196,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -21036,7 +21236,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -21078,7 +21278,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -21129,7 +21329,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21195,12 +21395,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21416,12 +21616,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21438,7 +21638,7 @@ msgstr ""
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21453,7 +21653,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21464,7 +21664,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21510,10 +21710,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr ""
@@ -21525,7 +21723,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21544,7 +21742,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21624,9 +21822,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21654,7 +21852,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21701,7 +21899,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21764,6 +21962,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21778,10 +21977,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21850,7 +22048,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21884,14 +22082,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21902,7 +22096,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21914,7 +22108,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21922,12 +22116,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21950,7 +22144,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21958,7 +22152,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr "Poročila & Nastavitve"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -22017,13 +22211,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -22139,7 +22333,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22197,7 +22391,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22206,7 +22400,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22228,6 +22422,11 @@ msgstr ""
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22255,8 +22454,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22303,9 +22502,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22340,8 +22545,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22356,8 +22559,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22401,7 +22603,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22409,11 +22611,9 @@ msgstr ""
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22435,7 +22635,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22554,20 +22754,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22594,7 +22794,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22613,14 +22813,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22643,7 +22843,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22723,7 +22923,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22757,7 +22957,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22829,22 +23029,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22857,7 +23058,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22865,7 +23066,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22883,20 +23084,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr ""
@@ -22905,11 +23106,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -23113,7 +23314,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23133,7 +23334,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -23151,7 +23352,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -23168,12 +23369,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23245,15 +23446,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23303,24 +23504,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23336,7 +23539,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23380,13 +23583,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23395,7 +23598,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23404,19 +23607,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23441,16 +23644,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23460,7 +23663,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23496,12 +23699,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23518,11 +23715,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23548,13 +23745,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23588,7 +23785,7 @@ msgstr ""
msgid "Select {0}"
msgstr ""
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23618,6 +23815,11 @@ msgstr ""
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23670,7 +23872,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23733,7 +23935,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
@@ -23772,7 +23974,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23866,7 +24068,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23876,7 +24078,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23903,11 +24105,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23935,16 +24141,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr ""
@@ -23985,7 +24189,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -24011,7 +24215,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -24054,8 +24258,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -24075,12 +24279,12 @@ msgstr ""
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -24184,8 +24388,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24208,11 +24412,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24220,12 +24424,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24254,13 +24458,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24268,7 +24473,7 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
@@ -24328,16 +24533,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24383,7 +24582,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24435,7 +24634,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24555,7 +24754,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24697,7 +24896,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24820,7 +25019,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24995,15 +25194,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -25034,13 +25233,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25089,7 +25288,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -25128,6 +25327,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25135,6 +25335,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25202,8 +25403,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25375,7 +25576,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25413,7 +25614,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25527,7 +25728,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25541,7 +25742,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25562,14 +25763,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25599,7 +25800,7 @@ msgstr ""
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25623,11 +25824,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25653,7 +25854,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
@@ -25688,12 +25889,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25735,7 +25936,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25760,7 +25961,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25785,7 +25986,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25826,7 +26027,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25839,7 +26040,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25908,9 +26109,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25920,7 +26119,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -26047,6 +26246,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26061,7 +26261,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26137,6 +26336,11 @@ msgstr ""
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26153,6 +26357,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26188,7 +26398,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26197,7 +26407,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26215,7 +26425,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26223,11 +26433,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26247,17 +26457,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26341,7 +26551,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26437,7 +26647,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26489,7 +26699,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26637,7 +26855,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26649,6 +26867,42 @@ msgstr ""
msgid "The total number of user document types limit has been crossed."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 ""
@@ -26690,7 +26944,7 @@ msgstr ""
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr ""
@@ -26698,7 +26952,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26707,7 +26961,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26719,11 +26973,11 @@ msgstr ""
msgid "There is no data to be exported"
msgstr ""
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr ""
@@ -26731,7 +26985,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26747,7 +27001,7 @@ msgstr ""
msgid "There was an error saving filters"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr ""
@@ -26755,11 +27009,11 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr ""
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr ""
@@ -26828,11 +27082,11 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26856,7 +27110,7 @@ msgstr ""
msgid "This doctype has no orphan fields to trim"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26872,15 +27126,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26893,7 +27147,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26918,11 +27172,11 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
@@ -26941,7 +27195,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26983,15 +27237,15 @@ msgstr ""
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr ""
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr ""
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26999,7 +27253,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr ""
@@ -27023,7 +27277,7 @@ msgstr ""
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr ""
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -27067,7 +27321,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr ""
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
@@ -27098,6 +27352,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27105,6 +27360,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -27187,11 +27443,6 @@ msgstr ""
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
@@ -27223,11 +27474,11 @@ msgstr ""
msgid "Timeline Name"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
@@ -27298,7 +27549,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27321,7 +27572,7 @@ msgstr ""
msgid "Title Prefix"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27407,7 +27658,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -27460,31 +27711,14 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr ""
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr ""
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27520,7 +27754,7 @@ msgid "Tomorrow"
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr ""
@@ -27528,15 +27762,19 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -27592,10 +27830,10 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr ""
@@ -27610,7 +27848,7 @@ msgstr ""
msgid "Total Errors (last 1 day)"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr ""
@@ -27710,7 +27948,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27746,7 +27984,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27757,7 +27995,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr ""
@@ -27793,7 +28031,7 @@ msgstr ""
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr ""
@@ -27842,8 +28080,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27889,6 +28127,7 @@ msgstr ""
#. 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 'Event Notifications'
#. 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'
@@ -27902,6 +28141,7 @@ msgstr ""
#: 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/event_notifications/event_notifications.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
@@ -27910,7 +28150,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28077,7 +28317,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -28085,7 +28325,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr ""
@@ -28101,7 +28341,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -28122,20 +28362,20 @@ msgstr ""
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr ""
@@ -28209,9 +28449,10 @@ msgstr ""
msgid "Unsafe SQL query"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr ""
@@ -28244,11 +28485,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28268,7 +28509,7 @@ msgstr ""
msgid "Unzipping files..."
msgstr ""
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr ""
@@ -28276,13 +28517,13 @@ msgstr ""
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr ""
@@ -28353,7 +28594,7 @@ msgstr ""
msgid "Update from Frappe Cloud"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr ""
@@ -28361,8 +28602,7 @@ msgstr ""
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr ""
@@ -28374,11 +28614,11 @@ msgstr ""
msgid "Updated To A New Version 🎉"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr ""
@@ -28403,11 +28643,11 @@ msgstr ""
msgid "Updating naming series options"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr ""
@@ -28415,12 +28655,12 @@ msgstr ""
msgid "Updating {0} of {1}, {2}"
msgstr ""
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28468,6 +28708,7 @@ msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr ""
@@ -28539,7 +28780,7 @@ msgstr ""
msgid "Use of sub-query or function is restricted"
msgstr ""
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr ""
@@ -28573,9 +28814,8 @@ msgstr ""
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28602,11 +28842,11 @@ msgstr ""
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28742,7 +28982,7 @@ msgstr ""
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr ""
@@ -28758,19 +28998,19 @@ msgid "User Permission"
msgstr ""
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr ""
@@ -28843,7 +29083,7 @@ msgstr ""
msgid "User can login using Email id or User Name"
msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr ""
@@ -28877,27 +29117,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr ""
@@ -28906,11 +29146,11 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr ""
@@ -28935,18 +29175,17 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr ""
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29017,7 +29256,7 @@ msgstr ""
msgid "Validate SSL Certificate"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr ""
@@ -29046,7 +29285,7 @@ msgstr ""
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29073,15 +29312,19 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -29093,7 +29336,7 @@ msgstr ""
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -29118,7 +29361,13 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr ""
@@ -29135,7 +29384,7 @@ msgstr ""
msgid "Value {0} must in {1} format"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr ""
@@ -29144,11 +29393,11 @@ msgstr ""
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr ""
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr ""
@@ -29156,7 +29405,7 @@ msgstr ""
msgid "Verification Link"
msgstr ""
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr ""
@@ -29170,7 +29419,7 @@ msgid "Verified"
msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr ""
@@ -29206,7 +29455,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr ""
@@ -29218,7 +29467,7 @@ msgstr ""
msgid "View File"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr ""
@@ -29255,7 +29504,7 @@ msgstr ""
msgid "View Settings"
msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29264,14 +29513,11 @@ msgstr ""
msgid "View Switcher"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29287,7 +29533,7 @@ msgstr ""
msgid "View this in your browser"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr ""
@@ -29323,7 +29569,7 @@ msgstr ""
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29371,7 +29617,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29380,7 +29626,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr ""
@@ -29464,7 +29710,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr ""
@@ -29561,7 +29807,7 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29616,7 +29862,7 @@ msgstr ""
msgid "Website Search Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr ""
@@ -29681,6 +29927,11 @@ msgstr ""
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29768,15 +30019,15 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr ""
@@ -29798,10 +30049,6 @@ msgstr ""
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29819,7 +30066,7 @@ msgstr ""
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr ""
@@ -29940,6 +30187,10 @@ msgstr ""
msgid "Workflow Document State"
msgstr ""
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -29957,11 +30208,11 @@ msgstr "Stanje Delovnega Toka"
msgid "Workflow State Field"
msgstr "Polje Stanja Delovnega Toka"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Stanje Delovnega Toka ni nastavljeno"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Prehod v Stanje Delovnega Toka ni dovoljen iz {0} na {1}"
@@ -29969,7 +30220,7 @@ msgstr "Prehod v Stanje Delovnega Toka ni dovoljen iz {0} na {1}"
msgid "Workflow States Don't Exist"
msgstr "Stanja Delovnega Toka ne obstajajo"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Status Delovnega Toka"
@@ -30004,18 +30255,15 @@ msgstr "Delovni Tok uspešno posodobljen"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -30042,7 +30290,6 @@ 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 ""
@@ -30056,27 +30303,15 @@ msgstr ""
msgid "Workspace Quick List"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr ""
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr ""
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -30086,13 +30321,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr ""
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr ""
@@ -30121,11 +30350,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr ""
@@ -30143,7 +30373,7 @@ msgstr ""
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -30158,7 +30388,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr ""
@@ -30206,10 +30436,14 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30218,10 +30452,10 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -30257,7 +30491,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30265,7 +30499,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30273,11 +30507,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30300,7 +30534,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -30308,10 +30542,14 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr ""
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -30328,7 +30566,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30336,7 +30574,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -30349,7 +30587,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr ""
@@ -30373,10 +30611,6 @@ msgstr ""
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
@@ -30431,7 +30665,7 @@ msgstr ""
msgid "You can try changing the filters of your report."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr ""
@@ -30461,6 +30695,10 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -30487,7 +30725,6 @@ msgid "You changed {0} to {1}"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr ""
@@ -30496,11 +30733,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
@@ -30512,15 +30745,19 @@ msgstr ""
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
@@ -30556,7 +30793,7 @@ msgstr ""
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
@@ -30576,7 +30813,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30585,7 +30822,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr ""
@@ -30601,12 +30837,12 @@ msgstr ""
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr ""
@@ -30614,7 +30850,7 @@ msgstr ""
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr ""
@@ -30646,7 +30882,7 @@ msgstr ""
msgid "You need to have \"Share\" permission"
msgstr ""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr ""
@@ -30666,7 +30902,7 @@ msgstr ""
msgid "You need write permission on {0} {1} to rename"
msgstr ""
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
@@ -30713,7 +30949,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30790,7 +31026,7 @@ msgstr ""
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr ""
@@ -30832,7 +31068,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30854,7 +31090,7 @@ msgstr ""
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30873,7 +31109,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -30896,7 +31132,7 @@ msgstr "po Vlogi"
msgid "cProfile Output"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr ""
@@ -30912,7 +31148,9 @@ msgid "canceled"
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30936,7 +31174,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30994,7 +31232,7 @@ msgstr ""
msgid "descending"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr ""
@@ -31004,7 +31242,7 @@ msgstr ""
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr ""
@@ -31046,12 +31284,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr ""
@@ -31107,12 +31349,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr ""
@@ -31127,6 +31369,20 @@ msgstr ""
msgid "import"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -31166,16 +31422,11 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr ""
@@ -31194,15 +31445,15 @@ msgstr ""
msgid "mm/dd/yyyy"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr ""
@@ -31264,7 +31515,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr ""
@@ -31337,7 +31588,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -31421,11 +31672,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr ""
@@ -31523,11 +31774,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31563,11 +31816,11 @@ msgstr ""
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31584,8 +31837,8 @@ msgstr ""
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31598,13 +31851,13 @@ msgid "{0} Chart"
msgstr ""
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31638,11 +31891,11 @@ msgstr ""
msgid "{0} Map"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31650,7 +31903,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr ""
@@ -31663,11 +31916,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr ""
@@ -31729,7 +31982,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31758,16 +32011,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr ""
@@ -31784,11 +32040,19 @@ msgstr ""
msgid "{0} days ago"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
@@ -31813,7 +32077,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31834,7 +32098,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr ""
@@ -31842,7 +32110,15 @@ msgstr ""
msgid "{0} is a not a valid zip file"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr ""
@@ -31850,6 +32126,15 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31859,22 +32144,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr ""
@@ -31887,10 +32186,14 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31907,12 +32210,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31920,23 +32223,23 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr ""
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ni veljavno stanje Delovnega Toka. Posodobite Delovni Tok in poskusite znova."
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31952,6 +32255,11 @@ msgstr ""
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr ""
@@ -31960,10 +32268,12 @@ msgstr ""
msgid "{0} is not like {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr ""
@@ -31972,36 +32282,50 @@ msgstr ""
msgid "{0} is now default print format for {1} doctype"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr ""
@@ -32029,35 +32353,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -32074,11 +32398,11 @@ msgid "{0} not allowed to be renamed"
msgstr ""
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -32107,7 +32431,7 @@ msgstr ""
msgid "{0} records deleted"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr ""
@@ -32132,7 +32456,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr ""
@@ -32146,7 +32470,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr ""
@@ -32154,7 +32478,7 @@ msgstr ""
msgid "{0} self assigned this task: {1}"
msgstr ""
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr ""
@@ -32222,7 +32546,7 @@ msgstr ""
msgid "{0} weeks ago"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32234,7 +32558,7 @@ msgstr ""
msgid "{0} years ago"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr ""
@@ -32242,11 +32566,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32258,11 +32582,11 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr ""
@@ -32270,87 +32594,59 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr ""
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr ""
@@ -32358,15 +32654,59 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Veljajo lahko tudi druga pravila dovoljenj"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32379,15 +32719,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} je nastavljeno na stanje {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr ""
@@ -32407,11 +32747,11 @@ msgstr ""
msgid "{count} rows selected"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr ""
diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po
index bca95c0db7..f35a86c923 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-25 20:45\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:50\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "\"Матични\" означава матичну табелу у ко
msgid "\"Team Members\" or \"Management\""
msgstr "\"Чланови тима\" или \"Менаџмент\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "Поље \"Измењено из\" мора постојати да би се извршила промена."
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. and contributors"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr "'*' је дозвољен само у {0} SQL функцијама"
@@ -74,7 +74,7 @@ msgstr "'*' је дозвољен само у {0} SQL функцијама"
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "'У глобалној претрази' није дозвољено за поље {0} врсте {1}"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "'У глобалној претрази' није дозвољено за врсту {0} у реду {1}"
@@ -90,19 +90,19 @@ msgstr "'У приказу листе' није дозвољено за врст
msgid "'Recipients' not specified"
msgstr "'Примаоци' нису наведени"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' није важећи IBAN"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' није важећи URL"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' није дозвољен за врсту {1} у реду {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Обавезно)"
@@ -148,7 +148,7 @@ msgstr "0 - превише лако за наслутити: Ризична ло
msgid "0 is highest"
msgstr "0 је највише"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = тачно и 0 = нетачно"
@@ -167,7 +167,7 @@ msgstr "1 дан"
msgid "1 Google Calendar Event synced."
msgstr "1 догађај из Google Calendar-а је синхронизован."
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 извештај"
@@ -198,7 +198,7 @@ msgstr "пре 1 месец"
msgid "1 of 2"
msgstr "1 д 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 запис ће бити извезен"
@@ -779,7 +779,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "Назив DocType-а треба да почне са словом и може садржати искључиво слова, бројеве, размаке, доње црте и цртице"
@@ -793,7 +793,7 @@ msgstr "Једна инстанца Frappe Framework може функциони
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "Линк за преузимање Ваших података биће послат на имејл адресу повезану са Вашим налогом."
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "Поље са називом {0} већ постоји у {1}"
@@ -1113,7 +1113,7 @@ msgstr "Радња / Путања"
msgid "Action Complete"
msgstr "Радња завршена"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Радња неуспешна"
@@ -1162,13 +1162,13 @@ msgstr "Радње {0} није успела на {1} {2}. Прегледајт
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Радње"
@@ -1225,20 +1225,20 @@ msgstr "Активност"
msgid "Activity Log"
msgstr "Дневник активности"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Додај"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Додај / Уклони колоне"
@@ -1246,11 +1246,11 @@ msgstr "Додај / Уклони колоне"
msgid "Add / Update"
msgstr "Додај / Ажурирај"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Додај ново правило"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Додај прилог"
@@ -1270,11 +1270,15 @@ msgstr "Додај ивицу на дну"
msgid "Add Border at Top"
msgstr "Додај ивицу на врху"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr "Додај CSS"
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Додај картицу на контролну таблу"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Додај графикон на контролну таблу"
@@ -1283,8 +1287,8 @@ msgid "Add Child"
msgstr "Додај зависни елемент"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1328,11 +1332,7 @@ msgstr "Додај групу"
msgid "Add Indexes"
msgstr "Додај индексе"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Додај вишеструко"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Додај ново правило дозволе"
@@ -1345,17 +1345,13 @@ msgstr "Додај кориснике"
msgid "Add Query Parameters"
msgstr "Додај параметре упита"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Додај улоге"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr "Додај ред"
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Додај потпис"
@@ -1374,16 +1370,16 @@ msgstr "Додај простор на врху"
msgid "Add Subscribers"
msgstr "Додај претплатнике"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Додај ознаке"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Додај ознаке"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Додај шаблон"
@@ -1433,19 +1429,19 @@ msgstr "Додај коментар"
msgid "Add a new section"
msgstr "Додај нови одељак"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Додај ред изнад тренутног реда"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Додај ред на дну"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Додај ред на врху"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Додај ред испод тренутног реда"
@@ -1463,6 +1459,10 @@ msgstr "Додај колону"
msgid "Add field"
msgstr "Додај поље"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr "Додај више"
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1476,6 +1476,10 @@ msgstr "Додај бројеве или специјалне карактере
msgid "Add page break"
msgstr "Додај прелом странице"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr "Додај ред"
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Додај скрипту за зависну табелу"
@@ -1494,7 +1498,7 @@ msgid "Add tab"
msgstr "Додај картицу"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Додај на контролну таблу"
@@ -1534,8 +1538,8 @@ msgstr "Додат HTML у одељак <head> веб-странице, п
msgid "Added default log doctypes: {}"
msgstr "Подразумевани дневници DocType-ова додати: {}"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Додато {0} ({1})"
@@ -1625,7 +1629,7 @@ msgstr "Додаје прилагођену клијентску скрипту
msgid "Adds a custom field to a DocType"
msgstr "Додаје прилагођено поље у DocType"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Администрација"
@@ -1652,15 +1656,15 @@ msgstr "Администрација"
msgid "Administrator"
msgstr "Администратор"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Администратор пријављен"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Администратор је приступио {0} дана {1} путем IP адресе {2}."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "Администратор не може да прати"
@@ -1677,8 +1681,8 @@ msgstr "Напредно"
msgid "Advanced Control"
msgstr "Напредна контрола"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Напредна претрага"
@@ -1759,7 +1763,7 @@ msgstr "Поље за агрегатну функцију је неопходн
msgid "Alert"
msgstr "Упозорење"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr "Псеудоним мора бити текст"
@@ -1783,6 +1787,15 @@ msgstr "Поравнај удесно"
msgid "Align Value"
msgstr "Поравнај вредности"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr "Поравнање"
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1815,7 +1828,7 @@ msgstr "Све"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Сви дани"
@@ -1827,11 +1840,11 @@ msgstr "Све слике приложене на веб-сајт презент
msgid "All Records"
msgstr "Сви записи"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "Све поднесено"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "Сва прилагођавања ће бити уклоњена. Молимо Вас да потврдите."
@@ -2143,7 +2156,7 @@ msgstr "Дозвољене улоге"
msgid "Allowed embedding domains"
msgstr "Дозвољени уметни домени"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Дозвољавање DocType, DocType. Будите опрезни!"
@@ -2177,13 +2190,61 @@ msgstr "Омогућава клијентима да ово виде као ау
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr "Омогућава да се омогућени URL кључа за пријављивање путем друштвених мрежа прикаже као ауторизациони сервер."
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr "Дозвољава штампање или преузимање PDF документа."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr "Дозвољава кориснику приступ извештајима везаним за документ."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr "Дозвољава кориснику креирање нових докумената."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr "Дозвољава кориснику брисање докумената."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr "Дозвољава кориснику уређивање постојећих записа којима има приступ."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr "Дозвољава кориснику слање имејла из документа."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr "Дозвољава кориснику извоз података из приказа извештаја."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr "Дозвољава кориснику претрагу и преглед записа."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr "Дозвољава кориснику коришћење алата за увоз података за креирање / ажурирање записа."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr "Дозвољава кориснику приказ документа."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr "Дозвољава корисницима омогућавање својства маске за било које поље одговарајуће врсте документа."
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Већ регистрован"
@@ -2278,7 +2339,7 @@ msgstr "Измена"
msgid "Amendment Naming Override"
msgstr "Занемари правила именовања измена"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Измена није дозвољена"
@@ -2291,7 +2352,7 @@ msgstr "Правила именовања измена ажурирана."
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr "Имејл за потврду Вашег захтева је послат на Вашу имејл адресу. Молимо Вас да потврдите захтев како бисте завршили процес."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Дошло је до грешке приликом постављања подразумеваних подешавања сесије"
@@ -2342,7 +2403,7 @@ msgstr "Матрица анонимности"
msgid "Anonymous responses"
msgstr "Анонимни одговори"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "Друга трансакција блокира ову. Покушајте поново за неколико секунди."
@@ -2355,7 +2416,7 @@ msgstr "Већ постоји други {0} са називом {1}, изабе
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr "За штампаче се могу користити сви језици засновани на тексту. Писање сирових команди захтева познавање основног језика штампача који обезбеђује произвођач. За детаље о писању тих команди, молимо Вас да се консултујете са развојним приручником који је обезбедио произвођач штампача. Ове команде се обрађују на серверској страни користећи Jinja шаблонски језик."
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr "Осим систем менаџера, улоге са правима за постављање корисничких дозвола могу постављати дозволе за друге кориснике за ту врсту документа."
@@ -2405,11 +2466,11 @@ msgstr "Назив апликације"
msgid "App Name (Client Name)"
msgstr "Назив апликације (назив клијента)"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "Апликација није пронађена за модул: {0}"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "Апликација {0} није инсталирана"
@@ -2483,7 +2544,7 @@ msgstr "Односи се на (DocType)"
msgid "Apply"
msgstr "Примени"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Примени правило доделе"
@@ -2492,6 +2553,10 @@ msgstr "Примени правило доделе"
msgid "Apply Filters"
msgstr "Примени филтере"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr "Примени филтер за извоз модула"
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2531,7 +2596,7 @@ msgstr "Примени ово правило уколико је корисни
msgid "Apply to all Documents Types"
msgstr "Примени на све врсте докумената"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Примењивање: {0}"
@@ -2539,18 +2604,11 @@ msgstr "Примењивање: {0}"
msgid "Approval Required"
msgstr "Потребно одобрење"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Апликације"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr "Апликације са претрагом"
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2573,16 +2631,16 @@ msgstr "Архивиране колоне"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Да ли сте сигурни да желите да откажете позивницу?"
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr "Да ли сте сигурни да желите да очистите додељене задатке?"
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Да ли сте сигурни да желите да обришете све редове?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr "Да ли сте сигурни да желите да обришете свих {0} редова?"
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Да ли сте сигурни да желите да обришете све прилоге?"
@@ -2601,19 +2659,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr "Да ли сте сигурни да желите да обришете картицу? Сви одељци заједно са пољима у картици ће бити премештени у претходну картицу."
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr "Да ли сте сигурни да желите да обришете овај запис?"
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr "Да ли сте сигурни да желите да одбаците промене?"
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "Да ли сте сигурни да желите да генеришете нови извештај?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Да ли сте сигурни да желите да спојите {0} са {1}?"
@@ -2633,7 +2691,7 @@ msgstr "Да ли сте сигурни да желите да поново по
msgid "Are you sure you want to remove all failed jobs?"
msgstr "Да ли сте сигурни да желите да уклоните све неуспеле задатке?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "Да ли сте сигурни да желите да уклоните {0} филтер?"
@@ -2682,7 +2740,7 @@ msgstr "Према Вашем захтеву, Ваш налог и подаци
msgid "Ask"
msgstr "Питај"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Додели"
@@ -2695,7 +2753,7 @@ msgstr "Додели услов"
msgid "Assign To"
msgstr "Додели"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Додели"
@@ -2745,7 +2803,7 @@ msgstr "Додељено од"
msgid "Assigned By Full Name"
msgstr "Име и презиме доделиоца"
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2834,7 +2892,7 @@ msgstr "Додељени задаци"
msgid "Asynchronous"
msgstr "Асинхроно"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "Барем једна колона је обавезна за приказ у табели."
@@ -2859,7 +2917,7 @@ msgstr "Барем једно поље матичне врсте докумен
msgid "Attach"
msgstr "Приложи"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Приложи штампану верзију документа"
@@ -2957,19 +3015,26 @@ msgstr "Подешавање прилога"
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Прилози"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "Покушава се повезивање са QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "Покушава се покретање QZ Tray..."
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr "Присуствује"
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "Приписивање"
@@ -3294,11 +3359,6 @@ msgstr "Одличан посао"
msgid "Awesome, now try making an entry yourself"
msgstr "Одлично, сада покушајте да унесте податке самостално"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr "Брза претрага"
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3404,17 +3464,12 @@ msgstr "Боја позадине"
msgid "Background Image"
msgstr "Слика позадине"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Позадински задаци"
@@ -3527,8 +3582,8 @@ msgstr "Основни URL"
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "На основу"
@@ -3552,6 +3607,8 @@ msgstr "Основна"
msgid "Basic Info"
msgstr "Основне информације"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3621,7 +3678,7 @@ msgstr "Почни са"
msgid "Beta"
msgstr "Бета"
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "Боље додајте још неколико слова или неку другу реч"
@@ -3749,18 +3806,11 @@ msgstr "Бренд HTML код"
msgid "Brand Image"
msgstr "Слика бренда"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr "Лого бренда"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr "Лого бренда са претрагом"
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
@@ -3832,7 +3882,7 @@ msgstr "Масовно брисање"
msgid "Bulk Edit"
msgstr "Масовно уређивање"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Масовно уређивање {0}"
@@ -3853,7 +3903,7 @@ msgstr "Масован извоз PDF"
msgid "Bulk Update"
msgstr "Масовно ажурирање"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr "Масовно одобравање подржава највише до 500 докумената."
@@ -3865,7 +3915,7 @@ msgstr "Масовна операција је стављена у ред за
msgid "Bulk operations only support up to 500 documents."
msgstr "Масовна операција подржава највише до 500 докумената."
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr "Масовно {0} је стављено у ред за обраду у позадини."
@@ -4014,7 +4064,7 @@ msgstr "Кеш меморија"
msgid "Cache Cleared"
msgstr "Кеш меморија очишћена"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Израчунај"
@@ -4064,12 +4114,12 @@ msgid "Callback Title"
msgstr "Callback наслов"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Камера"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4081,11 +4131,11 @@ msgstr "Кампања"
msgid "Campaign Description (Optional)"
msgstr "Опис кампање (опционо)"
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr "Не може се променити назив јер је колона {0} већ присутна у DocType."
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr "Може се променити на/назад у правило аутоматског повећања само када у DocType-у нема података"
@@ -4095,7 +4145,7 @@ msgstr "Може се променити на/назад у правило ау
msgid "Can only list down the document types which has been linked to the User document type."
msgstr "Могу се приказивати само врсте докумената који су повезани са корисничком врстом документа."
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr "Не може се пратити јер промене нису забележене."
@@ -4117,7 +4167,7 @@ msgstr "Не може се преименовати из {0} у {1} јер {0}
msgid "Cancel"
msgstr "Откажи"
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Откажи"
@@ -4127,11 +4177,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Откажи"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "Откажи све"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "Откажи све документе"
@@ -4143,7 +4193,7 @@ msgstr "Откажи увоз"
msgid "Cancel Prepared Report"
msgstr "Откажи припремљен извештај"
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Откажи {0} документа?"
@@ -4176,7 +4226,7 @@ msgstr "Отказивање"
msgid "Cancelling documents"
msgstr "Отказивање докумената"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "Отказивање {0}"
@@ -4184,7 +4234,7 @@ msgstr "Отказивање {0}"
msgid "Cannot Download Report due to insufficient permissions"
msgstr "Није могуће преузети извештај због недовољних дозвола"
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr "Није могуће преузети вредности"
@@ -4192,7 +4242,7 @@ msgstr "Није могуће преузети вредности"
msgid "Cannot Remove"
msgstr "Није могуће уклонити"
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr "Није могуће ажурирати након подношења"
@@ -4212,11 +4262,11 @@ msgstr "Није могуће отказати пре подношења. Пог
msgid "Cannot cancel {0}."
msgstr "Није могуће отказати {0}."
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Није могуће променити статус документа из 0 (нацрт) у 2 (отказан)"
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Није могуће променити статус документа из 1 (поднет) у 0 (нацрт)"
@@ -4228,7 +4278,7 @@ msgstr "Није могуће променити стање отказаног
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "Није могуће променити стање отказаног документа. Транзициони ред {0}"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "Није могуће променити са/на аутоматско повећање аутоматског назива у пољу прилагоди образац"
@@ -4236,10 +4286,14 @@ msgstr "Није могуће променити са/на аутоматско
msgid "Cannot create a {0} against a child document: {1}"
msgstr "Није могуће креирати {0} против зависног документа: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "Није могуће креирати приватни радни простор за остале кориснике"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr "Није могуће обрисати иконицу на радној површини '{0}' јер је ограничена"
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "Није могуће обрисати почетне и приложене датотеке"
@@ -4248,15 +4302,15 @@ msgstr "Није могуће обрисати почетне и приложе
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "Није могуће обрисати или отказати јер је {0} {1} повезано са {2} {3} {4}"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "Није могуће обрисати стандардну радњу. Можете је сакрити уколико желите"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "Није могуће обрисати стандардно стање документа."
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "Није могуће обрисати стандардно поље {0}. Можете га сакрити."
@@ -4267,11 +4321,11 @@ msgstr "Није могуће обрисати стандардно поље {0}. You can hide it instead."
msgstr "Није могуће обрисати системски генерисано поље {0}. Можете га сакрити."
@@ -4299,7 +4353,7 @@ msgstr "Није могуће уредити стандардне графико
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Није могуће уредити стандардне извештаје. Молимо Вас направите дупликат и креирајте нови извештај"
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "Није могуће уредити отказан документ"
@@ -4312,7 +4366,7 @@ msgstr "Није могуће уредити филтере за стандар
msgid "Cannot edit filters for standard number cards"
msgstr "Није могуће уредити филтере за стандардне бројчане картице"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "Није могуће уредити стандардна поља"
@@ -4328,15 +4382,15 @@ msgstr "Није могуће пронаћи фајл {} на диску"
msgid "Cannot get file contents of a Folder"
msgstr "Није могуће преузети садржај фајла из датотеке"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Није могуће мапирати више штампача на један формат за штампу."
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr "Није могуће увозити табелу са више од 5000 редова."
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "Није могуће повезати отказани документ: {0}"
@@ -4348,7 +4402,7 @@ msgstr "Није могуће мапирање јер следећи услов
msgid "Cannot match column {0} with any field"
msgstr "Није могуће упарити колону {0} ни са једним пољем"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "Није могуће померити ред"
@@ -4373,7 +4427,7 @@ msgid "Cannot submit {0}."
msgstr "Није могуће поднети {0}."
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "Није могуће ажурирати {0}"
@@ -4393,7 +4447,7 @@ msgstr "Није могуће {0} {1}."
msgid "Capitalization doesn't help very much."
msgstr "Капитализација не помаже пуно."
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "Забележи"
@@ -4407,7 +4461,7 @@ msgstr "Картица"
msgid "Card Break"
msgstr "Прелом картице"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "Ознака картице"
@@ -4436,17 +4490,19 @@ msgstr "Опис категорије"
msgid "Category Name"
msgstr "Назив категорије"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr "Центар"
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr "Одређени документи, попут фактура, не би требало да се мењају након што постану финални. Финално стање за такве документ се назива поднето. Можете ограничити које улоге могу поднети документе."
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4535,7 +4591,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Назив дијаграма"
@@ -4600,6 +4656,12 @@ msgstr "Провери колоне за означавање, превуци д
msgid "Check the Error Log for more information: {0}"
msgstr "Провери евиденцију грешака за више информација: {0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr "Означите ово уколико је вредност ажурирања формула или израз (нпр. doc.amount * 2). Оставите неозначено за вредности обичног текста."
+
#: 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 "Означи ово уколико не желиш да корисници креирају налог на твом сајту. Корисници неће имати приступ радној површини, осим уколико им експлицитно не обезбедиш."
@@ -4651,7 +4713,7 @@ msgstr "Зависни DocType"
msgid "Child Item"
msgstr "Зависна ставка"
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr "Зависна табела {0} за поље {1} мора бити виртуелна"
@@ -4661,7 +4723,7 @@ msgstr "Зависна табела {0} за поље {1} мора бити ви
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Зависне табеле се приказују као табеле у другим DocType-овима"
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "Зависна поља упита за '{0}' морају бити врсте листа или tuple."
@@ -4669,7 +4731,7 @@ msgstr "Зависна поља упита за '{0}' морају бити вр
msgid "Choose Existing Card or create New Card"
msgstr "Изабери постојећу картицу или креирај нову картицу"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "Изабери блок или настави да куцаш"
@@ -4689,10 +4751,6 @@ msgstr "Изабери иконицу"
msgid "Choose authentication method to be used by all users"
msgstr "Изабери метод аутентификације који ће користити сви корисници"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr "Chromium није преузет. Молимо Вас да најпре покренете поставку."
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4709,11 +4767,11 @@ msgstr "Град/Насељено место"
msgid "Clear"
msgstr "Очисти"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "Очисти и додај шаблон"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "Очисти и додај шаблон"
@@ -4721,7 +4779,7 @@ msgstr "Очисти и додај шаблон"
msgid "Clear All"
msgstr "Очисти све"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Очисти додељене задатке"
@@ -4747,7 +4805,7 @@ msgstr "Очисти евиденције након (дана)"
msgid "Clear User Permissions"
msgstr "Очисти корисничке дозволе"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "Очисти имејл поруке и додај шаблон"
@@ -4815,7 +4873,7 @@ msgstr "Кликните да поставите динамичке филтер
msgid "Click to Set Filters"
msgstr "Кликните да поставите филтере"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "Кликните да сортирате по {0}"
@@ -4923,7 +4981,7 @@ msgstr "Клијентска скрипта"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Затвори"
@@ -4933,7 +4991,7 @@ msgstr "Затвори"
msgid "Close Condition"
msgstr "Затвори услов"
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr "Затвори својства"
@@ -4989,12 +5047,12 @@ msgstr "Метода изазова у програмирању"
msgid "Collapse"
msgstr "Сажми"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Сажми"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Сажми све"
@@ -5051,7 +5109,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5062,7 +5120,7 @@ msgstr "Боја"
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
-#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5107,11 +5165,11 @@ msgstr "Назив колоне"
msgid "Column Name cannot be empty"
msgstr "Назив колоне не може бити празан"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "Ширина колоне"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "Ширина колоне не може бити нула."
@@ -5154,7 +5212,7 @@ msgstr "Comm10E"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5301,12 +5359,12 @@ msgstr "Завршено"
msgid "Complete By"
msgstr "Завршено од стране"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Заврши регистрацију"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "Заврши поставке"
@@ -5321,7 +5379,7 @@ msgstr "Заврши поставке"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Завршено"
@@ -5412,7 +5470,7 @@ msgstr "Конфигурација"
msgid "Configure Chart"
msgstr "Конфигуришите дијаграм"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "Конфигуришите колоне"
@@ -5503,8 +5561,8 @@ msgstr "Повезане апликације"
msgid "Connected User"
msgstr "Повезани корисник"
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "Повезано са QZ Tray!"
@@ -5622,7 +5680,7 @@ msgstr "Садржи {0} исправки безбедности"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5691,11 +5749,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "Копирано у међуспремник."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr "Копирано {0} {1} у међуспремник"
@@ -5707,12 +5765,12 @@ msgstr "Копирај линк"
msgid "Copy embed code"
msgstr "Копирај embedded code"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "Копирај грешку у међуспремник"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "Копирај у међуспремник"
@@ -5733,7 +5791,7 @@ msgstr "Основни DocType-ови не могу бити прилагође
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "Основни модули {0} се не могу претраживати у глобалној претрази."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "Исправна верзија :"
@@ -5741,7 +5799,7 @@ msgstr "Исправна верзија :"
msgid "Could not connect to outgoing email server"
msgstr "Није било могуће повезати се са сервером за излазне имејлове"
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "Није било могуће пронаћи {0}"
@@ -5749,11 +5807,11 @@ msgstr "Није било могуће пронаћи {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Није било могуће мапирати колону {0} на поље {1}"
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr "Није могуће обрадити поље: {0}"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr "Није могуће покренути Chromium. Проверите евиденцију за детаље."
@@ -5761,7 +5819,7 @@ msgstr "Није могуће покренути Chromium. Проверите е
msgid "Could not start up:"
msgstr "Није било могуће покренути:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "Није било могуће сачувати, проверите унесене податке"
@@ -5813,7 +5871,7 @@ msgstr "Бројач"
msgid "Country"
msgstr "Држава"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "Шифра државе је неопходна"
@@ -5840,15 +5898,16 @@ msgstr "Cr"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Креирај"
@@ -5861,13 +5920,13 @@ msgstr "Креирај и настави"
msgid "Create Address"
msgstr "Креирај адресу"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "Креирај картицу"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "Креирај графикон"
@@ -5901,7 +5960,7 @@ msgstr "Креирај евиденцију"
msgid "Create New"
msgstr "Креирај нови"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Креирај нови"
@@ -5914,7 +5973,7 @@ msgstr "Креирај нови DocType"
msgid "Create New Kanban Board"
msgstr "Креирај нову Канбан таблу"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr "Креирај сачувани филтер"
@@ -5930,18 +5989,18 @@ msgstr "Креирај нови формат"
msgid "Create a Reminder"
msgstr "Креирај подсетник"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "Креирај нови ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "Креирај нови запис"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Креирај нови {0}"
@@ -5958,7 +6017,7 @@ msgstr "Креирај или уреди формат штампе"
msgid "Create or Edit Workflow"
msgstr "Креирај или уреди радни ток"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "Креирај свој први {0}"
@@ -5977,13 +6036,21 @@ msgstr "Креирано"
msgid "Created At"
msgstr "Креирано на"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Креирано од стране"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr "Креирано од стране Вас"
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr "Креирано од стране {0}"
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "Креирано прилагођено поље {0} у {1}"
@@ -6177,7 +6244,7 @@ msgstr "Прилагођене врсте докумената (избор до
msgid "Custom Document Types Limit Exceeded"
msgstr "Прекорачен лимит за прилагођене врсте докумената"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "Прилагођени документи"
@@ -6188,15 +6255,15 @@ msgstr "Прилагођени документи"
msgid "Custom Field"
msgstr "Прилагођено поље"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "Прилагођено поље {0} је креирао администратор и може се обрисати само путем администраторског налога."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Прилагођена поља могу се искључиво додати у стандардни DocType."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Прилагођена поља не могу бити додата основним DocType-овима."
@@ -6222,7 +6289,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr "Прилагођена претрага групе, уколико је попуњена, мора садржати кориснички резервисани текст {0}, нпр. уид={0},оу=усерс,дц=еxампле,дц=цом"
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "Прилагођени HTML"
@@ -6268,7 +6335,7 @@ msgstr "Прилагођене измене"
msgid "Custom Report"
msgstr "Прилагођени извештај"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "Прилагођени извештаји"
@@ -6293,11 +6360,11 @@ msgstr "Прилагођени мени бочне траке"
msgid "Custom Translation"
msgstr "Прилагођени превод"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "Прилагођено поље је успешно преименовано у {0}."
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr "Прилагођена get_list метода за {0} мора вратити QueryBuilder објекат или None, добијено {1}"
@@ -6320,26 +6387,26 @@ msgstr "Прилагођени?"
msgid "Customization"
msgstr "Прилагођавање"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "Прилагођавање одбачено"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "Ресетуј прилагођавање"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "Прилагођавање за {0} су извезена:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Прилагоди"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Прилагоди"
@@ -6436,7 +6503,7 @@ msgstr "Дневно"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "Дневни преглед догађаја се шаље за догађаје на календару где су постављени подсетници."
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "Дневни догађаји треба да се заврше истог дана."
@@ -6493,8 +6560,8 @@ msgstr "Тамна тема"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "Контролна табла"
@@ -6744,7 +6811,7 @@ msgstr "Дана пре"
msgid "Days Before or After"
msgstr "Дана пре или након"
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "Дошло је до застоја"
@@ -6941,11 +7008,11 @@ msgstr "Подразумевани радни простор"
msgid "Default display currency"
msgstr "Подразумевана валута за приказ"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "Подразумевана вредност 'Означи' врсте поља {0} мора бити или '0' или '1'"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "Подразумевана вредност за {0} мора бити у листи опција."
@@ -7002,11 +7069,12 @@ msgstr "Кашњење"
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -7014,7 +7082,7 @@ msgstr "Кашњење"
msgid "Delete"
msgstr "Обриши"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Обриши"
@@ -7028,10 +7096,6 @@ msgstr "Обриши"
msgid "Delete Account"
msgstr "Обриши налог"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "Обриши све"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7061,7 +7125,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Обриши картицу"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr "Обриши све"
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr "Обриши свих {0} редова"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "Обриши и генериши нови"
@@ -7089,6 +7161,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "Обриши целу картицу заједно са пољима"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr "Обриши ред"
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7103,16 +7179,20 @@ msgstr "Обриши картицу"
msgid "Delete this record to allow sending to this email address"
msgstr "Обриши овај запис да би омогућио слање на ову имејл адресу"
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Трајно обриши {0} ставку?"
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Трајно обриши {0} ставке?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr "Обриши {0} редова"
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7143,7 +7223,7 @@ msgstr "Обрисани назив"
msgid "Deleted all documents successfully"
msgstr "Сви документи су успешно обрисани"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Обрисано!"
@@ -7250,6 +7330,7 @@ msgstr "Изведени од (са извором)"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7332,16 +7413,21 @@ msgstr "Тема радне површине"
msgid "Desk User"
msgstr "Корисник радне површине"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr "Радна површина"
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "Иконица радне површине"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr "Распоред радне површине"
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7371,11 +7457,11 @@ msgstr "Детаљи"
msgid "Detect CSV type"
msgstr "Детектуј врсту CSV фајла"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "Није додато"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "Није уклоњено"
@@ -7523,10 +7609,11 @@ msgstr "Онемогућено"
msgid "Disabled Auto Reply"
msgstr "Онемогући аутоматски одговор"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Одбаци"
@@ -7540,11 +7627,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Одбаци"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "Одбаци {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "Одбаци?"
@@ -7618,11 +7705,11 @@ msgstr "Немој креирати новог корисника"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Немој креирати новог корисника уколико корисник са тим имејлом не постоји у систему"
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "Немој уређивати заглавља која су унапред постављена у шаблону"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr "Не упозоравај ме више на {0}"
@@ -7630,7 +7717,7 @@ msgstr "Не упозоравај ме више на {0}"
msgid "Do you still want to proceed?"
msgstr "Да ли још увек желите да наставите?"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "Да ли желите да откажете све повезане документе?"
@@ -7688,7 +7775,6 @@ msgstr "Статус документа следећих стања је про
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7711,7 +7797,6 @@ msgstr "Статус документа следећих стања је про
#: 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/desktop_icon/desktop_icon.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
@@ -7724,7 +7809,7 @@ msgstr "Статус документа следећих стања је про
msgid "DocType"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr "DocType {0} додељен за поље {1} мора имати барем једно линк поље"
@@ -7792,10 +7877,6 @@ msgstr "DocType је табела / образац у апликацији."
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "DocType мора бити подложан подношењу за одабрани догађај документа"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "DocType мора бити текст"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "DocType мора имати барем једно поље"
@@ -7813,15 +7894,15 @@ msgstr "DocType на који је радни ток примењив."
msgid "DocType required"
msgstr "DocType је неопходан"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "DocType {0} не постоји."
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "DocType {} није пронађен"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "Назив DocType-а не сме почињати или завршавати се размаком"
@@ -7835,7 +7916,7 @@ msgstr "DocType не може бити модификован, молимо Ва
msgid "Doctype"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "Doctype назив је ограничен на {0} карактера ({1})"
@@ -7874,7 +7955,7 @@ msgstr "Радње документа"
msgid "Document Follow"
msgstr "Праћење документа"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "Обавештење о праћењу документа"
@@ -7897,19 +7978,19 @@ msgstr "Повезивање документа"
msgid "Document Links"
msgstr "Линкови документа"
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "Ред повезаних докумената #{0}: Није пронађено поље {1} у {2} DocType"
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "Ред повезаних докумената #{0}: Неважећи доцтyпе или назив поља."
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "Ред повезаних докумената #{0}: Матични DocType је обавезан за интерне линкове"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr "Ред повезаних докумената #{0}: Назив поља табеле је обавезно за интерне линкове"
@@ -7928,9 +8009,9 @@ msgstr "Ред повезаних докумената #{0}: Назив поља
msgid "Document Name"
msgstr "Назив документа"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "Назив документа мора бити текст"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr "Назив документа не сме бити празан"
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7947,7 +8028,7 @@ msgstr "Услов правила именовања документа"
msgid "Document Naming Settings"
msgstr "Подешавање именовања докумената"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "Документ у реду за обраду"
@@ -8051,7 +8132,7 @@ msgstr "Наслов документа"
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8071,11 +8152,11 @@ msgstr "Врста документа"
msgid "Document Type and Function are required to create a number card"
msgstr "Врста и функција документа су неопходне да би се креирала бројчана картица"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "Врсту документа није могуће увозити"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "Врсту документа није могуће поднети"
@@ -8104,27 +8185,27 @@ msgid "Document Types and Permissions"
msgstr "Врсте и дозволе документа"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "Документ је откључан"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr "Документ се не може користити као вредност филтера"
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "Праћење документа није омогућено за овог корисника."
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "Документ је отказан"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "Документ је поднет"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "Документ у стању нацрта"
@@ -8136,11 +8217,11 @@ msgstr "Документ је могуће уређивати само од ст
msgid "Document not Relinked"
msgstr "Документ није поново повезиван"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "Документ је преименован из {0} у {1}"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "Преименовање документа из {0} у {1} је стављено у ред за обраду"
@@ -8156,10 +8237,6 @@ msgstr "Документ {0} је већ обновљен"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "Документ {0} је постављен у стање {1} од стране {2}"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "Документ {0} {1} не постоји"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8297,7 +8374,7 @@ msgstr "Преузми линк"
msgid "Download PDF"
msgstr "Преузми PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "Преузми извештај"
@@ -8381,7 +8458,7 @@ msgid "Due Date Based On"
msgstr "Датум доспећа заснован на"
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "Дупликат"
@@ -8389,19 +8466,15 @@ msgstr "Дупликат"
msgid "Duplicate Entry"
msgstr "Дупликат уноса"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "Дупликат назив филтера"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Дупликат назива"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "Дупликат реда"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "Дупликат тренутног реда"
@@ -8409,6 +8482,18 @@ msgstr "Дупликат тренутног реда"
msgid "Duplicate field"
msgstr "Дупликат поља"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr "Дупликат реда"
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr "Дупликат редова"
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr "Дупликат {0} редова"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8496,9 +8581,10 @@ msgstr "ИЗЛАЗ"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8509,7 +8595,7 @@ msgstr "ИЗЛАЗ"
msgid "Edit"
msgstr "Уреди"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Уреди"
@@ -8519,7 +8605,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Уреди"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Уреди"
@@ -8540,15 +8626,15 @@ msgstr "Уреди графикон"
msgid "Edit Custom Block"
msgstr "Уреди прилагођени блок"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "Уреди прилагођени HTML"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "Уреди DocType"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Уреди DocType"
@@ -8562,7 +8648,7 @@ msgstr "Уреди постојећи"
msgid "Edit Filters"
msgstr "Уреди филтере"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "Уреди филтере"
@@ -8575,7 +8661,7 @@ msgstr "Уреди подножје"
msgid "Edit Format"
msgstr "Уреди формат"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr "Уреди пуни образац"
@@ -8633,7 +8719,7 @@ msgstr "Уреди брзу листу"
msgid "Edit Shortcut"
msgstr "Уреди пречицу"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr "Уреди бочну траку"
@@ -8656,11 +8742,11 @@ msgstr "Режим уређивања"
msgid "Edit the {0} Doctype"
msgstr "Уреди {0} Doctype"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "Уреди да би додао садржај"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "Уредите Ваш одговор"
@@ -8716,6 +8802,7 @@ msgstr "Избор елемента"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8731,12 +8818,14 @@ msgstr "Избор елемента"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8771,7 +8860,7 @@ msgstr "Имејл налог онемогућен."
msgid "Email Account Name"
msgstr "Назив имејл налога"
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "Имејл налог је додат више пута"
@@ -8969,7 +9058,7 @@ msgstr "Имејл је премештен у отпад"
msgid "Email is mandatory to create User Email"
msgstr "Имејл је обавезан за креирање корисничког имејла"
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Имејл није послат {0} (отказана претплата / онемогућено)"
@@ -9008,7 +9097,7 @@ msgstr "Имејлови ће бити послати са следећим мо
msgid "Embed code copied"
msgstr "Код за уградњу је копиран"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr "Празан псеудоним није дозвољен"
@@ -9016,7 +9105,7 @@ msgstr "Празан псеудоним није дозвољен"
msgid "Empty column"
msgstr "Празна колона"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr "Аргументи као празан текст нису дозвољени"
@@ -9336,11 +9425,11 @@ msgstr "Проверите да су путеви за групну и кори
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Унесите клијентски ИД и тајну клијента у Google подешавања."
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "Унесите шифру приказану у апликацији за једнократну лозинку."
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr "Унесите имејл примаоца у поље ка, CC или BCC"
@@ -9367,6 +9456,10 @@ msgstr "Унесите поља са подразумеваним вреднос
msgid "Enter folder name"
msgstr "Унесите назив датотеке"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr "Унесите листу опција, свака у новом реду."
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9397,7 +9490,7 @@ msgstr "Назив ентитета"
msgid "Entity Type"
msgstr "Врста ентитета"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Једнако"
@@ -9431,7 +9524,7 @@ msgstr "Једнако"
msgid "Error"
msgstr "Грешка"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Грешка"
@@ -9446,12 +9539,12 @@ msgstr "Евиденција грешака"
msgid "Error Logs"
msgstr "Евиденције грешака"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr "Порука о грешци"
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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.
Кликните овде да бисте научили више о необрађеној штампи.."
@@ -9489,15 +9582,15 @@ msgstr "Грешка у обавештењу"
msgid "Error in print format on line {0}: {1}"
msgstr "Грешка у формату штампе на линији {0}: {1}"
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr "Грешка у {0}.get_list: {1}"
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr "Грешка при обради угњеждених филтера: {0}. {1}"
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr "Грешка при валидацији поља \"Игнориши корисничке дозволе\""
@@ -9513,15 +9606,15 @@ msgstr "Грешка при обради обавештења {0}. Молимо
msgid "Error {0}: {1}"
msgstr "Грешка {0}: {1}"
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "Грешка: Подаци недостају у табели {0}"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "Грешка: Вредност недостаје за {0}: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Грешка: {0} Ред #{1}: Вредност недостаје за: {2}"
@@ -9531,6 +9624,12 @@ msgstr "Грешка: {0} Ред #{1}: Вредност недостаје за:
msgid "Errors"
msgstr "Грешке"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr "Евалуирај као израз"
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9549,6 +9648,11 @@ msgstr "Категорија догађаја"
msgid "Event Frequency"
msgstr "Учесталост догађаја"
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr "Обавештење о догађајима"
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9574,11 +9678,11 @@ msgstr "Догађај је синхронизован са Google Calendar-ом
msgid "Event Type"
msgstr "Врста догађаја"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "Догађаји"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "Догађаји у данашњем календару"
@@ -9600,6 +9704,7 @@ msgid "Exact Copies"
msgstr "Идентичне копије"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr "Пример"
@@ -9670,7 +9775,7 @@ msgstr "Извршавање кода"
msgid "Executing..."
msgstr "Извршавање..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "Време извршавања: {0} секунди"
@@ -9691,21 +9796,21 @@ msgstr "Постојећа улога"
msgid "Expand"
msgstr "Прошири"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Прошири"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Прошири све"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "Очекиван је оператор 'and' или 'or', пронађено: {0}"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "Експериментално"
@@ -9757,20 +9862,21 @@ msgstr "Време истека страница са QR кодом"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Извоз"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Извоз"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "Извези 1 запис"
@@ -9809,11 +9915,11 @@ msgstr "Извоз извештаја: {0}"
msgid "Export Type"
msgstr "Врста извоза"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "Извоз свих редова који се подударају?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "Извоз свих {0} редова?"
@@ -9829,6 +9935,10 @@ msgstr "Извоз у позадини"
msgid "Export not allowed. You need {0} role to export."
msgstr "Извоз није дозвољен. Неопходна је улога {0} за извоз."
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr "Извези само прилагођавања додељена изабраном модулу.
Напомена: Пре примене овог филтера, морате подесити поље Модул (за извоз) на записима прилагођених поља и поставки својства.Упозорење:Прилагођавања из других модула биће изузета.
"
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9841,7 +9951,7 @@ msgstr "Извоз података без напомена у заглављу
msgid "Export without main header"
msgstr "Извоз без главног заглавља"
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "Извоз {0} записа"
@@ -9881,7 +9991,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "Екстерни линк"
@@ -9930,12 +10040,17 @@ msgstr "Број неуспелих задатака"
msgid "Failed Jobs"
msgstr "Неуспешни задаци"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr "Неуспешни покушаји пријављивања"
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr "Неуспешне пријаве (последњих 30 дана)"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "Неуспешне трансакције"
@@ -9998,7 +10113,7 @@ msgstr "Неуспешно генерисање прегледа серија"
msgid "Failed to get method for command {0} with {1}"
msgstr "Неуспешно добити методу за команду {0} са {1}"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "Неуспешно добити методу {0} са {1}"
@@ -10010,7 +10125,7 @@ msgstr "Неуспешно добијање информација о сајту
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "Неуспешан покушај увоза виртуелног doctype {}, да ли је фајл контролера присутан?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "Неуспешно оптимизовање слике: {0}"
@@ -10026,7 +10141,7 @@ msgstr "Није могуће приказати наслов: {0}"
msgid "Failed to request login to Frappe Cloud"
msgstr "Неуспешан покушај пријаве на Frappe Cloud"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "Неуспешан покушај слања имејла са насловом:"
@@ -10068,7 +10183,7 @@ msgstr "FavIcon"
msgid "Fax"
msgstr "Факс"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "Повратна информација"
@@ -10128,8 +10243,8 @@ msgstr "Преузимање поља из {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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10139,7 +10254,7 @@ msgstr "Поље"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "Поље \"путања\" је обавезно за веб-приказе"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "Поље \"наслов\" је обавезно уколико је постављено \"Поље за претрагу на веб-сајту\"."
@@ -10147,7 +10262,7 @@ msgstr "Поље \"наслов\" је обавезно уколико је по
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "Поље \"вредност\" је обавезно. Молимо Вас да наведете вредност која треба да се ажурира"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr "Поље {0} није пронађено у {1}"
@@ -10156,7 +10271,7 @@ msgstr "Поље {0} није пронађено у {1}"
msgid "Field Description"
msgstr "Опис поља"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Поље недостаје"
@@ -10204,7 +10319,7 @@ msgstr "Поље за праћење"
msgid "Field type cannot be changed for {0}"
msgstr "Врста поља не може бити промењена за {0}"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "Поље {0} не постоји у {1}"
@@ -10212,11 +10327,11 @@ msgstr "Поље {0} не постоји у {1}"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Поље {0} се односи на непостојећи доцтyпе {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "Поље {0} мора бити виртуелно да би подржавало виртуелни DocType."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Поље {0} није пронађено."
@@ -10238,7 +10353,7 @@ msgstr "Поље {0} у документу {1} није ни поље за мо
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Назив поља"
@@ -10247,7 +10362,7 @@ msgstr "Назив поља"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "Назив поља '{0}' је у конфликту са {1} називом {2} у {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Назив поља {0} мора постојати да би се омогућило аутоматско именовање"
@@ -10255,7 +10370,7 @@ msgstr "Назив поља {0} мора постојати да би се ом
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Назив поља је ограничен на 64 карактера ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Назив поља није постављен за прилагођено поље"
@@ -10271,7 +10386,7 @@ msgstr "Назив поља {0} се појављује више пута"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Назив поља {0} не може садржати специјалне карактере попут {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Назив поље {0} је у конфликту са мета објектом"
@@ -10319,7 +10434,7 @@ msgstr "Поља `file_name` или `file_url` морају бити поста
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Поља морају бити листа или тупле када је опција аслист омогућена"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "Поља морају бити текст, листа, tuple, pypika поље или pypika функција"
@@ -10343,7 +10458,7 @@ msgstr "Поља одвојена зарезом (,) биће укључена
msgid "Fieldtype"
msgstr "Врста поља"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Врста поља не може бити промењена са {0} на {1}"
@@ -10419,12 +10534,12 @@ msgstr "Назив фајла не може садржати {0}"
msgid "File not attached"
msgstr "Фајл није приложен"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Величина фајла је премашила максималну дозвољену величину од {0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Фајл је превелики"
@@ -10451,12 +10566,17 @@ msgstr "Фајлови"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Филтер"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr "Подручје филтера"
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10475,7 +10595,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Филтер назива"
@@ -10484,11 +10604,11 @@ msgstr "Филтер назива"
msgid "Filter Values"
msgstr "Филтер вредности"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "Недостаје услов филтера након оператора: {0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr "Поља филтера имају неважећу backtick нотацију: {0}"
@@ -10507,10 +10627,14 @@ msgid "Filtered Records"
msgstr "Филтрирани записи"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Филтрирани по \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr "Филтрирано по: {0}."
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10534,7 +10658,7 @@ msgstr "Филтрирани по \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Филтери"
@@ -10565,10 +10689,6 @@ msgstr "JSON филтера"
msgid "Filters Section"
msgstr "Одељак филтера"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Филтери примењени за {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Филтери сачувани"
@@ -10586,14 +10706,14 @@ msgstr "Филтери {0}"
msgid "Filters:"
msgstr "Филтери:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Пронађи '{0}' у ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Пронађи {0} у {1}"
@@ -10681,11 +10801,11 @@ msgstr "Прецизност децимале"
msgid "Fold"
msgstr "Склопи"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Склапање не може бити на крају обрасца"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Склапање мора бити пре прелома одељка"
@@ -10714,12 +10834,12 @@ msgstr "Датотека {0} није празна"
msgid "Folio"
msgstr "Фолио"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Прати"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Праћен од стране"
@@ -10727,7 +10847,7 @@ msgstr "Праћен од стране"
msgid "Following Report Filters have missing values:"
msgstr "Следећи филтери извештаја имају недостајуће вредности:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Следећи документ {0}"
@@ -10735,7 +10855,7 @@ msgstr "Следећи документ {0}"
msgid "Following fields are missing:"
msgstr "Следећа поља недостају:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Следећа поља имају неважеће вредности:"
@@ -10743,7 +10863,7 @@ msgstr "Следећа поља имају неважеће вредности:"
msgid "Following fields have missing values"
msgstr "Следећа поља имају недостајуће вредности"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Следећа поља имају недостајуће вредности:"
@@ -10812,7 +10932,7 @@ msgstr "Детаљи подножја"
msgid "Footer HTML"
msgstr "HTML подножје"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "HTML подножје постављено из прилога {0}"
@@ -10849,7 +10969,7 @@ msgstr "Шаблон подножја"
msgid "Footer Template Values"
msgstr "Вредности шаблона подножја"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "Подножје можда неће бити видљиво јер је опција {0} онемогућена"
@@ -10882,16 +11002,6 @@ msgstr "За врсту документа"
msgid "For Example: {} Open"
msgstr "На пример: {} отворен"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "За линкове, унесите DocType као опсег.\n"
-"За избор, унесите листу опција, сваку у новом реду."
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10915,20 +11025,16 @@ msgstr "За вредност"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "За динамички наслов користите Jinja ознаке попут ове: {{ doc.name }} Delivered"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "За поређење, користите >5, <10 или =324. За опсеге, користите 5:10 (за вредности између 5 и 10)."
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr "На пример, уколико откажете и измените INV004, он ће постати нови документ INV004-1. Ово Вам помаже да пратите сваку измену."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "На пример:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "На пример: Уколико желите да укључите ИД документа, користите {0}"
@@ -10956,7 +11062,7 @@ msgstr "За више адреса, унесите адресе у различ
msgid "For updating, you can update only selective columns."
msgstr "За ажурирање, можете ажурирати само одређене колоне."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "За {0} на нивоу {1} у {2} у реду {3}"
@@ -11006,7 +11112,8 @@ msgstr "Заборавили сте лозинку?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Образац"
@@ -11185,7 +11292,7 @@ msgstr "Петак"
msgid "From"
msgstr "Од"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "Од"
@@ -11206,7 +11313,7 @@ msgstr "Датум почетка"
msgid "From Date Field"
msgstr "Поље за датум почетка"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Од врсте документа"
@@ -11247,7 +11354,7 @@ msgstr "Цела страница"
msgid "Full Name"
msgstr "Име и презиме"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Цела страница"
@@ -11260,7 +11367,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Функција"
@@ -11269,11 +11376,11 @@ msgstr "Функција"
msgid "Function Based On"
msgstr "Функција заснована на"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "Функција {0} није на листи дозвољених."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "Функција {0} захтева аргументе, али ни један није наведен"
@@ -11338,11 +11445,11 @@ msgstr "Опште"
msgid "Generate Keys"
msgstr "Генериши кључеве"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Генериши нови извештај"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Генериши насумичну лозинку"
@@ -11352,8 +11459,8 @@ msgstr "Генериши насумичну лозинку"
msgid "Generate Separate Documents For Each Assignee"
msgstr "Генериши одвојене документе за сваког додељеног корисника"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Генериши URL за праћење"
@@ -11464,7 +11571,7 @@ msgstr "Глобалне пречице"
msgid "Global Unsubscribe"
msgstr "Глобално отказивање претплате"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Крени"
@@ -11524,7 +11631,7 @@ msgstr "Иди на листу {0}"
msgid "Go to {0} Page"
msgstr "Иди на страницу {0}"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Циљ"
@@ -11750,7 +11857,7 @@ msgstr "Врста Груписано по"
msgid "Group By field is required to create a dashboard chart"
msgstr "Поље Груписано по је неопходно за креирање графикона на контролној табли"
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "Груписано по мора бити текст"
@@ -11830,6 +11937,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "Уређивач HTML"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr "HTML порука"
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11918,7 +12029,7 @@ msgstr "Заглавље"
msgid "Header HTML"
msgstr "HTML заглавље"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "HTML заглавље постављено из прилога {0}"
@@ -11954,7 +12065,7 @@ msgstr "Скрипте за заглавље/подножје могу се ко
msgid "Headers"
msgstr "Заглавља"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "Заглавља морају бити у формату речника"
@@ -11991,7 +12102,7 @@ msgstr "Здраво,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12046,7 +12157,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Ево Вашег URL за праћење"
@@ -12082,9 +12193,9 @@ msgstr "Сакривено"
msgid "Hidden Fields"
msgstr "Сакривена поља"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "Сакривене колоне укључују: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+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
@@ -12249,7 +12360,7 @@ msgstr "Савет: Укључите симболе, бројеве и вели
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12332,18 +12443,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr "Изгледа да још увек немаш приступ ниједном радном простору, увек можеш да направиш један за себе. Кликни на дугме Креирај радни простор да га направиш.
"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12394,7 +12505,6 @@ msgid "IP Address"
msgstr "IP адреса"
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12415,11 +12525,16 @@ msgstr "IP адреса"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Иконица"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr "Слика иконице"
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12430,6 +12545,10 @@ msgstr "Стил иконице"
msgid "Icon Type"
msgstr "Врста иконице"
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12461,13 +12580,13 @@ msgstr "Уколико је опција примени строге корис
msgid "If Checked workflow status will not override status in list view"
msgstr "Уколико је означено статус радног тока неће заменити статус у приказу листе"
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Уколико је власник"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "Уколико улога нема приступ на нивоу 0, виши нивои немају значај."
@@ -12594,12 +12713,20 @@ msgstr "Уколико није подешено, прецизност валу
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr "Уколико је подешено, само корисници са овим улогама могу приступити овом графикону. Уколико није подешено, користиће се дозволе из DocType-а или извештаја."
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr "Уколико корисник омогући својство маске за поље број телефона, вредност ће бити приказа у маскираном формату (нпр. 811XXXXXXX)."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr "Уколико корисник има приступ запосленом лицу и омогућени су извештаји, може прегледати извештаје засноване на запосленим лицима."
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr "Уколико корисник има означену било коју улогу, постаје \"Системски корисник\". \"Системски корисник\" има приступ радној површини"
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "Уколико Вам ове инструкције нису биле од помоћи, молимо Вас да додате своје предлоге на GitHub Issues."
@@ -12699,7 +12826,7 @@ msgstr "Игнориши прилоге веће од ове величине"
msgid "Ignored Apps"
msgstr "Игнорисане апликације"
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "Неважећи статус документа за {0}"
@@ -12765,11 +12892,11 @@ msgstr "Преглед слике"
msgid "Image Width"
msgstr "Ширина слике"
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "Поље слике мора бити важећи назив поља"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "Поље слике мора бити врсте Приложи слику"
@@ -12803,7 +12930,7 @@ msgstr "Замени идентитет као {0}"
msgid "Impersonated by {0}"
msgstr "Идентитет је замењен од стране {0}"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "Замена идентитета за {0}"
@@ -12821,11 +12948,12 @@ msgstr "Имплицитно"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "Увоз"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Увоз"
@@ -13048,15 +13176,15 @@ msgid "Include Web View Link in Email"
msgstr "Укључи линк ка веб-приказу у имејлу"
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "Укључи филтере"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr "Укључи сакривене колоне"
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "Укључи индентацију"
@@ -13123,11 +13251,11 @@ msgstr "Погрешно корисничко име или лозинка"
msgid "Incorrect Verification code"
msgstr "Погрешан верификациони код"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "Погрешна вредност у реду {0}:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "Погрешна вредност:"
@@ -13179,7 +13307,7 @@ msgstr "Индикатор"
msgid "Indicator Color"
msgstr "Боја индикатора"
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "Боја индикатора"
@@ -13226,15 +13354,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "Унеси након"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "Унеси након не може бити постављено као {0}"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "Поље за унос након поља '{0}' поменутог у прилагођеном пољу '{1}', са ознаком '{2}', не постоји"
@@ -13264,8 +13392,8 @@ msgstr "Унеси стил"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "Инсталирај {0} из продавнице"
@@ -13291,15 +13419,15 @@ msgstr "Инсталиране апликације"
msgid "Instructions"
msgstr "Упутства"
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "Упутства послата имејлом"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "Недовољан ниво овлашћења за {0}"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "Недовољна овлашћења за {0}"
@@ -13367,7 +13495,7 @@ msgstr "Интересовања"
msgid "Intermediate"
msgstr "Средње"
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "Интерна грешка сервера"
@@ -13376,6 +13504,11 @@ msgstr "Интерна грешка сервера"
msgid "Internal record of document shares"
msgstr "Интерна евиденција дељења докумената"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13415,13 +13548,13 @@ msgid "Invalid"
msgstr "Неважеће"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "Неважећи \"depends_on\" израз"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Неважећи \"depends_on\" израз постављен у филтеру {0}"
@@ -13461,7 +13594,7 @@ msgstr "Неважећи датум"
msgid "Invalid DocType"
msgstr "Неважећи DocType"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "Неважећи DocType: {0}"
@@ -13469,7 +13602,8 @@ msgstr "Неважећи DocType: {0}"
msgid "Invalid Doctype"
msgstr "Неважећи DocType"
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "Неважећи назив поља"
@@ -13477,8 +13611,8 @@ msgstr "Неважећи назив поља"
msgid "Invalid File URL"
msgstr "Неважећи URL фајла"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr "Неважећи филтер"
@@ -13502,7 +13636,7 @@ msgstr "Неважећи линк"
msgid "Invalid Login Token"
msgstr "Неважећи токен за пријављивање"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "Неважеће пријављивање. Покушајте поново."
@@ -13510,7 +13644,7 @@ msgstr "Неважеће пријављивање. Покушајте понов
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Неважећи имејл сервер. Исправите и покушајте поново."
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "Неважећа серија именовања: {}"
@@ -13521,8 +13655,8 @@ msgstr "Неважећа серија именовања: {}"
msgid "Invalid Operation"
msgstr "Неважећа операција"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "Неважећа опција"
@@ -13534,7 +13668,7 @@ msgstr "Неважећи излазни имејл сервер или порт:
msgid "Invalid Output Format"
msgstr "Неважећи излазни формат"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "Неважећа измена"
@@ -13547,11 +13681,11 @@ msgstr "Неважећи параметри."
msgid "Invalid Password"
msgstr "Неважећа лозинка"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "Неважећи број телефона"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Неважећи захтев"
@@ -13560,7 +13694,7 @@ msgstr "Неважећи захтев"
msgid "Invalid Search Field {0}"
msgstr "Неважеће поље претраге {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "Неважећи назив поља табеле"
@@ -13579,7 +13713,7 @@ msgstr "Неважећи URL"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Неважеће корисничко име или лозинка за подршку. Исправите и покушајте поново."
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "Неважеће вредности"
@@ -13591,7 +13725,7 @@ msgstr "Неважећа тајна за Webhook"
msgid "Invalid aggregate function"
msgstr "Неважећа агрегатна функција"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Неважећи формат псеудонима: {0}. Псеудоним мора бити једноставан идентификатор."
@@ -13599,19 +13733,19 @@ msgstr "Неважећи формат псеудонима: {0}. Псеудон
msgid "Invalid app"
msgstr "Неважећа апликација"
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "Неважећи формат аргумента: {0}. Дозвољени су само наводницима обухваћени текстови или једноставни називи поља."
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr "Неважећа врста аргумента: {0}. Дозвољени су само текстови, бројеви, речници и None."
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "Неважећи карактери у називу поља: {0}. Дозвољена су слова, бројеви и доње црте."
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr "Неважећи карактери у називу табеле: {0}"
@@ -13619,18 +13753,22 @@ msgstr "Неважећи карактери у називу табеле: {0}"
msgid "Invalid column"
msgstr "Неважећа колона"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr "Неважећа врста услова у угњежденим филтерима: {0}"
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "Неважећи смер у Сортирај по: {0}. Мора бити 'РАСТУЋЕ' или 'ОПАДАЈУЋЕ'."
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "Неважећи статус документа"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr "Неважећи израз у вредности ажурирања радног тока: {0}"
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "Неважећи израз постављен у филтеру {0}"
@@ -13639,11 +13777,11 @@ msgstr "Неважећи израз постављен у филтеру {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Неважећи израз постављен у филтеру {0} ({1})"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
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:1184
+#: frappe/database/query.py:1227
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'."
@@ -13651,11 +13789,11 @@ msgstr "Неважећи формат поља у {0}: {1}. Користите '
msgid "Invalid field name {0}"
msgstr "Неважећи назив поља {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr "Неважећа врста поља: {0}"
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Неважећи назив поља '{0}' у аутоматском именовању"
@@ -13663,11 +13801,11 @@ msgstr "Неважећи назив поља '{0}' у аутоматском и
msgid "Invalid file path: {0}"
msgstr "Неважећа путања фајла: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Неважећи услов филтера: {0}. Очекивана је листа или tuple."
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "Неважећи формат поља за филтер: {0}. Користите 'fieldname' или 'link_fieldname.target_fieldname'."
@@ -13675,7 +13813,7 @@ msgstr "Неважећи формат поља за филтер: {0}. Кори
msgid "Invalid filter: {0}"
msgstr "Неважећи филтер: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "Неважећа врста аргумента функције: {0}. Дозвољени су искључиво текстови, бројеви, листе и None."
@@ -13692,19 +13830,19 @@ msgstr "Неважећи JSON додат у прилагођене опције:
msgid "Invalid key"
msgstr "Неважећи кључ"
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "Неважећа врста назива (цео број) за колону са називом типа варцхар"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "Неважећа серија именовања {}: недостаје тачка (.)"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr "Неважећа серија именовања {}: недостаје тачка (.) пре резервисаних нумеричких карактера. Молимо Вас да користите формат попут ABCD.#####."
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr "Неважећи угњеждени израз: Речник мора представљати функцију или оператор"
@@ -13728,11 +13866,11 @@ msgstr "Неважеће тело захтева"
msgid "Invalid role"
msgstr "Неважећа улога"
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr "Неважећи једноставни формат филтера: {0}"
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "Неважећи почетак услова за филтер: {0}. Очекивана је листа или tuple."
@@ -13749,24 +13887,24 @@ msgstr "Неважеће стање токена! Проверите да ли
msgid "Invalid username or password"
msgstr "Неважеће корисничко име или лозинка"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "Неважећа вредност за UUID: {}"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "Неважеће вредности за поља:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "Неважећа верзија wкхтмлтопдф"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "Неважећи услов за {0}"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr "Неважећи формат речника {0}"
@@ -13894,7 +14032,7 @@ msgstr "Динамички URL?"
msgid "Is Folder"
msgstr "Датотека"
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Глобално"
@@ -13965,7 +14103,7 @@ msgstr "Јавно"
msgid "Is Published Field"
msgstr "Објављено поље"
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "Објављено поље мора бити важећи назив поља"
@@ -14210,8 +14348,8 @@ msgstr "Задатак је успешно заустављен"
msgid "Join video conference with {0}"
msgstr "Придружи се видео-конференцији са {0}"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "Иди на поље"
@@ -14534,7 +14672,7 @@ msgstr "Ознака помоћи"
msgid "Label and Type"
msgstr "Ознака и врста"
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "Ознака је обавезна"
@@ -14557,7 +14695,7 @@ msgstr "Пејзажни"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Језик"
@@ -14603,6 +14741,14 @@ msgstr "Последњих 90 дана"
msgid "Last Active"
msgstr "Последња активност"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr "Последњу измену извршили сте Ви"
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+msgstr "Последња измена је извршена од стране {0}"
+
#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Last Execution"
@@ -14727,6 +14873,11 @@ msgstr "Прошла година"
msgid "Last synced {0}"
msgstr "Последњи пут синхронизовано {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "Распоред"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "Ресет распореда"
@@ -14754,9 +14905,15 @@ msgstr "Напусти овај разговор"
msgid "Ledger"
msgstr "Књига"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14850,7 +15007,7 @@ msgstr "Писмо"
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14879,7 +15036,7 @@ msgstr "Назив заглавља"
msgid "Letter Head Scripts"
msgstr "Скрипте за заглавље"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "Заглавље не може бити и онемогућено и подразумевано"
@@ -14901,7 +15058,7 @@ msgstr "Заглавље у HTML-у"
msgid "Level"
msgstr "Ниво"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "Ниво 0 је за дозволе на нивоу документа, виши нивои су за дозволе на нивоу поља."
@@ -14942,7 +15099,7 @@ msgstr "Светла тема"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Лајк"
@@ -14966,7 +15123,7 @@ msgstr "Лајковања"
msgid "Limit"
msgstr "Лимит"
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr "Ограничење мора бити позитиван цео број"
@@ -15092,7 +15249,7 @@ msgstr "Наслов линка"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -15110,7 +15267,7 @@ msgstr "Линк ка у реду"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr "Врста линка"
@@ -15153,6 +15310,7 @@ msgstr "LinkedIn"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15174,8 +15332,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr "Листа"
@@ -15205,7 +15363,7 @@ msgstr "Филтер листе"
msgid "List Settings"
msgstr "Подешавање листе"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Подешавање листе"
@@ -15219,7 +15377,7 @@ msgstr "Приказ листе"
msgid "List View Settings"
msgstr "Подешавање приказа листе"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "Излистирај врсту документа"
@@ -15246,7 +15404,7 @@ msgstr "Листа извршених закрпа"
msgid "List setting message"
msgstr "Порука подешавања листе"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "Листе"
@@ -15255,7 +15413,7 @@ msgstr "Листе"
msgid "Load Balancing"
msgstr "Балансирање оптерећења"
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15273,10 +15431,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "Учитавање"
@@ -15293,8 +15451,8 @@ msgid "Loading versions..."
msgstr "Учитавање верзија..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15304,7 +15462,8 @@ msgid "Loading..."
msgstr "Учитавање..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr "Локација"
@@ -15377,6 +15536,11 @@ msgstr "Ођављени сте"
msgid "Login"
msgstr "Пријава"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr "Активност пријављивања"
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15452,7 +15616,7 @@ msgstr "Пријавите се да бисте започели нову дис
msgid "Login to {0}"
msgstr "Пријављивање на {0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "Неопходан је токен за пријаву"
@@ -15519,8 +15683,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr "Одјава са свих уређаја након промене лозинке"
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Евиденције"
@@ -15551,7 +15714,7 @@ msgstr "Изгледа да нисте променили вредност"
msgid "Looks like you haven’t added any third party apps."
msgstr "Изгледа да нисте додали ниједну екстерну апликацију."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "Изгледа да нисте примили ниједно обавештење."
@@ -15701,7 +15864,7 @@ msgstr "Обавезна поља су неопходна у табели {0},
msgid "Mandatory fields required in {0}"
msgstr "Обавезна поља су неопходна у {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "Обавезна поља су неопходна:"
@@ -15763,7 +15926,7 @@ msgstr "Горња маргина"
msgid "MariaDB Variables"
msgstr "MariaDB променљиве"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "Означи све као прочитано"
@@ -15815,9 +15978,12 @@ msgstr "Менаџер маркетинга"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "Маска"
@@ -15879,7 +16045,7 @@ msgstr "Максималан број аутоматских извештаја
msgid "Max signups allowed per hour"
msgstr "Максималан број пријављивања по сату"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "Максимална ширина за врсту валуте је 100 пиксела у реду {0}"
@@ -15900,20 +16066,27 @@ msgstr "Достигнут је максимални број прилога о
msgid "Maximum {0} rows allowed"
msgstr "Дозвољено је највише {0} редова"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr "Можда"
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Ја"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "Значење опција поднеси, откажи, измени"
+msgid "Meaning of Different Permission Types"
+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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15957,12 +16130,12 @@ msgstr "Помињање"
msgid "Mentions"
msgstr "Помињања"
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "Мени"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Споји са постојећим"
@@ -15996,13 +16169,13 @@ msgstr "Спајање је могуће само између групе и г
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Порука"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Порука"
@@ -16033,7 +16206,7 @@ msgstr "Порука послата"
msgid "Message Type"
msgstr "Врста поруке"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Порука је скраћена"
@@ -16130,7 +16303,7 @@ msgstr "Метаподаци"
msgid "Method"
msgstr "Метода"
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "Метода није дозвољена"
@@ -16219,7 +16392,7 @@ msgstr "Пропуштено"
msgid "Missing DocType"
msgstr "Недостајући DocType"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "Недостајуће поље"
@@ -16239,7 +16412,7 @@ msgstr "Недостајуће дозволе"
msgid "Missing Value"
msgstr "Недостајуће вредности"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16304,7 +16477,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16351,9 +16524,8 @@ msgstr "Модул уводне обуке"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "Профил модула"
@@ -16370,7 +16542,7 @@ msgstr "Напредак модула уводне обуке је ресето
msgid "Module to Export"
msgstr "Модул за извоз"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "Модул {} није пронађен"
@@ -16485,7 +16657,7 @@ msgstr "Више чланака о {0}"
msgid "More content for the bottom of the page."
msgstr "Додатни садржај за дно странице."
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "Највише коришћено"
@@ -16500,7 +16672,7 @@ msgstr "Вероватно је Ваша лозинка предугачка."
msgid "Move"
msgstr "Премести"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Премести у"
@@ -16512,19 +16684,19 @@ msgstr "Премести у смеће"
msgid "Move current and all subsequent sections to a new tab"
msgstr "Премести тренутни и све следеће одељке у нову картицу"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "Премести курсор на горњи ред"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "Премести курсор на доњи ред"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "Премести курсор на следећу колону"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "Премести курсор на претходну колону"
@@ -16536,7 +16708,7 @@ msgstr "Премести одељке у нову картицу"
msgid "Move the current field and the following fields to a new column"
msgstr "Премести тренутно поље и следећа поља у нову колону"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Премести на број реда"
@@ -16654,7 +16826,7 @@ msgstr "Назив (Документа)"
msgid "Name already taken, please set a new name"
msgstr "Назив је већ заузет, молимо Вас да поставите нови назив"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "Назив не може садржати специјалне карактере као што је {0}"
@@ -16666,7 +16838,7 @@ msgstr "Назив врсте документа (DocType) са којим же
msgid "Name of the new Print Format"
msgstr "Назив новог формата за штампање"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "Назив {0} не може бити {1}"
@@ -16707,7 +16879,7 @@ msgstr "Правило именовања"
msgid "Naming Series"
msgstr "Серија именовања"
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Серија именовања је обавезна"
@@ -16731,11 +16903,6 @@ msgstr "Ставка навигационе траке"
msgid "Navbar Settings"
msgstr "Подешавање навигационе траке"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16749,39 +16916,44 @@ msgstr "Шаблон навигационе траке"
msgid "Navbar Template Values"
msgstr "Вредности шаблона навигационе траке"
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Помери листу према доле"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Помери листу према горе"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "Иди на главни садржај"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr "Навигациона дугмад"
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr "Подешавање навигације"
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "Треба Вам помоћ?"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Неопходна је улога менаџера радног простора да бисте уређивали приватни радни простор других корисника"
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Негативна вредност"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr "Угњеждени филтери морају бити предати као листа или tuple."
@@ -16803,6 +16975,7 @@ msgstr "Никада"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16819,7 +16992,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "Нова адреса"
@@ -16835,8 +17008,8 @@ msgstr "Нови контакт"
msgid "New Custom Block"
msgstr "Нови прилагођени блок"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "Нови прилагођени формат штампе"
@@ -16885,7 +17058,7 @@ msgstr "Нова порука са контакт странице веб-сај
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Нови назив"
@@ -16906,8 +17079,8 @@ msgstr "Нова уводна обука"
msgid "New Password"
msgstr "Нова лозинка"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Нови назив формата штампе"
@@ -16934,8 +17107,8 @@ msgstr "Нова пречица"
msgid "New Users (Last 30 days)"
msgstr "Нови корисници (претходних 30 дана)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "Нова вредност"
@@ -16943,7 +17116,7 @@ msgstr "Нова вредност"
msgid "New Workflow Name"
msgstr "Нови назив радног тока"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "Нови радни простор"
@@ -16988,32 +17161,32 @@ msgstr "Нови корисници ће морати бити ручно рег
msgid "New value to be set"
msgstr "Нова вредност треба да буде постављена"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Нови {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Нови {0} креиран"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Нови {0} {1} додат у контролну таблу {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "Нови {0} {1} креиран"
@@ -17025,7 +17198,7 @@ msgstr "Нови {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Нови {} верзије за следеће апликација су доступне"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "Новокреирани корисник {0} нема омогућене улоге."
@@ -17046,7 +17219,7 @@ msgstr "Менаџер билтена"
msgid "Next"
msgstr "Следеће"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "Следеће"
@@ -17073,12 +17246,16 @@ msgstr "Наредних 7 дана"
msgid "Next Action Email Template"
msgstr "Шаблон за следећу радњу путем имејла"
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+msgstr "Следеће акције"
+
#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Next Actions HTML"
msgstr "HTML за следеће радње"
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr "Следећи документ"
@@ -17145,20 +17322,24 @@ msgstr "Следеће на клик"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Не"
@@ -17228,7 +17409,7 @@ msgstr "Ниједан филтер није подешен"
msgid "No Google Calendar Event to sync."
msgstr "Нема Google Calendar догађаја за синхронизацију."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "Нема слика"
@@ -17247,23 +17428,23 @@ msgstr "Ниједан LDAP корисник није пронађен за им
msgid "No Label"
msgstr "Нема ознаке"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr "Нема заглавља"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "Није наведен назив за {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "Нема нових обавештења"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "Дозволе нису наведене"
@@ -17283,11 +17464,11 @@ msgstr "Нема дозвољених графикона на контролно
msgid "No Preview"
msgstr "Нема прегледа"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "Преглед није доступан"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "Ниједан штампач није доступан."
@@ -17295,7 +17476,7 @@ msgstr "Ниједан штампач није доступан."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "Нема повезаних RQ Workers. Покушајте да рестартујете bench."
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "Нема резултата"
@@ -17303,7 +17484,7 @@ msgstr "Нема резултата"
msgid "No Results found"
msgstr "Ниједан резултат није пронађен"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "Улоге нису наведене"
@@ -17319,7 +17500,7 @@ msgstr "Нема предлога"
msgid "No Tags"
msgstr "Нема ознака"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "Нема предстојећих догађаја"
@@ -17339,7 +17520,7 @@ msgstr "Нема доступних аутоматских предлога за
msgid "No changes in document"
msgstr "Нема промена у документу"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "Није извршена ниједна промена"
@@ -17403,7 +17584,7 @@ msgstr "Није пронађено поље које може бити кори
msgid "No file attached"
msgstr "Нема приложених фајлова"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "Ниједан филтер није пронађен"
@@ -17451,11 +17632,11 @@ msgstr "Број редова (максимално 500)"
msgid "No of Sent SMS"
msgstr "Број послатих SMS порука"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "Не постоји дозвола за {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Не постоји дозвола за '{0}' {1}"
@@ -17464,7 +17645,7 @@ msgstr "Не постоји дозвола за '{0}' {1}"
msgid "No permission to read {0}"
msgstr "Не постоји дозвола за читање {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "Не постоји дозвола за {0} {1} {2}"
@@ -17480,7 +17661,7 @@ msgstr "Ниједан запис није доступан у {0}"
msgid "No records tagged."
msgstr "Нема означених записа."
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "Ниједан запис неће бити извезен"
@@ -17488,7 +17669,7 @@ msgstr "Ниједан запис неће бити извезен"
msgid "No rows"
msgstr "Нема редова"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr "Нема изабраних редова"
@@ -17500,11 +17681,12 @@ msgstr "Нема наслова"
msgid "No template found at path: {0}"
msgstr "Није пронађен шаблон на путањи: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr "Ниједан корисник нема улогу {0}"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "Нема вредности за приказ"
@@ -17516,7 +17698,7 @@ msgstr "Нема {0}"
msgid "No {0} found"
msgstr "Није пронађен ниједан {0}"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Нема {0} који одговарају филтерима. Очистите филтере да видите све {0}."
@@ -17525,7 +17707,7 @@ msgid "No {0} mail"
msgstr "Нема {0} поште"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Бр."
@@ -17568,12 +17750,12 @@ msgstr "Нормализоване копије"
msgid "Normalized Query"
msgstr "Нормализовани упити"
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "Није дозвољено"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "Није дозвољено: Корисник је онемогућен"
@@ -17615,7 +17797,7 @@ msgstr "Није повезани ни са једним записом"
msgid "Not Nullable"
msgstr "Не може бити празно"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17624,7 +17806,7 @@ msgstr "Не може бити празно"
msgid "Not Permitted"
msgstr "Није дозвољено"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "Није дозвољено за читање {0}"
@@ -17633,8 +17815,8 @@ msgstr "Није дозвољено за читање {0}"
msgid "Not Published"
msgstr "Није објављено"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17654,7 +17836,7 @@ msgstr "Није виђено"
msgid "Not Sent"
msgstr "Није послато"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "Није постављено"
@@ -17668,15 +17850,15 @@ msgstr "Није постављено"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Неважећи Comma Separated Value (CSV фајл)"
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "Неважећа слика корисника."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "Неважећа радња радног тока"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "Неважећи корисник"
@@ -17684,7 +17866,7 @@ msgstr "Неважећи корисник"
msgid "Not active"
msgstr "Није активно"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "Није дозвољено за {0}: {1}"
@@ -17704,11 +17886,11 @@ msgstr "Није дозвољено штампање отказаних доку
msgid "Not allowed to print draft documents"
msgstr "Није дозвољено штампање докумената у нацрту"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "Није дозвољено према провереним дозволама контролера"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Није пронађено"
@@ -17721,11 +17903,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Није у развојном режиму! Поставите у ситецонфиг.јсон или направите 'Прилагођени' DocType."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Није дозвољено"
@@ -17753,7 +17935,7 @@ msgstr "Напомена виђена од стране"
msgid "Note:"
msgstr "Напомена:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Напомена: Промена назива страница ће прекинути претходни URL ка овој страници."
@@ -17785,7 +17967,7 @@ msgstr "Напомена: Ваш захтев за брисање налога
msgid "Notes:"
msgstr "Напомене:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "Нема ничег новог"
@@ -17797,8 +17979,8 @@ msgstr "Нема више ставки за понављање"
msgid "Nothing left to undo"
msgstr "Нема више ставки за опозив"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17809,11 +17991,13 @@ msgid "Nothing to update"
msgstr "Нема ничега за ажурирање"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "Обавештење"
@@ -17829,7 +18013,7 @@ msgstr "Прималац обавештења"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "Подешавање обавештења"
@@ -17838,11 +18022,6 @@ msgstr "Подешавање обавештења"
msgid "Notification Subscribed Document"
msgstr "Документ на који је корисник претплаћен за обавештења"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr "Резиме обавештења"
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "Обавештење послато ка"
@@ -17860,13 +18039,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "Обавештење: корисник {0} нема подешен број мобилног телефона"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Обавештења"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "Обавештења онемогућена"
@@ -18102,7 +18283,7 @@ msgstr "Тајна за једнократну лозинку је ресето
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr "Резервисани текст за једнократну лозинку треба да буде дефинисан као {{ otp }} "
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "Поставке једнократне лозинке помоћу апликације за једнократну лозинку нису завршене. Молимо Вас да контактирате администратора."
@@ -18142,7 +18323,7 @@ msgstr "Помак X"
msgid "Offset Y"
msgstr "Помак Y"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "Помак мора бити позитиван цео број"
@@ -18150,7 +18331,7 @@ msgstr "Помак мора бити позитиван цео број"
msgid "Old Password"
msgstr "Стара лозинка"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Стари и нови називи поља су исти."
@@ -18217,7 +18398,7 @@ msgstr "На или након"
msgid "On or Before"
msgstr "На или пре"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "На {0}, {1} је написао/ла:"
@@ -18261,7 +18442,7 @@ msgstr "Уводна обука завршена"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Једном када су поднети, документи који се могу поднети не могу се мењати. Могу се само отказати или изменити."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "Када ово поставите, корисници ће моћи приступити само документима (нпр. објаве на блогу) где линк постоји (нпр. блогер)."
@@ -18277,11 +18458,11 @@ msgstr "Код за регистрацију једнократне лозинк
msgid "One of"
msgstr "Један од"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Дозвољено је искључиво 200 уноса по захтеву"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Искључиво администратор може обрисати ред чекања имејлова"
@@ -18302,7 +18483,7 @@ msgstr "Искључиво администратор може да корист
msgid "Only Allow Edit For"
msgstr "Дозволи уређивање само за"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Једине опције дозвољене за поље података су:"
@@ -18325,11 +18506,11 @@ msgstr "Искључиво менаџер радног простора може
msgid "Only allow System Managers to upload public files"
msgstr "Искључиво систем менаџери могу да отпремају јавне фајлове"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "Извоз прилагођавања је дозвољен само у развојном режиму"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Искључиво нацрти докумената могу бити одбачени"
@@ -18372,7 +18553,7 @@ msgstr "Искључиво додељени корисник може заврш
msgid "Only {0} emailed reports are allowed per user."
msgstr "Дозвољено је искључиво {0} извештаја послатих путем имејла по кориснику."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Упс! Дошло је до грешке."
@@ -18395,8 +18576,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Отвори"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18432,6 +18613,10 @@ msgstr "Отвори референтни документ"
msgid "Open Settings"
msgstr "Отвори подешавања"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr "Отвори бочну траку"
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Апликације отвореног кода за веб"
@@ -18446,7 +18631,7 @@ msgstr "Отвори URL у новој картици"
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr "Отвори дијалог са обавезним пољима за брзо креирање новог записа. Дијалог ће бити приказан само уколико постоји бар једно обавезно поље."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Отвори модул или алат"
@@ -18458,11 +18643,11 @@ msgstr "Отвори конзолу"
msgid "Open in a new tab"
msgstr "Отвори у новој картици"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr "Отвори у новој картици"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Отворене ставке"
@@ -18477,16 +18662,16 @@ msgstr "Отвори апликацију за аутентификацију н
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Отвори {0}"
@@ -18518,7 +18703,7 @@ msgstr "Операција"
msgid "Operator must be one of {0}"
msgstr "Оператор мора бити један од следећих {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr "Оператор {0} захтева тачно 2 аргумента (леви и десни операнд)"
@@ -18544,7 +18729,7 @@ msgstr "Опција 2"
msgid "Option 3"
msgstr "Опција 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "Опција {0} за поље {1} није зависна табела"
@@ -18578,7 +18763,7 @@ msgstr "Опционо: Упозорење ће бити послато укол
msgid "Options"
msgstr "Опције"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Опција 'Динамички линк' мора да показује на друго линк поље чије су опције 'DocType'"
@@ -18587,7 +18772,7 @@ msgstr "Опција 'Динамички линк' мора да показуј
msgid "Options Help"
msgstr "Помоћ за опције"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Опције за поље оцењивања могу бити у распону од 3 до 10"
@@ -18595,7 +18780,7 @@ msgstr "Опције за поље оцењивања могу бити у ра
msgid "Options for select. Each option on a new line."
msgstr "Опције за одабир. Свака опција у новом реду."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Опције за {0} морају бити подешене пре него што се постави подразумевана вредност."
@@ -18603,7 +18788,7 @@ msgstr "Опције за {0} морају бити подешене пре не
msgid "Options is required for field {0} of type {1}"
msgstr "Опције су неопходне за поље {0} врсте {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Опције нису постављене за линк поље {0}"
@@ -18619,7 +18804,7 @@ msgstr "Наранџаста"
msgid "Order"
msgstr "Редослед"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "Сортирај по мора бити текст"
@@ -18639,8 +18824,12 @@ msgstr "Наслов историје организације"
msgid "Orientation"
msgstr "Оријентација"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr "Оригинал"
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Оригинална вредност"
@@ -18715,18 +18904,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF се генерише"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF Генератор"
@@ -18750,7 +18941,7 @@ msgstr "Ширина PDF странице (у мм)"
msgid "PDF Settings"
msgstr "Подешавање PDF"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "Генерисање PDF-а није успело"
@@ -18758,11 +18949,11 @@ msgstr "Генерисање PDF-а није успело"
msgid "PDF generation failed because of broken image links"
msgstr "Генерисање PDF-а није успело због неисправних линкова ка сликама"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "Генерисање PDF-а можда неће радити како је очекивано."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "Штампање PDF-а путем опције \"Необрађена штампа\" није подржано."
@@ -18921,7 +19112,7 @@ msgstr "Ширина странице (у мм)"
msgid "Page has expired!"
msgstr "Страница је истекла!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Висина и ширина странице не могу бити нула"
@@ -18937,7 +19128,7 @@ msgstr "Страница која ће бити приказана на веб-
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Страна {0} од {1}"
@@ -18948,7 +19139,7 @@ msgid "Parameter"
msgstr "Параметар"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Матични"
@@ -18981,11 +19172,11 @@ msgstr "Матично поље"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Матично поље (стабло)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Матично поље мора бити важећи назив поља"
@@ -18999,7 +19190,7 @@ msgstr "Матична иконица"
msgid "Parent Label"
msgstr "Матична ознака"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "Матични ентитет недостаје"
@@ -19024,11 +19215,11 @@ msgstr "Матични означава назив документа у кој
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr "Груписање матичног са зависним или два различита зависна ентитета није дозвољено."
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "Матично поље није наведено у {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "Матична врста, матични ентитет и матично поље су неопходни за унос зависног записа"
@@ -19047,7 +19238,7 @@ msgstr "Делимичан успех"
msgid "Partially Sent"
msgstr "Делимично послато"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Учесници"
@@ -19084,11 +19275,11 @@ msgstr "Пасиван"
msgid "Password"
msgstr "Лозинка"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "Имејл са лозинком послат"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Ресетовање лозинке"
@@ -19097,7 +19288,7 @@ msgstr "Ресетовање лозинке"
msgid "Password Reset Link Generation Limit"
msgstr "Ограничење за генерисање линкова за ресетовање лозинке"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "Лозинка се не може филтрирати"
@@ -19126,11 +19317,11 @@ msgstr "Лозинка није унета у имејл налогу"
msgid "Password not found for {0} {1} {2}"
msgstr "Лозинка није пронађена за {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr "Захтеви за лозинку нису испуњени"
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Упутство за ресетовање лозинке је послато на имејл корисника {}"
@@ -19142,7 +19333,7 @@ msgstr "Лозинка постављена"
msgid "Password size exceeded the maximum allowed size"
msgstr "Величина лозинке премашује дозвољену границу"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "Дужина лозинке премашује дозвољену границу."
@@ -19204,7 +19395,7 @@ msgstr "Путања до сервер сертификата"
msgid "Path to private Key File"
msgstr "Путања до фајла са приватним кључем"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "Путања {0} се не налази у оквиру модула {1}"
@@ -19289,15 +19480,15 @@ msgstr "Ниво дозволе"
msgid "Permanent"
msgstr "Трајно"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "Трајно отказати {0}?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "Трајно одбацити {0}?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "Трајно поднети {0}?"
@@ -19305,7 +19496,11 @@ msgstr "Трајно поднети {0}?"
msgid "Permanently delete {0}?"
msgstr "Трајно обрисати {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr "Дозвола"
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Грешка у дозволама"
@@ -19315,12 +19510,12 @@ msgid "Permission Inspector"
msgstr "Преглед приступних дозвола"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Ниво дозвола"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Нивои дозвола"
@@ -19329,11 +19524,6 @@ msgstr "Нивои дозвола"
msgid "Permission Log"
msgstr "Евиденција дозвола"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "Менаџер дозвола"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19364,7 +19554,6 @@ msgstr "Врста дозволе '{0}' је резервисана. Молим
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19375,13 +19564,12 @@ msgstr "Врста дозволе '{0}' је резервисана. Молим
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Дозволе"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Грешка у дозволама"
@@ -19393,11 +19581,11 @@ msgstr "Дозволе се аутоматски примењују на ста
msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
msgstr "Дозволе се постављају на улоге и врсте докумената (који се називају DocTypes) додељивањем права као што су читање, писање, креирање, уклањање, подношење, отказивање, измењивање, извештај, увоз, извоз, штампа, имејл и постављање корисничких дозвола."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Дозволе на нивоу 0 су дозволе на нивоу документа, тј. оне су основне за приступ документу."
@@ -19467,13 +19655,13 @@ msgstr "Телефон"
msgid "Phone No."
msgstr "Телефон бр."
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Број телефона {0} постављен у пољу {1} није валидан."
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Изаберите колоне"
@@ -19531,7 +19719,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Молимо Вас да поставите графикон"
@@ -19547,7 +19735,7 @@ msgstr "Молимо Вас да додате наслов у Ваш имејл"
msgid "Please add a valid comment."
msgstr "Молимо Вас да додате валидан коментар."
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Молимо Вас да затражите од администратора да верификује Вашу регистрацију"
@@ -19555,11 +19743,11 @@ msgstr "Молимо Вас да затражите од администрат
msgid "Please attach a file first."
msgstr "Молимо Вас да прво приложите фајл."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Молимо Вас да приложите слику како бисте поставили HTML за подножје."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Молимо Вас да приложите слику како бисте поставили HTML за заглавље."
@@ -19571,11 +19759,11 @@ msgstr "Молимо Вас да приложите пакет"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Молимо Вас да проверите вредности филтера постављене за графикон за контролној табли: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Молимо Вас да проверите вредности поља \"Преузми из\" постављених за поље {0}"
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Молимо Вас да проверите свој имејл за верификацију"
@@ -19607,7 +19795,7 @@ msgstr "Молимо Вас да кликнете на следећи линк
msgid "Please confirm your action to {0} this document."
msgstr "Молимо Вас да потврдите своју радњу како бисте {0} овај документ."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Молимо Вас да контактирате систем менаџера како бисте инсталирали исправну верзију."
@@ -19637,10 +19825,10 @@ msgstr "Молимо Вас да омогућите барем један кљу
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Молимо Вас да омогућите искачуће прозоре"
@@ -19653,7 +19841,7 @@ msgstr "Молимо Вас да омогућите искачуће прозо
msgid "Please enable {} before continuing."
msgstr "Молимо Вас да омогућите {} пре него што наставите."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Молимо Вас да се уверите да Ваш профил садржи имејл адресу"
@@ -19727,15 +19915,15 @@ msgstr "Молимо Вас да се пријавите како бисте о
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Молимо Вас да се уверите да документи референтне комуникације нису кружно повезани."
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Молимо Вас да освежите како бисте добили најновији документ."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Молимо Вас да уклоните мапирање штампача у подешавањима штампе и покушате поново."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Молимо Вас да сачувате пре него што приложите."
@@ -19751,7 +19939,7 @@ msgstr "Молимо Вас да сачувате документ пре укл
msgid "Please save the form before previewing the message"
msgstr "Молимо Вас да сачувате образац пре прегледа поруке"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Молимо Вас да прво сачувате извештај"
@@ -19771,7 +19959,7 @@ msgstr "Молимо Вас да прво изаберете врсту енти
msgid "Please select Minimum Password Score"
msgstr "Молимо Вас да одаберете минималну оцену јачине лозинке"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Молимо Вас да изаберете X и Y поља"
@@ -19779,7 +19967,7 @@ msgstr "Молимо Вас да изаберете X и Y поља"
msgid "Please select a DocType in options before setting filters"
msgstr "Молимо Вас да изаберете DocType у опцијама пре постављања филтера"
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Молимо Вас да изаберете шифру државе за поље {1}."
@@ -19829,11 +20017,11 @@ msgstr "Молимо Вас да изаберете {0}"
msgid "Please set Email Address"
msgstr "Молимо Вас да поставите имејл адресу"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Молимо Вас да поставите мапирање штампача за овај формат штампе у подешавањима штампе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Молимо Вас да поставите филтере"
@@ -19841,7 +20029,7 @@ msgstr "Молимо Вас да поставите филтере"
msgid "Please set filters value in Report Filter table."
msgstr "Молимо Вас да поставите вредности филтера у табели филтер извештаја."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Молимо Вас да поставите назив документа"
@@ -19861,7 +20049,7 @@ msgstr "Молимо Вас да поставите SMS пре него што
msgid "Please setup a message first"
msgstr "Молимо Вас да прво поставите поруку"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Молимо Вас да поставите подразумевани излазни имејл налог из Подешавања > Имејл налог"
@@ -19873,7 +20061,7 @@ msgstr "Молимо Вас да поставите подразумевани
msgid "Please specify"
msgstr "Молимо Вас да наведете"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Молимо Вас да наведете важећи матични DocType за {0}"
@@ -19901,7 +20089,7 @@ msgstr "Молимо Вас да наведете које поље за дат
msgid "Please specify which value field must be checked"
msgstr "Молимо Вас да наведете које поље за вредност мора бити проверено"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Молимо Вас да покушате поново"
@@ -20022,11 +20210,11 @@ msgstr "Време објаве"
msgid "Precision"
msgstr "Прецизност"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "Прецизност ({0}) за {1} не може бити већа од његове дужине ({2})."
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Прецизност треба да буде између 1 и 6"
@@ -20078,11 +20266,11 @@ msgstr "Корисник припремљеног извештаја"
msgid "Prepared report render failed"
msgstr "Приказ припремљеног извештаја није успео"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Припрема извештаја"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Додај шаблон на почетак имејл поруке"
@@ -20090,7 +20278,7 @@ msgstr "Додај шаблон на почетак имејл поруке"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Притисните тастер Alt да бисте активирали додатне пречице у менију и бочној траци"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Притисните Enter да сачувате"
@@ -20108,7 +20296,7 @@ msgstr "Притисните Enter да сачувате"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Преглед"
@@ -20152,16 +20340,16 @@ msgstr "Преглед:"
msgid "Previous"
msgstr "Претходно"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Претходно"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Претходни документ"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Претходно подношење"
@@ -20214,19 +20402,19 @@ msgstr "Примарни кључ за DocType {0} не може бити про
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Штампа"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Штампа"
@@ -20244,8 +20432,9 @@ msgstr "Штампа документа"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20289,7 +20478,7 @@ msgstr "Помоћ за формат штампе"
msgid "Print Format Type"
msgstr "Врста формата штампе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "Формат штампе није пронађен"
@@ -20322,11 +20511,11 @@ msgstr "Сакриј штампу"
msgid "Print Hide If No Value"
msgstr "Сакриј штампу уколико нема вредности"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Језик штампе"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Штампа је послата на штампач!"
@@ -20339,8 +20528,8 @@ msgstr "Сервер за штампу"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Подешавање штампе"
@@ -20379,7 +20568,7 @@ msgstr "Ширина штампе"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "Ширина поља за штампу, уколико је поље колона у табели"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Штампа документа"
@@ -20388,11 +20577,11 @@ msgstr "Штампа документа"
msgid "Print with letterhead"
msgstr "Штампа са заглављем"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Штампач"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Мапирање штампача"
@@ -20402,15 +20591,15 @@ msgstr "Мапирање штампача"
msgid "Printer Name"
msgstr "Назив штампача"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Подешавање штампача"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Мапирање штампача није подешено."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Штампање неуспешно"
@@ -20459,7 +20648,7 @@ msgstr "Савет: Додаје Reference: {{ reference_doctype }} {{ ref
msgid "Proceed"
msgstr "Настави"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Ипак настави"
@@ -20499,9 +20688,9 @@ msgid "Project"
msgstr "Пројекат"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "Својство"
@@ -20571,7 +20760,7 @@ msgstr "Назив провајдера"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Јавни"
@@ -20721,7 +20910,7 @@ msgstr "QR код"
msgid "QR Code for Login Verification"
msgstr "QR код за верификацију пријављивања"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ Tray неуспешно:"
@@ -20783,7 +20972,7 @@ msgstr "Упит мора бити врсте SELECT или read-only WITH type.
msgid "Queue"
msgstr "Ред"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "Ред преоптерећен"
@@ -20804,7 +20993,7 @@ msgstr "Врсте редова"
msgid "Queue in Background (BETA)"
msgstr "Ред у позадини (БЕТА)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Ред треба да буде један од {0}"
@@ -20845,7 +21034,7 @@ msgstr "У реду за резервну копију. Добићете име
msgid "Queues"
msgstr "Редови"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "{0} се ставља у ред за подношење"
@@ -20937,6 +21126,15 @@ msgstr "Необрађене команде"
msgid "Raw Email"
msgstr "Необрађени имејл"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr "Необрађени HTML може се користити само на шаблонима имејла који имају означено поље 'Користите HTML'. Наставља се са имејлом у обичном тексту."
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr "Необрађени HTML имејла се приказују као комплетни Jinja шаблони. У супротном, имејл се убацује у standard.html шаблон имејла, који укључује brand_logo, заглавље и подножје."
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20945,7 +21143,7 @@ msgstr "Необрађени имејл"
msgid "Raw Printing"
msgstr "Необрађено штампање"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Подешавање необрађеног штампања"
@@ -20963,7 +21161,7 @@ msgstr "Re:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Re: {0}"
@@ -20974,11 +21172,12 @@ msgstr "Re: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21015,7 +21214,7 @@ msgstr "Искључиво за читање зависи од"
msgid "Read Only Depends On (JS)"
msgstr "Искључиво за читање зависи од (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Режим искључиво за читање"
@@ -21055,7 +21254,7 @@ msgstr "У реалном времену (SocketIO)"
msgid "Reason"
msgstr "Разлог"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Обнови"
@@ -21097,7 +21296,7 @@ msgstr "Параметар примаоца"
msgid "Recent years are easy to guess."
msgstr "Недавне године се лако наслућују."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Недавно"
@@ -21148,7 +21347,7 @@ msgstr "Предложени индекси из алата за снимање"
msgid "Records for following doctypes will be filtered"
msgstr "Записи за следеће врсте докумената биће филтрирани"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Рекурзивно преузимање из"
@@ -21214,12 +21413,12 @@ msgstr "Преусмеравања"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis cache сервер није покренут. Молимо Вас да контактирате администратор / техничку подршку"
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Врати"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Врати последњу радњу"
@@ -21435,12 +21634,12 @@ msgstr "Референца: {0} {1}"
msgid "Referrer"
msgstr "Извор приступа"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21457,7 +21656,7 @@ msgstr "Освежи све"
msgid "Refresh Google Sheet"
msgstr "Освежи Google Sheet"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "Освежи преглед штампе"
@@ -21472,7 +21671,7 @@ msgstr "Освежи преглед штампе"
msgid "Refresh Token"
msgstr "Токен за освежавање"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Освежавање"
@@ -21483,7 +21682,7 @@ msgstr "Освежавање"
msgid "Refreshing..."
msgstr "Освежавање..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Регистровано, али онемогућено"
@@ -21529,10 +21728,8 @@ msgstr "Поновно повезивање комуникације"
msgid "Relinked"
msgstr "Поново повезано"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Поновно учитавање"
@@ -21544,7 +21741,7 @@ msgstr "Поново учитај фајл"
msgid "Reload List"
msgstr "Поново учитај листу"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Поново учитај извештај"
@@ -21563,7 +21760,7 @@ msgstr "Запамти последњу изабрану вредност"
msgid "Remind At"
msgstr "Подсетник у"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Подсети ме"
@@ -21643,9 +21840,9 @@ msgid "Removed"
msgstr "Уклоњено"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21673,7 +21870,7 @@ msgstr "Приказивања ознака са леве стране и вре
msgid "Reopen"
msgstr "Поново отвори"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Понови"
@@ -21720,7 +21917,7 @@ msgstr "Понављања као \"ааа\" се лако наслућују"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Понављања као \"абцабцабц\" су само мало тежа за наслутити од \"абц\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Поновљено {0}"
@@ -21783,6 +21980,7 @@ msgstr "Одговори свима"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21797,10 +21995,9 @@ msgstr "Одговори свима"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Извештај"
@@ -21869,7 +22066,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Назив извештаја"
@@ -21903,14 +22100,10 @@ msgstr "Врста извештаја"
msgid "Report View"
msgstr "Приказ извештаја"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Пријави грешку"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Извештај се може бити постављен за појединачне врсте"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21921,7 +22114,7 @@ msgstr "Извештај нема података, молимо Вас да и
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Извештај нема нумеричких поља, молимо Вас да промените назив извештаја"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Извештај је покренут, кликните да бисте погледали статус"
@@ -21933,7 +22126,7 @@ msgstr "Достигнуто је ограничење извештаја"
msgid "Report timed out."
msgstr "Извештај је истекао."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Извештај је успешно ажуриран"
@@ -21941,12 +22134,12 @@ msgstr "Извештај је успешно ажуриран"
msgid "Report was not saved (there were errors)"
msgstr "Извештај није сачуван (догодиле су се грешке)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Извештај са више од 10 колона изгледа боље у пејзажном режиму."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Извештај {0}"
@@ -21969,7 +22162,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Извештаји"
@@ -21977,7 +22170,7 @@ msgstr "Извештаји"
msgid "Reports & Masters"
msgstr "Извештаји и мастер подаци"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Извештаји су већ у реду"
@@ -22036,13 +22229,13 @@ msgstr "Метод захтева"
msgid "Request Structure"
msgstr "Структура захтева"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "Захтев је истекао"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Време за захтев је истекло"
@@ -22158,7 +22351,7 @@ msgstr "Врати на подразумевано"
msgid "Reset sorting"
msgstr "Ресетуј сортирање"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Врати на подразумевано"
@@ -22216,7 +22409,7 @@ msgstr "Заглавље одговора"
msgid "Response Type"
msgstr "Врста одговора"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Остатак дана"
@@ -22225,7 +22418,7 @@ msgstr "Остатак дана"
msgid "Restore"
msgstr "Врати"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Врати оригиналне дозволе"
@@ -22247,6 +22440,11 @@ msgstr "Враћање обрисаног документа"
msgid "Restrict IP"
msgstr "Ограничи IP адресу"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr "Ограничи уклањање"
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22274,8 +22472,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Ограничења"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Резултат"
@@ -22322,9 +22520,15 @@ msgstr "Опозвано"
msgid "Rich Text"
msgstr "Богати текст"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22359,8 +22563,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22375,8 +22577,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22420,7 +22621,7 @@ msgstr "Дозволе улога"
msgid "Role Permissions Manager"
msgstr "Менаџер дозвола улога"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Менаџер дозвола улога"
@@ -22428,11 +22629,9 @@ msgstr "Менаџер дозвола улога"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Профил улоге"
@@ -22454,7 +22653,7 @@ msgstr "Репликација улога"
msgid "Role and Level"
msgstr "Улога и ниво"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Улога је постављена према врсти корисника {0}"
@@ -22573,20 +22772,20 @@ msgstr "Преусмеравање путање"
msgid "Route: Example \"/app\""
msgstr "Путања: Пример \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Ред"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "Ред #"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Ред # {0}: Корисник који није администратор не може да постави улогу {1} у прилагођени доцтyпе"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr "Ред # {0}: Корисници који нису администратори не могу додати улогу {1} у прилагођеном DocType-у."
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Ред #{0}:"
@@ -22613,7 +22812,7 @@ msgstr "Назив реда"
msgid "Row Number"
msgstr "Број реда"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Вредности у реду су измењене"
@@ -22632,14 +22831,14 @@ msgstr "Ред {0}: Није дозвољено омогућити дозвол
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Редови додати"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Редови уклоњени"
@@ -22662,7 +22861,7 @@ msgstr "Правило"
msgid "Rule Conditions"
msgstr "Услови правила"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Правило за ову врсту доцтyпе, улога, ниво дозволе и уколико власник већ постоји."
@@ -22742,7 +22941,7 @@ msgstr "SMS подешавање"
msgid "SMS sent successfully"
msgstr "SMS је успешно послат"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS није послат. Молимо Вас да контактирате администратора."
@@ -22776,7 +22975,7 @@ msgstr "SQL излаз"
msgid "SQL Queries"
msgstr "SQL упити"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr "SQL функције нису дозвољене као текст у SELECT упиту: {0}. Уместо тога користите dict синтаксу као {{'COUNT': '*'}}."
@@ -22848,22 +23047,23 @@ msgstr "Субота"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22876,7 +23076,7 @@ msgid "Save Anyway"
msgstr "Ипак сачувај"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Сачувај као"
@@ -22884,7 +23084,7 @@ msgstr "Сачувај као"
msgid "Save Customizations"
msgstr "Сачувај прилагођавања"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Сачувај извештај"
@@ -22902,20 +23102,20 @@ msgid "Save the document."
msgstr "Сачувај документ."
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Сачувано"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Сачувани филтери"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Чување"
@@ -22924,11 +23124,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Чување"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr "Чување промена..."
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Чување прилагођавања..."
@@ -23132,7 +23332,7 @@ msgstr "Скрипте"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23152,7 +23352,7 @@ msgstr "Трака за претрагу"
msgid "Search Fields"
msgstr "Поља за претрагу"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Помоћ за претрагу"
@@ -23170,7 +23370,7 @@ msgstr "Резултати претраге"
msgid "Search by filename or extension"
msgstr "Претрага по називу фајла или екстензији"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Поље за претрагу {0} није важеће"
@@ -23187,12 +23387,12 @@ msgstr "Претражи врсте поља..."
msgid "Search for anything"
msgstr "Претрага за било шта"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "Претрага за {0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Претражи у врсти документа"
@@ -23264,15 +23464,15 @@ msgstr "Одељка мора имати најмање једну колону"
msgid "Security Settings"
msgstr "Подешавања безбедности"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Погледај све активности"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Погледај све претходне извештаје."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Погледај на веб-сајту"
@@ -23322,24 +23522,26 @@ msgstr "Табела корисника који су видели"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Изабери"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Изабери све"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23355,7 +23557,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Изабери колоне"
@@ -23399,13 +23601,13 @@ msgstr "Изабери врсту документа"
msgid "Select Document Type or Role to start."
msgstr "Изабери врсту документа или улогу за почетак."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Изабери поље"
@@ -23414,7 +23616,7 @@ msgstr "Изабери поље"
msgid "Select Field..."
msgstr "Изабери поље..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Изабери поља"
@@ -23423,19 +23625,19 @@ msgstr "Изабери поља"
msgid "Select Fields (Up to {0})"
msgstr "Изаберите поља (до {0})"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Изабери поља за унос"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Изабери поља за ажурирање"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Изабери филтере"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Изабери Google Calendar за синхронизацију догађаја."
@@ -23460,16 +23662,16 @@ msgstr "Изабери језик"
msgid "Select List View"
msgstr "Изабери приказ листе"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Изабери обавезно"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Изабери модул"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Изабери мрежни штампач"
@@ -23479,7 +23681,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Изабери формат штампе"
@@ -23515,12 +23717,6 @@ msgstr "Изабери радни ток"
msgid "Select Workspace"
msgstr "Изабери радни простор"
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr "Изабери радне просторе"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Прво изабери слику бренда."
@@ -23537,11 +23733,11 @@ msgstr "Изаберите поље да бисте уредили његова
msgid "Select a group {0} first."
msgstr "Најпре изаберите групу {0}."
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Изабери важеће поље пошиљаоца за креирање документа из имејла"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Изабери важеће поље за наслов за креирање документа из мејла"
@@ -23567,13 +23763,13 @@ msgstr "Изабери бар један запис за штампање"
msgid "Select atleast 2 actions"
msgstr "Изабери бар 2 радње"
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Изабери ставку из листе"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Изабери више ставки из листе"
@@ -23607,7 +23803,7 @@ msgstr "Изабери две верзије за приказ разлика."
msgid "Select {0}"
msgstr "Изаберите {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Самопотврда није дозвољена"
@@ -23637,6 +23833,11 @@ msgstr "Пошаљи након"
msgid "Send Alert On"
msgstr "Пошаљи обавештење на"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr "Пошаљи као необрађени HTML"
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23689,7 +23890,7 @@ msgstr "Пошаљи сада"
msgid "Send Print as PDF"
msgstr "Пошаљи као PDF за штампу"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Пошаљи потврду о читању"
@@ -23752,7 +23953,7 @@ msgstr "Пошаљи упите на ову имејл адресу"
msgid "Send login link"
msgstr "Пошаљи линк за пријаву"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Пошаљи ми копију"
@@ -23791,7 +23992,7 @@ msgstr "Имејл пошиљаоца"
msgid "Sender Email Field"
msgstr "Поље за имејл пошиљаоца"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Поље пошиљаоца треба да има имејл међу опцијама"
@@ -23885,7 +24086,7 @@ msgstr "Серија ажурирана за {}"
msgid "Series counter for {} updated to {} successfully"
msgstr "Бројач серије за {} је успешно ажуриран на {}"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Серија {0} је већ искоришћена у {1}"
@@ -23895,7 +24096,7 @@ msgstr "Серија {0} је већ искоришћена у {1}"
msgid "Server Action"
msgstr "Серверска радња"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Серверска грешка"
@@ -23922,11 +24123,15 @@ msgstr "Серверска скрипта је онемогућена. Моли
msgid "Server Scripts feature is not available on this site."
msgstr "Функционалност серверских скрипти није доступна на овом сајту."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr "Серверска грешка током отпремања. Фајл може бити оштећен."
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "Сервер није успео да обради захтев због истовременог конфликтног захтева. Молимо Вас да покушате поново."
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "Сервер је био преоптерећен да обради захтев. Покушајте поново."
@@ -23954,16 +24159,14 @@ msgstr "Подразумевана сесија"
msgid "Session Default Settings"
msgstr "Подешавање подразумеване сесије"
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Подразумеване вредности сесије"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Подразумеване вредности сесије су сачуване"
@@ -24004,7 +24207,7 @@ msgstr "Постави"
msgid "Set Banner from Image"
msgstr "Постави банер из слике"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Постави графикон"
@@ -24030,7 +24233,7 @@ msgstr "Постави филтере"
msgid "Set Filters for {0}"
msgstr "Постави филтере за {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Постави ниво"
@@ -24073,8 +24276,8 @@ msgstr "Постави својства"
msgid "Set Property After Alert"
msgstr "Постави својства након упозорења"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Постави количину"
@@ -24094,12 +24297,12 @@ msgstr "Постави корисничке дозволе"
msgid "Set Value"
msgstr "Постави вредност"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Постави све као приватно"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Постави све као јавно"
@@ -24227,8 +24430,8 @@ msgstr "Постављање система"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24251,11 +24454,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Поставке"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Поставке > Прилагоди образац"
@@ -24263,12 +24466,12 @@ msgstr "Поставке > Прилагоди образац"
msgid "Setup > User"
msgstr "Поставке > Корисник"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Поставке > Корисничке дозволе"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Поставке аутоматског имејла"
@@ -24297,13 +24500,14 @@ msgstr "Поставка неуспешна"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Подели"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Подели са"
@@ -24311,7 +24515,7 @@ msgstr "Подели са"
msgid "Share this document with"
msgstr "Подели овај документ са"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Подели {0} са"
@@ -24371,16 +24575,10 @@ msgstr "Прикажи тачан датум и време у временско
msgid "Show Absolute Values"
msgstr "Прикажи апсолутне вредности"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Прикажи све"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr "Прикажи иконице апликација као датотеку"
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24426,7 +24624,7 @@ msgstr "Прикажи грешку"
msgid "Show External Link Warning"
msgstr "Прикажи упозорење за екстерне линкове"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Прикажи назив поља (кликни за копирање)"
@@ -24478,7 +24676,7 @@ msgstr "Прикажи избор језика"
msgid "Show Line Breaks after Sections"
msgstr "Прикажи прелом линије након одељка"
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Прикажи линкове"
@@ -24598,7 +24796,7 @@ msgstr "Прикажи викенде"
msgid "Show account deletion link in My Account page"
msgstr "Прикажи линк за брисање налога на страници Мој налог"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Прикажи све верзије"
@@ -24740,7 +24938,7 @@ msgstr "Одјава"
msgid "Sign Up and Confirmation"
msgstr "Регистрација и потврда"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Регистрација је онемогућена"
@@ -24863,7 +25061,7 @@ msgstr "Прескакање колона без назива"
msgid "Skipping column {0}"
msgstr "Прескакање колоне {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "Прескакање синхронизације података за доцтyпе {0} из фајла {1}"
@@ -25038,15 +25236,15 @@ msgstr "Дошло је до грешке"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Дошло је до грешке приликом генерисања токена. Кликните на {0} да бисте генерисали нови."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Дошло је до грешке."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Опростите! Нисам могао да пронађем оно што сте тражили."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Опростите! Немате дозволу да прегледате ову страницу."
@@ -25077,13 +25275,13 @@ msgstr "Опције сортирања"
msgid "Sort Order"
msgstr "Редослед сортирања"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "Поље за сортирање {0} мора бити важећи назив поља"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25132,7 +25330,7 @@ msgstr "Покреће радње у позадинском задатку"
msgid "Special Characters are not allowed"
msgstr "Специјални карактери нису дозвољени"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Специјални карактери осим '-', '#', '.', '/', '{{' i '}}' нису дозвољени у серији именовања {0}"
@@ -25171,6 +25369,7 @@ msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25178,6 +25377,7 @@ msgstr "Stack Trace"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25245,8 +25445,8 @@ msgstr "Стандардна врста корисника {0} не може б
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Почетак"
@@ -25418,7 +25618,7 @@ msgstr "Временски интервал статистике"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25456,7 +25656,7 @@ msgstr "Кораци за верификацију Вашег пријављив
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "Прикачен"
@@ -25570,7 +25770,7 @@ msgstr "Поддомен"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Наслов"
@@ -25584,7 +25784,7 @@ msgstr "Наслов"
msgid "Subject Field"
msgstr "Поље за наслов"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Врста поља за наслов треба да буде податак, текст, дужи текст, краћи текст, уређивач текста"
@@ -25605,14 +25805,14 @@ msgstr "Ред чекања за подношење"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Поднеси"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Поднеси"
@@ -25642,7 +25842,7 @@ msgstr "Поднеси"
msgid "Submit After Import"
msgstr "Поднеси након увоза"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Пријави проблем"
@@ -25666,11 +25866,11 @@ msgstr "Поднеси приликом креирања"
msgid "Submit this document to complete this step."
msgstr "Поднесите овај документ да бисте завршили овај корак."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Поднесите овај документ да бисте потврдили"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Поднеси {0} докумената?"
@@ -25696,7 +25896,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Подношење"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Подношење {0}"
@@ -25731,12 +25931,12 @@ msgstr "Неупадљиво"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25778,7 +25978,7 @@ msgstr "Наслов успеха"
msgid "Successful Job Count"
msgstr "Број успешних задатака"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Успешне трансакције"
@@ -25803,7 +26003,7 @@ msgstr "Успешно увезено {0} од {1} записа."
msgid "Successfully reset onboarding status for all users."
msgstr "Успешно је ресетован статус уводне обуке за све кориснике."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr "Успешно одјављивање"
@@ -25828,7 +26028,7 @@ msgstr "Предложи оптимизације"
msgid "Suggested Indexes"
msgstr "Предложи индексе"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Предложено корисничко име: {0}"
@@ -25869,7 +26069,7 @@ msgstr "Недеља"
msgid "Suspend Sending"
msgstr "Обустави слање"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Промени камеру"
@@ -25882,7 +26082,7 @@ msgstr "Промени тему"
msgid "Switch To Desk"
msgstr "Пребаци на радну површину"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Промена камере"
@@ -25951,9 +26151,7 @@ msgid "Syntax Error"
msgstr "Грешка у синтакси"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "Систем"
@@ -25963,7 +26161,7 @@ msgstr "Систем"
msgid "System Console"
msgstr "Системска конзола"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "Системски генерисана поља се не могу преименовати"
@@ -26090,6 +26288,7 @@ msgstr "Евиденције система"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26104,7 +26303,6 @@ msgstr "Евиденције система"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26180,6 +26378,11 @@ msgstr "Системска страница"
msgid "System Settings"
msgstr "Подешавање система"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr "Системски корисници"
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26196,6 +26399,12 @@ msgstr "Т"
msgid "TOS URI"
msgstr "URI услова коришћења"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26231,7 +26440,7 @@ msgstr "Табела"
msgid "Table Break"
msgstr "Прелом табеле"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Поље табеле"
@@ -26240,7 +26449,7 @@ msgstr "Поље табеле"
msgid "Table Fieldname"
msgstr "Назив поља табеле"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Назив поља табеле недостаје"
@@ -26258,7 +26467,7 @@ msgstr "HTML табеле"
msgid "Table MultiSelect"
msgstr "Вишеструки одабир у табели"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr "Вишеструки одабир у табели захтева табелу са најмање једним пољем са линком, али ниједно није пронађено у {0}"
@@ -26266,11 +26475,11 @@ msgstr "Вишеструки одабир у табели захтева таб
msgid "Table Trimmed"
msgstr "Скраћена табела"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Табела ажурирана"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Табела {0} не може бити празна"
@@ -26290,17 +26499,17 @@ msgid "Tag Link"
msgstr "Линк ознаке"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Ознаке"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Направи фотографију"
@@ -26384,7 +26593,7 @@ msgstr "Упозорења у шаблону"
msgid "Templates"
msgstr "Шаблони"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Привремено онемогућено"
@@ -26482,7 +26691,7 @@ msgstr "Хвала"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Аутоматско понављање за овај документ је онемогућено."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "CSV формат разликује велика и мала слова"
@@ -26538,7 +26747,7 @@ msgstr "API кључ за интернет претраживач добијен
"\"APIs & Services\" > \"Credentials\"\n"
""
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr "Промене су враћене на претходно стање."
@@ -26554,7 +26763,7 @@ msgstr "Коментар не може бити празан"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "Садржај овог имејла је строго поверљив. Молимо Вас да га не прослеђујете."
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Приказан број процена. Кликните овде да видите тачан број."
@@ -26580,11 +26789,15 @@ msgstr "Документ је додељен кориснику {0}"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "Изабрана врста документа је зависна табела, стога је потребна матична врста документа."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr "Дугме за имејл је омогућено кориснику у документу."
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr "Поље {0} у {1} не дозвољава игнорисање корисничких дозвола"
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr "Поље {0} у {1} води ка {2}, а не ка {3}"
@@ -26651,6 +26864,10 @@ msgstr "Број секунди до истека захтева"
msgid "The password of your account has expired."
msgstr "Лозинка за Ваш налог је истекла."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+msgstr "Дугме за штампу је омогућено кориснику у документу."
+
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
msgstr "Покренут је процес брисања података {0} повезаних са {1}."
@@ -26668,15 +26885,15 @@ msgstr "Број пројекта добијен путем Google Cloud кон
msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "Извештај који сте затражили је генерисан.
Кликните овде за преузимање:
{0}
Овај линк истиче за {1} сата."
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "Линк за ресетовање лозинке је истекао"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи"
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Ресурс који тражите није доступан"
@@ -26688,7 +26905,7 @@ msgstr "Улога {0} треба да буде прилагођена улог
msgid "The selected document {0} is not a {1}."
msgstr "Изабрани документ {0} није {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Систем се ажурира. Молимо Вас да освежите страницу за неколико тренутака."
@@ -26700,6 +26917,42 @@ msgstr "Систем нуди много унапред дефинисаних
msgid "The total number of user document types limit has been crossed."
msgstr "Укупан број корисничких врста докумената је премашен."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr "Корисник може креирати нову ставку, али не може уређивати постојеће ставке."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr "Корисник може обрисати документа у статусу нацрт / отказано."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr "Корисник може извозити податке из извештаја."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr "Корисник може увозити нове записе или ажурирати постојеће податке за документ."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr "Корисник може одабрати купца у продајној поруџбини, али не може отворити мастер податке купца."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr "Корисник може делити приступ документу са другим корисником."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr "Корисник може ажурирати купца или било које друго поље у постојећој продајној поруџбини, али не може креирати нову продајну поруџбину."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr "Корисник може прегледати излазне фактуре, али не може мењати вредности поља у њима."
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+msgstr "Вредност поља {0} је предугачка у документу {1}. Да бисте решили овај проблем, смањите дужину вредности или промените врсту поља {0} у дужи текст користећи прилагођавање обрасца, а затим покушајте поново."
+
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr "Унета вредност има {0} карактера. Максималан дозвољени број карактера је {1}."
@@ -26741,7 +26994,7 @@ msgstr "URL теме"
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Немате предстојећих догађаја."
@@ -26749,7 +27002,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "Већ постоји {0} са истим филтерима у реду чекања:"
@@ -26758,7 +27011,7 @@ msgstr "Већ постоји {0} са истим филтерима у реду
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "У веб-обрасцу може бити највише 9 поља за прелом странице"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "Може постојати само једно преклапање у обрасцу"
@@ -26770,11 +27023,11 @@ msgstr "Дошло је до грешке у шаблону адресе {0}"
msgid "There is no data to be exported"
msgstr "Нема података за извоз"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "Не постоји задатак под називом \"{}\""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Тренутно нема ничег новог да се прикаже."
@@ -26782,7 +27035,7 @@ msgstr "Тренутно нема ничег новог да се прикаже
msgid "There is some problem with the file url: {0}"
msgstr "Дошло је до проблема са URL адресом фајла: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "Већ постоји {0} са истим филтерима у реду чекања:"
@@ -26798,7 +27051,7 @@ msgstr "Дошло је до грешке приликом изградње ов
msgid "There was an error saving filters"
msgstr "Дошло је до грешке приликом чувања филтера"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Дошло је до грешака"
@@ -26806,11 +27059,11 @@ msgstr "Дошло је до грешака"
msgid "There were errors while creating the document. Please try again."
msgstr "Дошло је до грешака приликом креирања документа. Молимо Вас да покушате поново."
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "Дошло је до грешке приликом слања имејла. Молимо Вас да покушате поново."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Дошло је до грешака приликом постављања назива, молимо Вас да контактирате администратора"
@@ -26879,11 +27132,11 @@ msgstr "Ове године"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ова радња је неповратна. Да ли желите да наставите?"
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Ова радња је дозвољена само за {}"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ово се не може опозвати"
@@ -26907,7 +27160,7 @@ msgstr "Овај графикон ће бити доступан свим кор
msgid "This doctype has no orphan fields to trim"
msgstr "Овај доцтyпе нема неповезаних поља која треба уклонити"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "Овај доцтyпе има неизвршене миграције, покрените 'bench migrate' пре измене како бисте избегли губитак измена."
@@ -26923,15 +27176,15 @@ msgstr "Овај документ је већ стављен у ред за по
msgid "This document has been modified after the email was sent."
msgstr "Овај документ је измењен након што је имејл послат."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "Овај документ има несачуване измене које можда неће бити приказане у финалном PDF-у.
Препорука је да сачувате документ пре штампе."
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr "Овај документ је већ измењен и не може поново бити измењен"
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Овај документ је тренутно закључан и чека на извршење. Покушајте поново касније."
@@ -26945,7 +27198,7 @@ msgid "This feature can not be used as dependencies are missing.\n"
msgstr "Ова функционалност није доступна јер недостају зависности.\n"
"\t\t\t\tМолимо Вас да контактирате систем менаџера да омогући ову опцију тиме што ће инсталирати pycups!"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "Ова функционалност је нова и још увек је експериментална"
@@ -26973,11 +27226,11 @@ msgstr "Овај фајл је јаван и може му приступити
msgid "This file is public. It can be accessed without authentication."
msgstr "Овај фајл је јаван. Може му се приступити без аутентификације."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Овај образац је измењен након што је учитан"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "Овај образац није могуће уредити због радног тока."
@@ -26996,7 +27249,7 @@ msgstr "Овај провајдер геолокације још увек ни
msgid "This goes above the slideshow."
msgstr "Ово се приказује изнад презентације."
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај."
@@ -27038,15 +27291,15 @@ msgstr "Овај линк је већ активиран за верификац
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Овај линк је неважећи или је истекао. Проверите да ли сте га исправно унели."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Ово може бити одштампано на више страница"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Овај месец"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Овај извештај садржи {0} редова и превелики је за приказ у интернет претраживачу, уместо тога можете га {1}."
@@ -27054,7 +27307,7 @@ msgstr "Овај извештај садржи {0} редова и превел
msgid "This report was generated on {0}"
msgstr "Овај извештај је генерисан на {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Овај извештај је генерисан {0}."
@@ -27078,7 +27331,7 @@ msgstr "Овај софтвер је изграђен на основу број
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "Овај наслов ће бити коришћен као наслов веб-странице и у мета ознакама"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "Ова вредност је преузета из поља {1} објекта {0}"
@@ -27122,7 +27375,7 @@ msgstr "Ово ће ресетовати обилазак и приказати
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr "Ово ће тренутно прекинути задатак и може бити ризично, да ли сте сигурни?"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Загушено"
@@ -27153,6 +27406,7 @@ msgstr "Четвртак"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27160,6 +27414,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Време"
@@ -27242,11 +27497,6 @@ msgstr "Време {0} мора бити у формату: {1}"
msgid "Timed Out"
msgstr "Истекло"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr "Timeless Launchpad"
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Timeless Night"
@@ -27278,11 +27528,11 @@ msgstr "Линкови временског редоследа"
msgid "Timeline Name"
msgstr "Назив временског редоследа"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "Поље временског редоследа мора бити линк или динамички линк"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "Поље временског редоследа мора бити важећи назив поља"
@@ -27353,7 +27603,7 @@ msgstr "Савет: Испробајте нови падајући мени за
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27376,7 +27626,7 @@ msgstr "Поље за наслов"
msgid "Title Prefix"
msgstr "Префикс наслова"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Поље за наслов мора бити важећи назив поља"
@@ -27467,7 +27717,7 @@ msgstr "Да бисте извршили извоз овог корака као
msgid "To generate password click {0}"
msgstr "За генерисање лозинке кликните {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "За ажурирани извештај кликните на {0}."
@@ -27520,31 +27770,14 @@ msgstr "За урадити"
msgid "Today"
msgstr "Данас"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Пребаци графикон"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Пребаци у пуну ширину"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Пребаци у приказ мреже"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Пребаци бочну траку"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Промени тему"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27580,7 +27813,7 @@ msgid "Tomorrow"
msgstr "Сутра"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "Превише докумената"
@@ -27588,15 +27821,19 @@ msgstr "Превише докумената"
msgid "Too Many Requests"
msgstr "Превише захтева"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "Превише промена базе податка у једној радњи."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Превише задатака у позадини у реду чекања ({0}). Молимо Вас да покушате поново касније."
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr "Превише захтева. Молимо Вас да покушате поново касније."
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Превише корисника се регистровало у последње време, стога је регистрација привремено онемогућена. Покушајте поново за сат времена"
@@ -27652,10 +27889,10 @@ msgstr "Горе десно"
msgid "Topic"
msgstr "Тема"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Укупно"
@@ -27670,7 +27907,7 @@ msgstr "Укупно позадинских радника"
msgid "Total Errors (last 1 day)"
msgstr "Укупан број грешака (последњих 1 дан)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Укупно слика"
@@ -27772,7 +28009,7 @@ msgstr "Прати да ли је имејл отворен од стране п
msgid "Track milestones for any document"
msgstr "Прати кључне тачке документа"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL за праћење је генерисан и копиран у међуспремник"
@@ -27808,7 +28045,7 @@ msgstr "Транзиције"
msgid "Translatable"
msgstr "Могуће превођење"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "Преведи податке"
@@ -27819,7 +28056,7 @@ msgstr "Преведи податке"
msgid "Translate Link Fields"
msgstr "Преведи поља са линковима"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Преведи вредности"
@@ -27855,7 +28092,7 @@ msgstr "Смеће"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "Стабло"
@@ -27904,8 +28141,8 @@ msgstr "Покушајте поново"
msgid "Try a Naming Series"
msgstr "Испробајте серију именовања"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Испробајте нови дизајнер штампе"
@@ -27951,6 +28188,7 @@ msgstr "Метод двофакторске аутентификације"
#. 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 'Event Notifications'
#. 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'
@@ -27964,6 +28202,7 @@ msgstr "Метод двофакторске аутентификације"
#: 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/event_notifications/event_notifications.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
@@ -27972,7 +28211,7 @@ msgstr "Метод двофакторске аутентификације"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28140,7 +28379,7 @@ msgstr "UTM извор"
msgid "UUID"
msgstr "UUID"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "Престанак праћења документа {0}"
@@ -28148,7 +28387,7 @@ msgstr "Престанак праћења документа {0}"
msgid "Unable to find DocType {0}"
msgstr "Није могуће пронаћи DocType {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Није могуће учитати камеру."
@@ -28164,7 +28403,7 @@ msgstr "Није могуће отворити приложени фајл. Да
msgid "Unable to read file format for {0}"
msgstr "Није могуће прочитати формат фајла за {0}"
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "Није могуће послати имејл због недостајућег имејл налога. Молимо Вас да поставите подразумевани налог у Подешавањима > Имејл налог"
@@ -28185,20 +28424,20 @@ msgstr "Уклони додељивање услова"
msgid "Uncaught Exception"
msgstr "Неухваћени изузетак"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Неизмењено"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Поништи"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Поништи последњу радњу"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Заустави праћење"
@@ -28274,9 +28513,10 @@ msgstr "Послата обавештења о непрочитаним"
msgid "Unsafe SQL query"
msgstr "Несигуран SQL упит"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "Поништи одабир свега"
@@ -28309,11 +28549,11 @@ msgstr "Параметри отказивања претплате"
msgid "Unsubscribed"
msgstr "Отказана претплата"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr "Неподржана функција или оператор: {0}"
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr "Неподржано {0}: {1}"
@@ -28333,7 +28573,7 @@ msgstr "Издвојени {0} фајлови"
msgid "Unzipping files..."
msgstr "Издвајање фајлова..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Предстојећи догађаји за данас"
@@ -28341,13 +28581,13 @@ msgstr "Предстојећи догађаји за данас"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Ажурирај"
@@ -28418,7 +28658,7 @@ msgstr "Ажурирај вредност"
msgid "Update from Frappe Cloud"
msgstr "Ажурирај из Frappe Cloud-а"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "Ажурирај {0} записа"
@@ -28426,8 +28666,7 @@ msgstr "Ажурирај {0} записа"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Ажурирано"
@@ -28439,11 +28678,11 @@ msgstr "Успешно ажурирано"
msgid "Updated To A New Version 🎉"
msgstr "Ажурирано на нову верзију 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Успешно ажурирано"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Ажурирање"
@@ -28468,11 +28707,11 @@ msgstr "Ажурирање глобалних подешавања"
msgid "Updating naming series options"
msgstr "Ажурирање опција за серију именовања"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "Ажурирање повезаних поља..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Ажурирање {0}"
@@ -28480,12 +28719,12 @@ msgstr "Ажурирање {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "Ажурирање {0} од {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "Надоградња плана"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28533,6 +28772,7 @@ msgstr "Користите први дан периода"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "Користите HTML"
@@ -28604,7 +28844,7 @@ msgstr "Користите уколико подразумевана подеш
msgid "Use of sub-query or function is restricted"
msgstr "Коришћење подупита или функције је ограничено"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Користите нови алат за креирање формата за штампу"
@@ -28638,9 +28878,8 @@ msgstr "Коришћен OAuth"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28667,11 +28906,11 @@ msgstr "Коришћен OAuth"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28807,7 +29046,7 @@ msgstr "Слика корисника"
msgid "User Invitation"
msgstr "Позивница кориснику"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Мени корисника"
@@ -28823,19 +29062,19 @@ msgid "User Permission"
msgstr "Корисничка дозвола"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Корисничке дозволе"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Корисничке дозволе"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "Корисничке дозволе се користе за ограничавање корисника на одређене записе."
@@ -28908,7 +29147,7 @@ msgstr "Корисник може да се пријави помоћу имеј
msgid "User can login using Email id or User Name"
msgstr "Корисник може да се пријави помоћу имејл адресе или корисничког имена"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "Корисник не постоји."
@@ -28942,27 +29181,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Корисник {0} не може бити обрисан"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Корисник {0} не може бити онемогућен"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Корисник {0} не може бити преименован"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "Корисник {0} нема приступ овом документу"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Корисник {0} нема приступ DocType путем дозволе улоге за документ {1}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "Корисник {0} нема дозволу да креира радни простор."
@@ -28971,11 +29210,11 @@ msgstr "Корисник {0} нема дозволу да креира радн
msgid "User {0} has requested for data deletion"
msgstr "Корисник {0} је затражио брисање података"
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "Корисник {0} се представља као {1}"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Корисник {0} је онемогућен"
@@ -29000,18 +29239,17 @@ msgstr "URI са подацима о кориснику"
msgid "Username"
msgstr "Корисничко име"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Корисничко име {0} већ постоји"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29082,7 +29320,7 @@ msgstr "Валидирај Frappe подешавање имејла"
msgid "Validate SSL Certificate"
msgstr "Валидирај SSL сертификат"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Грешка при валидацији"
@@ -29111,7 +29349,7 @@ msgstr "Важење"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29138,15 +29376,19 @@ msgstr "Вредност промењена"
msgid "Value To Be Set"
msgstr "Вредност коју треба поставити"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr "Вредност је предугачка"
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Вредност се не може променити за {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Вредност не може бити негативна за"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Вредност не може бити негативна за {0}: {1}"
@@ -29158,7 +29400,7 @@ msgstr "Вредност за поље избора може бити само 0
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Вредност за поље {0} у {1} је предугачка. Дужина треба да буде мања од {2} карактера"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "Вредност за {0} не може бити листа"
@@ -29183,7 +29425,13 @@ msgstr "Вредност \"None\" указује на јавног клијен
msgid "Value to Validate"
msgstr "Вредност за валидацију"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr "Вредност која се поставља када се примени ово стање радног тока. Користите обичан текст (нпр. Одобрено) или израз уколико је омогућено “Евалуирај као израз“."
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Вредност је превелика"
@@ -29200,7 +29448,7 @@ msgstr "Вредност {0} мора бити у важећем формату
msgid "Value {0} must in {1} format"
msgstr "Вредност {0} мора бити у {1} формату"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Промењене вредности"
@@ -29209,11 +29457,11 @@ msgstr "Промењене вредности"
msgid "Verdana"
msgstr "Вердана"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Верификација"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Верификациони код"
@@ -29221,7 +29469,7 @@ msgstr "Верификациони код"
msgid "Verification Link"
msgstr "Верификациони линк"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "Верификациони имејл са кодом није послат. Молимо Вас контактирајте администратора."
@@ -29235,7 +29483,7 @@ msgid "Verified"
msgstr "Верификовано"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Верификуј"
@@ -29271,7 +29519,7 @@ msgstr "Приказ"
msgid "View All"
msgstr "Прикажи све"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "Прикажи историју измена"
@@ -29283,7 +29531,7 @@ msgstr "Прикажи DocType дозволе"
msgid "View File"
msgstr "Прикажи фајл"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Прикажи целу евиденцију"
@@ -29320,7 +29568,7 @@ msgstr "Прикажи извештај"
msgid "View Settings"
msgstr "Прикажи подешавања"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr "Приказ бочне траке"
@@ -29329,14 +29577,11 @@ msgstr "Приказ бочне траке"
msgid "View Switcher"
msgstr "Прикажи преклопник"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "Прикажи веб-сајт"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr "Прикажи све {0} кориснике"
@@ -29352,7 +29597,7 @@ msgstr "Прикажи извештај у интернет претражива
msgid "View this in your browser"
msgstr "Прикажи ово у интернет претраживачу"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Прикажите Ваш одговор"
@@ -29388,7 +29633,7 @@ msgstr "Виртуелни DocType {} захтева статичку метод
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "Виртуелни DocType {} захтева редефинисање инстанце методе {} пронађене у {}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr "Виртуелне табеле морају бити виртуелна поља"
@@ -29436,7 +29681,7 @@ msgstr "Складиште"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Упозорење"
@@ -29445,7 +29690,7 @@ msgstr "Упозорење"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "Упозорење: ГУБИТАК ПОДАТАКА НЕИЗБЕЖАН! Наставак ће трајно обрисати следеће колоне базе података из DocType-а {0}:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Упозорење: Именовање није постављено"
@@ -29529,7 +29774,7 @@ msgstr "Веб-страница"
msgid "Web Page Block"
msgstr "Блок веб-странице"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "URL веб-странице"
@@ -29626,7 +29871,7 @@ msgstr "URL Webhook-а"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29681,7 +29926,7 @@ msgstr "Скрипта веб-сајта"
msgid "Website Search Field"
msgstr "Поље за претрагу на веб-сајту"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Поље за претрагу на веб-сајту мора бити важећи назив поља"
@@ -29746,6 +29991,11 @@ msgstr "Линк слике у теми веб-сајта"
msgid "Website Themes Available"
msgstr "Доступне теме веб-сајта"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr "Корисници веб-сајта"
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29833,15 +30083,15 @@ msgstr "URL за добродошлицу"
msgid "Welcome Workspace"
msgstr "Добро дошли у радни простор"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "Имејл добродошлице је послат"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Добро дошли у {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Шта је ново"
@@ -29863,10 +30113,6 @@ msgstr "Приликом слања докумената путем имејла
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr "Приликом отпремања фајлова, приморај коришћење снимања путем интернет претраживача. Уколико није укључено, користиће се подразумевана камера мобилног уређаја када се препозна мобилни приступ."
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr "Када измените документ након што је отказан и сачуван, добиће нови број који представља верзију старог броја."
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29884,7 +30130,7 @@ msgstr "На који приказ повезане врсте DocType треб
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Ширина"
@@ -30005,6 +30251,10 @@ msgstr "Детаљи радног тока"
msgid "Workflow Document State"
msgstr "Стање документа у радном току"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr "Грешка у евалуацији радног тока"
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -30022,11 +30272,11 @@ msgstr "Стање радног тока"
msgid "Workflow State Field"
msgstr "Поље стања радног тока"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Стање радног тока није постављено"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Транзиција стања радног тока није дозвољена са {0} на {1}"
@@ -30034,7 +30284,7 @@ msgstr "Транзиција стања радног тока није дозв
msgid "Workflow States Don't Exist"
msgstr "Стања радног тока не постоје"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Статус радног тока"
@@ -30069,18 +30319,15 @@ msgstr "Радни ток је успешно ажуриран"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Радни простор"
@@ -30107,7 +30354,6 @@ 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 "Менаџер радног простора"
@@ -30121,27 +30367,15 @@ msgstr "Бројчана картица радног простора"
msgid "Workspace Quick List"
msgstr "Брза листа радног простора"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "Подешавање радног простора"
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr "Поставке радног простора завршене"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Пречица до радног простора"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr "Бочна трака радног простора"
@@ -30151,13 +30385,7 @@ msgstr "Бочна трака радног простора"
msgid "Workspace Sidebar Item"
msgstr "Ставка бочне траке радног простора"
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr "Видљивост радног простора"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "Радни простор {0} је креиран"
@@ -30186,11 +30414,12 @@ msgstr "Завршавање"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "Измена"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Погрешна вредност у пољу преузми из"
@@ -30208,7 +30437,7 @@ msgstr "X поље"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr "XMLHttpRequest Грешка"
@@ -30223,7 +30452,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y поље"
@@ -30271,10 +30500,14 @@ msgstr "Жута"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30283,10 +30516,10 @@ msgstr "Жута"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Да"
@@ -30322,7 +30555,7 @@ msgstr "Додали сте 1 ред у {0}"
msgid "You added {0} rows to {1}"
msgstr "Додали сте {0} редова у {1}"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "Покушавате да отворите екстерни линк. Да потврдите, кликните поново на линк."
@@ -30330,7 +30563,7 @@ msgstr "Покушавате да отворите екстерни линк. Д
msgid "You are connected to internet."
msgstr "Повезани сте на интернет."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "Пријављени сте као други корисник."
@@ -30338,11 +30571,11 @@ msgstr "Пријављени сте као други корисник."
msgid "You are not allowed to access this resource"
msgstr "Немате дозволу да приступите овом ресурсу"
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
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:426
+#: frappe/permissions.py:432
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}"
@@ -30365,7 +30598,7 @@ msgstr "Немате дозволу да уређујете извештај."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "Немате дозволу да извезете DocType {}"
@@ -30373,10 +30606,14 @@ msgstr "Немате дозволу да извезете DocType {}"
msgid "You are not allowed to print this report"
msgstr "Немате дозволу да одштампате овај извештај"
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr "Немате дозволу да пошаљете имејл везан за овај документ"
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr "Није Вам дозвољено ажурирање статуса овог догађаја."
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Немате дозволу да ажурирате овај документ веб-обрасца"
@@ -30393,7 +30630,7 @@ msgstr "Није Вам дозвољено да приступите овој с
msgid "You are not permitted to access this page."
msgstr "Немате дозволу да приступите овој страници."
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "Немате дозволу за приступ овом ресурсу. Пријавите се за приступ"
@@ -30401,7 +30638,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Дозвољено Вам је да ажурирате редослед, немојте уклањати или додавати апликације."
@@ -30414,7 +30651,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "Приложили сте {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Можете додати динамичке особине из документа користећи јиња шаблонски језик."
@@ -30438,10 +30675,6 @@ msgstr "Такође можете копирати и налепити овај
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "Можете замолити свој тим да поново пошаље позивницу уколико и даље желе да се придружите."
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "Можете променити поднета документа тако што ћете их прво отказати, а затим изменити."
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "Можете променити политику чувања података у {0}."
@@ -30496,7 +30729,7 @@ msgstr "Можете поставити вишу вредност овде ук
msgid "You can try changing the filters of your report."
msgstr "Можете покушати да промените филтере Вашег извештаја."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Можете користити прилагоди образац за постављање нивоа на пољима."
@@ -30526,6 +30759,10 @@ msgstr "Отказали сте овај документ {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Не можете креирати графикон контролне табле из једног DocType-а"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr "Не можете делити `{0}` на {1} `{2}` јер немате `{0}` дозволу на `{1}`"
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Не можете уклонити опцију 'Искључиво за читање' за поље {0}"
@@ -30552,7 +30789,6 @@ msgid "You changed {0} to {1}"
msgstr "Променили сте {0} у {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "Креирали сте ово"
@@ -30561,11 +30797,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "Ви сте креирали овај документ {0}"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "Немате дозволу за читање или избор за {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Немате довољно дозвола за приступ овом ресурсу. Обратите се свом менаџеру за приступ."
@@ -30577,15 +30809,19 @@ msgstr "Немате довољно дозвола да довршите ову
msgid "You do not have import permission for {0}"
msgstr "Немате дозволу за увоз за {0}"
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr "Немате дозволу за приступ пољу у зависној табели: {0}"
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "Немате дозволу за приступ пољу: {0}"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "Немате дозволу за приступ {0}: {1}."
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Немате дозволу да откажете све повезане документе."
@@ -30621,7 +30857,7 @@ msgstr "Успешно сте ођављени"
msgid "You have hit the row size limit on database table: {0}"
msgstr "Достигли сте ограничење броја редова у табели базе података: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Нисте унели вредност. Поље ће бити постављено као празно."
@@ -30641,7 +30877,7 @@ msgstr "Имате непрочитано {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Још увек нисте додали графиконе или бројчане картице на контролну таблу."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "Још увек нисте креирали {0}"
@@ -30650,7 +30886,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Достигли сте ограничење броја захтева због превеликог броја захтева. Молимо Вас покушајте поново касније."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Ви сте последњи пут ово уредили"
@@ -30666,12 +30901,12 @@ msgstr "Морате бити пријављени да бисте корист
msgid "You must login to submit this form"
msgstr "Морате бити пријављени да бисте поднели овај образац"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Неопходна Вам је дозвола '{0}' на {1} {2} да бисте извршили ову радњу."
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Морате бити менаџер радног простора да бисте обрисали јавни радни простор."
@@ -30679,7 +30914,7 @@ msgstr "Морате бити менаџер радног простора да
msgid "You need to be Workspace Manager to edit this document"
msgstr "Морате бити менаџер радног простора да бисте уредили овај документ"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Морате бити системски корисник да бисте приступили овој страници."
@@ -30711,7 +30946,7 @@ msgstr "Морате омогућити JavaScript да би Ваша аплик
msgid "You need to have \"Share\" permission"
msgstr "Морате имати дозволу за \"Дељење\""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Морате да инсталирате пyцупс да бисте користили ову могућност!"
@@ -30731,7 +30966,7 @@ msgstr "Потребна Вам је дозвола за измену на {0} {
msgid "You need write permission on {0} {1} to rename"
msgstr "Потребна Вам је дозвола за измену на {0} {1} за преименовање"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "Потребна Вам је дозвола {0} да бисте преузели вредности из {1} {2}"
@@ -30778,7 +31013,7 @@ msgstr "Престали сте да пратите овај документ"
msgid "You viewed this"
msgstr "Прегледали сте ово"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "Бићете преусмерени на:"
@@ -30855,7 +31090,7 @@ msgstr "Ваша имејл адреса"
msgid "Your exported report: {0}"
msgstr "Ваш извештај који сте извезли: {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Ваш образац је успешно ажуриран"
@@ -30897,7 +31132,7 @@ msgstr "Ваш извештај се генерише у позадини. До
msgid "Your session has expired, please login again to continue."
msgstr "Ваша сесија је истекла, молимо Вас да се пријавите поново да бисте наставили."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "Ваш сајт је тренутно на одржавању или се ажурира."
@@ -30919,7 +31154,7 @@ msgstr "Нула значи послати записе који су ажури
msgid "[Action taken by {0}]"
msgstr "[Радња предузета од стране {0}]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator` ради само са `as_list=True` или `as_dict=True`"
@@ -30938,7 +31173,7 @@ msgstr "афтеринсерт"
msgid "amend"
msgstr "измени"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "и"
@@ -30961,7 +31196,7 @@ msgstr "по улози"
msgid "cProfile Output"
msgstr "cProfile излаз"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "календар"
@@ -30977,7 +31212,9 @@ msgid "canceled"
msgstr "отказано"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "chrome"
@@ -31001,7 +31238,7 @@ msgid "cyan"
msgstr "цијан"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "д"
@@ -31059,7 +31296,7 @@ msgstr "обриши"
msgid "descending"
msgstr "опадајуће"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "врста документа...,нпр. купац"
@@ -31069,7 +31306,7 @@ msgstr "врста документа...,нпр. купац"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "нпр. \"Подршка\", \"Продаја\", \"Петар Петровић\""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "нпр. (55 + 434) / 4 или =Math.sin(Math.PI/2)..."
@@ -31111,12 +31348,16 @@ msgstr "emacs"
msgid "email"
msgstr "имејл"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "пријемна пошта имејла"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "празно"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "празно"
@@ -31172,12 +31413,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip није пронађен у PATH! Ово је неопходно за прављење резервне копије."
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "х"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "hub"
@@ -31192,6 +31433,20 @@ msgstr "иконица"
msgid "import"
msgstr "увоз"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr "је онемогућено"
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr "је омогућено"
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "jane@example.com"
@@ -31231,16 +31486,11 @@ msgid "long"
msgstr "дуго"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr "macOS Launchpad"
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "спојено {0} у {1}"
@@ -31259,15 +31509,15 @@ msgstr "mm-dd-yyyy"
msgid "mm/dd/yyyy"
msgstr "mm/dd/yyyy"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "назив модула..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "ново"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "нова врста документа"
@@ -31329,7 +31579,7 @@ msgstr "on_update"
msgid "on_update_after_submit"
msgstr "on_update_after_submit"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "или"
@@ -31402,7 +31652,7 @@ msgid "restored {0} as {1}"
msgstr "враћено {0} као {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -31486,11 +31736,11 @@ msgstr "текстуална вредност, нпр. {0} или uid={0},ou=use
msgid "submit"
msgstr "поднеси"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "назив ознаке..., нпр. #ознака"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "тексту у врсти документа"
@@ -31588,11 +31838,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "када се кликне на елемент, фокусираће се на искачућу поруку уколико је присутна."
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (са исправљеним qt)."
@@ -31628,11 +31880,11 @@ msgstr "yyyy-mm-dd"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : vrsta}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31649,8 +31901,8 @@ msgstr "{0} ({1}) (1 ред обавезан)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31663,13 +31915,13 @@ msgid "{0} Chart"
msgstr "{0} графикон"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} контролна табла"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31703,11 +31955,11 @@ msgstr "{0} М"
msgid "{0} Map"
msgstr "{0} мапа"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} назив"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} није дозвољено мењати {1}, након што је поднето од {2} за {3}"
@@ -31715,7 +31967,7 @@ msgstr "{0} није дозвољено мењати {1}, након што је
msgid "{0} Report"
msgstr "{0} извештај"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} извештаји"
@@ -31728,11 +31980,11 @@ msgid "{0} Tree"
msgstr "{0} стабло"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} прегледа веб-странице"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} додато"
@@ -31794,7 +32046,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} је отказао овај документ {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} не може бити измењен јер није отказан. Молимо Вас да откажете документ пре него што направите измену."
@@ -31823,16 +32075,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} је променио {1} у {2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0} садржи неважећи израз функције преузми из, функција преузми из не може бити самореференцијална."
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr "{0} садржи {1}"
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} је успешно креирано"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "{0} је креирао ово"
@@ -31849,11 +32104,19 @@ msgstr "{0} д"
msgid "{0} days ago"
msgstr "пре {0} дана"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr "{0} не садржи {1}"
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{0} не постоји у реду {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr "{0} је једнако {1}"
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} поље не може бити постављено као јединствено у {1}, јер постоје нејединствене постојеће вредности"
@@ -31878,7 +32141,7 @@ msgstr "{0} х"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} је већ доделио подразумевану вредност за {1}."
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr "{0} садржи неважећу backtick нотацију: {1}"
@@ -31899,7 +32162,11 @@ msgstr "{0} уколико нисте преусмерени унутар {1} с
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} у реду {1} не може имати URL и зависне ставке"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr "{0} је потомак {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} је обавезно поље"
@@ -31907,7 +32174,15 @@ msgstr "{0} је обавезно поље"
msgid "{0} is a not a valid zip file"
msgstr "{0} није важећи зип фајл"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr "{0} је након {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr "{0} је надређен {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} није важеће поље за податак."
@@ -31915,6 +32190,15 @@ msgstr "{0} није важеће поље за податак."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} није важећа имејл адреса у 'Примаоци'"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr "{0} је пре {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr "{0} је између {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} је између {1} и {2}"
@@ -31924,22 +32208,36 @@ msgstr "{0} је између {1} и {2}"
msgid "{0} is currently {1}"
msgstr "{0} је тренутно {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr "{0} је онемогућен"
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr "{0} је омогућен"
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} је једнако {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} је веће или једнако {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} је веће од {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} је мање или једнако {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} је мање од {1}"
@@ -31952,10 +32250,14 @@ msgstr "{0} је као {1}"
msgid "{0} is mandatory"
msgstr "{0} је обавезно"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "{0} није зависна табела од {1}"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant 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}"
@@ -31972,12 +32274,12 @@ msgstr "{0} није важећи календар. Преусмеравање
msgid "{0} is not a valid Cron expression."
msgstr "{0} није важећи Црон израз."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} није важећи DocType или динамички линк"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} није важећа имејл адреса"
@@ -31985,23 +32287,23 @@ msgstr "{0} није важећа имејл адреса"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} није важећа ISO 3166 ALPHA-2 шифра."
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} није важећи назив"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} није важећи број телефона"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} није важеће стање радног тока. Молимо Вас да ажурирате свој радни ток и покушате поново."
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} није важећи матични DocType за {1}"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} није важеће матично поље за {1}"
@@ -32017,6 +32319,11 @@ msgstr "{0} није зип фајл"
msgid "{0} is not an allowed role for {1}"
msgstr "{0} није дозвољена улога за {1}"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr "{0} није надређен {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} није једнако {1}"
@@ -32025,10 +32332,12 @@ msgstr "{0} није једнако {1}"
msgid "{0} is not like {1}"
msgstr "{0} није као {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} није један од {1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} није постављен"
@@ -32037,36 +32346,50 @@ msgstr "{0} није постављен"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} је сада подразумевани формат за штампање за {1} доцтyпе"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr "{0} је на или након {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr "{0} је на или пре {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} је једно од {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} је неопходно"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} је постављено"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} је унутар {1}"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr "{0} је {1}"
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "одабрано {0} ставки"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} се управо представио као Ви. Навео је следећи разлог: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} је последњи пут ово уредио"
@@ -32094,35 +32417,35 @@ msgstr "пре {0} минута"
msgid "{0} months ago"
msgstr "пре {0} месеци"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} мора бити након {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} мора почињати са '{1}'"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} мора бити једнако '{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} не сме бити ниједно од {1}"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} мора бити један од {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} мора прво бити постављено"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} мора бити јединствено"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} мора бити {1} {2}"
@@ -32139,11 +32462,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} се не може преименовати"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} од {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} од {1} ({2} редова са зависним подацима)"
@@ -32172,7 +32495,7 @@ msgstr "{0} записа се чува {1} дана."
msgid "{0} records deleted"
msgstr "{0} записа обрисано"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} записа ће бити извезено"
@@ -32197,7 +32520,7 @@ msgstr "{0} је уклонио {1} редова из {2}"
msgid "{0} role does not have permission on any doctype"
msgstr "Улога {0} нема дозволе ни за једну врсту документа"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} ред#{1}:"
@@ -32211,7 +32534,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0} редова у {1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} је успешно сачувано"
@@ -32219,7 +32542,7 @@ msgstr "{0} је успешно сачувано"
msgid "{0} self assigned this task: {1}"
msgstr "{0} је себи доделио овај задатак: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} је поделио документ {1} {2} са Вама"
@@ -32287,7 +32610,7 @@ msgstr "{0} w"
msgid "{0} weeks ago"
msgstr "пре {0} недеља"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr "{0} са улогом {1}"
@@ -32299,7 +32622,7 @@ msgstr "{0} y"
msgid "{0} years ago"
msgstr "пре {0} година"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} је додат"
@@ -32307,11 +32630,11 @@ msgstr "{0} {1} је додат"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} је додат на контролну таблу {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} већ постоји"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} не може бити \"{2}\". Требало би да буде једно од \"{3}\""
@@ -32323,11 +32646,11 @@ msgstr "{0} {1} не може бити крајњи чвор јер има за
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} не постоји, изаберите ново тачку за спајање"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} је повезан са следећим поднетим документима: {2}"
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} није пронађен"
@@ -32335,87 +32658,59 @@ msgstr "{0} {1} није пронађен"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Поднети запис не може бити обрисан. Прво морате {2} отказати {3}."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, ред {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} завршено | Оставите ову картицу отвореном док се процес не заврши."
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) ће бити скраћено, јер је максималан број дозвољених карактера {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Не може се поставити измена без отказивања"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Не може се поставити додељена измена уколико није могуће поднети"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Не може се поставити додељено подношење уколико није могуће поднети"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Не може се поставити отказивање без подношења"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Не може се поставити увоз без креирања"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Не може се поставити подношење, отказивање или допуна без измене"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Не може се поставити увоз као {1} јер није могуће увести"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Неуспешно додавање новог понављајућег документа. Да бисте омогућили додавање документа у имејл аутоматска обавештења, омогућите {1} у подешавањима штампе"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: Поље '{1}' не може бити постављено као јединствено јер садржи нејединствене вредности"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: Поље {1} у реду {2} не може бити сакривено и обавезно без подразумеване вредности"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Поље {1} врсте {2} не може бити обавезно"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Назив поља {1} се појављује више пута у редовима {2}"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Врста поља {1} за {2} не може бити јединствено"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Основне дозволе нису постављене"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Искључиво је дозвољено само једно правило са истом улогом, нивоом и {1}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Опције морају да буду валидни DocType за поље {1} у реду {2}"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: Опције су обавезне за врсту поља линк или табела {1} у реду {2}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Опције {1} морају бити исте као назив DocType-а {2} за поље {3}"
@@ -32423,15 +32718,59 @@ msgstr "{0}: Опције {1} морају бити исте као назив D
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Могу се применити и друга правила дозвола"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Дозвола на нивоу 0 мора бити постављена пре виших нивоа"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: Дозвола за 'Измени' не може бити додељена за DocType који се не може поднети."
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: Дозвола за 'Измени' не може бити додељена без дозволе 'Креирај'."
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr "{0}: Дозвола за 'Откажи' не може бити додељена без дозволе 'Поднеси'."
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Дозвола за 'Извоз' је уклоњена јер не може бити додељена за јединствени DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr "{0}: Дозвола за 'Увоз' не може бити додељена за DocType који се не може увозити."
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: Дозвола за 'Увоз' не може бити додељена без дозволе 'Креирај'."
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Дозвола за 'Увоз' је уклоњена јер не може бити додељена за јединствени DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Дозвола за 'Извештај' је уклоњена јер не може бити додељена за јединствени DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: Дозвола за 'Поднеси' не може бити додељена за DocType који се не може поднети."
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr "{0}: Дозволе 'Поднеси', 'Откажи' и 'Измени' не могу бити додељене без дозволе 'Измена'."
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: Можете повећати ограничење за ово поље уколико је потребно путем {1}"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr "{0}: Назив поља не може бити постављен на резервисано поље {1} у DocType-у"
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: назив поља не сме да садржи резервисане речи {1}"
@@ -32444,15 +32783,15 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} је постављено на стање {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} у односу на {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}: назив поља {1} за {2} не може бити индексиран"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} сачувано"
@@ -32472,11 +32811,11 @@ msgstr "{count} ред изабран"
msgid "{count} rows selected"
msgstr "{count} редова изабрано"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} није исправан формат назива поља. Требало би да буде {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} завршено"
diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po
index 7186898c75..bcb4d446a7 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-25 20:45\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:51\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "\"Matični\" označava matičnu tabelu u koju se ovaj red mora dodati"
msgid "\"Team Members\" or \"Management\""
msgstr "\"Članovi tima\" ili \"Menadžment\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "Polje \"Izmenjeno iz\" mora postojati da bi se izvršila promena."
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. and contributors"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr "'*' je dozvoljeno samo u {0} SQL funkcijama"
@@ -74,7 +74,7 @@ msgstr "'*' je dozvoljeno samo u {0} SQL funkcijama"
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "'U globalnoj pretrazi' nije dozvoljeno za polje {0} vrste {1}"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "'U globalnoj pretrazi' nije dozvoljeno za vrstu {0} u redu {1}"
@@ -90,19 +90,19 @@ msgstr "'U prikazu liste' nije dozvoljeno za vrstu {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primaoci' nisu navedeni"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' nije važeći IBAN"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' nije dozvoljen za vrstu {1} u redu {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Obavezno)"
@@ -148,7 +148,7 @@ msgstr "0 - previše lako za naslutiti: Rizična lozinka.\n"
msgid "0 is highest"
msgstr "0 je najviše"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = tačno i 0 = netačno"
@@ -167,7 +167,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:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 izveštaj"
@@ -198,7 +198,7 @@ msgstr "pre 1 mesec"
msgid "1 of 2"
msgstr "1 оd 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 zapis će biti izvezen"
@@ -779,7 +779,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
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"
@@ -793,7 +793,7 @@ msgstr "Jedna instanca Frappe Framework može funkcionisati i kao OAuth klijent,
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "Link za preuzimanje Vaših podataka biće poslat na imejl adresu povezanu sa Vašim nalogom."
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "Polje sa nazivom {0} već postoji u {1}"
@@ -1114,7 +1114,7 @@ msgstr "Radnja / Putanja"
msgid "Action Complete"
msgstr "Radnja završena"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Radnja neuspešna"
@@ -1163,13 +1163,13 @@ msgstr "Radnje {0} nije uspela na {1} {2}. Pregledajte je {3}"
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Radnje"
@@ -1226,20 +1226,20 @@ msgstr "Aktivnost"
msgid "Activity Log"
msgstr "Dnevnik aktivnosti"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Dodaj"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Dodaj / Ukloni kolone"
@@ -1247,11 +1247,11 @@ msgstr "Dodaj / Ukloni kolone"
msgid "Add / Update"
msgstr "Dodaj / Ažuriraj"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Dodaj novo pravilo"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Dodaj prilog"
@@ -1271,11 +1271,15 @@ msgstr "Dodaj ivicu na dnu"
msgid "Add Border at Top"
msgstr "Dodaj ivicu na vrhu"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr "Dodaj CSS"
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Dodaj karticu na kontrolnu tablu"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Dodaj grafikon na kontrolnu tablu"
@@ -1284,8 +1288,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:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1329,11 +1333,7 @@ msgstr "Dodaj grupu"
msgid "Add Indexes"
msgstr "Dodaj indekse"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Dodaj višestruko"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Dodaj novo pravilo dozvole"
@@ -1346,17 +1346,13 @@ msgstr "Dodaj korisnike"
msgid "Add Query Parameters"
msgstr "Dodaj parametre upita"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Dodaj uloge"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Dodaj potpis"
@@ -1375,16 +1371,16 @@ msgstr "Dodaj prostor na vrhu"
msgid "Add Subscribers"
msgstr "Dodaj pretplatnike"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Dodaj oznake"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Dodaj oznake"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Dodaj šablon"
@@ -1434,19 +1430,19 @@ msgstr "Dodaj komentar"
msgid "Add a new section"
msgstr "Dodaj novi odeljak"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Dodaj red iznad trenutnog reda"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Dodaj red na dnu"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Dodaj red na vrhu"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Dodaj red ispod trenutnog reda"
@@ -1464,6 +1460,10 @@ msgstr "Dodaj kolonu"
msgid "Add field"
msgstr "Dodaj polje"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr "Dodaj više"
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1477,6 +1477,10 @@ msgstr "Dodaj brojeve ili specijalne karaktere."
msgid "Add page break"
msgstr "Dodaj prelom stranice"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr "Dodaj red"
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Dodaj skriptu za zavisnu tabelu"
@@ -1495,7 +1499,7 @@ msgid "Add tab"
msgstr "Dodaj karticu"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Dodaj na kontrolnu tablu"
@@ -1535,8 +1539,8 @@ msgstr "Dodat HTML u odeljak <head> veb-stranice, prvenstveno za verifikac
msgid "Added default log doctypes: {}"
msgstr "Podrazumevani dnevnici doctype-ova dodati: {}"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Dodato {0} ({1})"
@@ -1626,7 +1630,7 @@ msgstr "Dodaje prilagođenu klijentsku skriptu u DocType"
msgid "Adds a custom field to a DocType"
msgstr "Dodaje prilagođeno polje u DocType"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Administracija"
@@ -1653,15 +1657,15 @@ msgstr "Administracija"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Administrator prijavljen"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator je pristupio {0} dana {1} putem IP adrese {2}."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "Administrator ne može da prati"
@@ -1678,8 +1682,8 @@ msgstr "Napredno"
msgid "Advanced Control"
msgstr "Napredna kontrola"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Napredna pretraga"
@@ -1760,7 +1764,7 @@ msgstr "Polje za agregatnu funkciju je neophodno za kreiranje grafikona na kontr
msgid "Alert"
msgstr "Upozorenje"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr "Pseudonim mora biti tekst"
@@ -1784,6 +1788,15 @@ msgstr "Poravnaj udesno"
msgid "Align Value"
msgstr "Poravnaj vrednosti"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr "Poravnanje"
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1816,7 +1829,7 @@ msgstr "Sve"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Svi dani"
@@ -1828,11 +1841,11 @@ msgstr "Sve slike priložene na veb-sajt prezentaciji treba da budu javne"
msgid "All Records"
msgstr "Svi zapisi"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "Sve podneseno"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "Sva prilagođavanja će biti uklonjena. Molimo Vas da potvrdite."
@@ -2144,7 +2157,7 @@ msgstr "Dozvoljene uloge"
msgid "Allowed embedding domains"
msgstr "Dozvoljeni umetni domeni"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Dozvoljavanje DocType, DocType. Budite oprezni!"
@@ -2178,13 +2191,61 @@ msgstr "Omogućava klijentima da ovo vide kao autorizacioni server prilikom upit
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."
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr "Dozvoljava štampanje ili preuzimanje PDF dokumenta."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+msgstr "Dozvoljava deljenje pristupa dokumentima sa drugim korisnicima."
+
#. 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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr "Dozvoljava korisniku pristup izveštajima vezanim za dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr "Dozvoljava korisniku kreiranje novih dokumenata."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr "Dozvoljava korisniku brisanje dokumenata."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr "Dozvoljava korisniku uređivanje postojećih zapisa kojima ima pristup."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr "Dozvoljava korisniku slanje imejla iz dokumenta."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr "Dozvoljava korisniku izvoz podataka iz prikaza izveštaja."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr "Dozvoljava korisniku pretragu i pregled zapisa."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr "Dozvoljava korisniku korišćenje alata za uvoz podataka za kreiranje / ažuriranje zapisa."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr "Dozvoljava korisniku prikaz dokumenta."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr "Dozvoljava korisnicima omogućavanje svojstva maske za bilo koje polje odgovarajuće vrste dokumenta."
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Već registrovan"
@@ -2279,7 +2340,7 @@ msgstr "Izmena"
msgid "Amendment Naming Override"
msgstr "Zanemari pravila imenovanja izmena"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Izmena nije dozvoljena"
@@ -2292,7 +2353,7 @@ msgstr "Pravila imenovanja izmena ažurirana."
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr "Imejl za potvrdu Vašeg zahteva je poslat na Vašu imejl adresu. Molimo Vas da potvrdite zahtev kako biste završili proces."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja podrazumevanih podešavanja sesije"
@@ -2343,7 +2404,7 @@ msgstr "Matrica anonimnosti"
msgid "Anonymous responses"
msgstr "Anonimni odgovori"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "Druga transakcija blokira ovu. Pokušajte ponovo za nekoliko sekundi."
@@ -2356,7 +2417,7 @@ msgstr "Već postoji drugi {0} sa nazivom {1}, izaberite drugi naziv"
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 "Za štampače se mogu koristiti svi jezici zasnovani na tekstu. Pisanje sirovih komandi zahteva poznavanje osnovnog jezika štampača koji obezbeđuje proizvođač. Za detalje o pisanju tih komandi, molimo Vas da se konsultujete sa razvojnim priručnikom koji je obezbedio proizvođač štampača. Ove komande se obrađuju na serverskoj strani koristeći Jinja šablonski jezik."
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr "Osim sistem menadžera, uloge sa pravima za postavljanje korisničkih dozvola mogu postavljati dozvole za druge korisnike za tu vrstu dokumenta."
@@ -2406,11 +2467,11 @@ msgstr "Naziv aplikacije"
msgid "App Name (Client Name)"
msgstr "Naziv aplikacije (naziv klijenta)"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "Aplikacija nije pronađena za modul: {0}"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "Aplikacija {0} nije instalirana"
@@ -2484,7 +2545,7 @@ msgstr "Odnosi se na (DocType)"
msgid "Apply"
msgstr "Primeni"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Primeni pravilo dodele"
@@ -2493,6 +2554,10 @@ msgstr "Primeni pravilo dodele"
msgid "Apply Filters"
msgstr "Primeni filtere"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr "Primeni filter za izvoz modula"
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2532,7 +2597,7 @@ msgstr "Primeni ovo pravilo ukoliko je korisnik vlasnik"
msgid "Apply to all Documents Types"
msgstr "Primeni na sve vrste dokumenata"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Primenjivanje: {0}"
@@ -2540,18 +2605,11 @@ msgstr "Primenjivanje: {0}"
msgid "Approval Required"
msgstr "Potrebno odobrenje"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Aplikacije"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr "Aplikacije sa pretragom"
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2574,16 +2632,16 @@ msgstr "Arhivirane kolone"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Da li ste sigurni da želite da otkažete pozivnicu?"
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr "Da li ste sigurni da želite da očistite dodeljene zadatke?"
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Da li ste sigurni da želite da obrišete sve redove?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr "Da li ste sigurni da želite da obrišete svih {0} redova?"
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Da li ste sigurni da želite da obrišete sve priloge?"
@@ -2602,19 +2660,19 @@ 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 "Da li ste sigurni da želite da obrišete karticu? Svi odeljci zajedno sa poljima u kartici će biti premešteni u prethodnu karticu."
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr "Da li ste sigurni da želite da obrišete ovaj zapis?"
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
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:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "Da li ste sigurni da želite da generišete novi izveštaj?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Da li ste sigurni da želite da spojite {0} sa {1}?"
@@ -2634,7 +2692,7 @@ msgstr "Da li ste sigurni da želite da ponovo povežete ovu komunikaciju sa {0}
msgid "Are you sure you want to remove all failed jobs?"
msgstr "Da li ste sigurni da želite da uklonite sve neuspele zadatke?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "Da li ste sigurni da želite da uklonite {0} filter?"
@@ -2683,7 +2741,7 @@ msgstr "Prema Vašem zahtevu, Vaš nalog i podaci na {0} povezani sa imejl adres
msgid "Ask"
msgstr "Pitaj"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Dodeli"
@@ -2696,7 +2754,7 @@ msgstr "Dodeli uslov"
msgid "Assign To"
msgstr "Dodeli"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Dodeli"
@@ -2746,7 +2804,7 @@ msgstr "Dodeljeno od"
msgid "Assigned By Full Name"
msgstr "Ime i prezime dodelioca"
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2835,7 +2893,7 @@ msgstr "Dodeljeni zadaci"
msgid "Asynchronous"
msgstr "Asinhrono"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "Barem jedna kolona je obavezna za prikaz u tabeli."
@@ -2860,7 +2918,7 @@ msgstr "Barem jedno polje matične vrste dokumenta je obavezno"
msgid "Attach"
msgstr "Priloži"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Priloži štampanu verziju dokumenta"
@@ -2958,19 +3016,26 @@ msgstr "Podešavanje priloga"
#. 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:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Prilozi"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "Pokušava se povezivanje sa QZ Tray..."
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "Pokušava se pokretanje QZ Tray..."
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr "Prisustvuje"
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "Pripisivanje"
@@ -3295,11 +3360,6 @@ msgstr "Odličan posao"
msgid "Awesome, now try making an entry yourself"
msgstr "Odlično, sada pokušajte da uneste podatke samostalno"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr "Brza pretraga"
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3405,17 +3465,12 @@ msgstr "Boja pozadine"
msgid "Background Image"
msgstr "Slika pozadine"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-msgstr "Aktivnost pozadinskog zadatka"
-
#. 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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Pozadinski zadaci"
@@ -3528,8 +3583,8 @@ 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:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "Na osnovu"
@@ -3553,6 +3608,8 @@ msgstr "Osnovna"
msgid "Basic Info"
msgstr "Osnovne informacije"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3622,7 +3679,7 @@ msgstr "Počni sa"
msgid "Beta"
msgstr "Beta"
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "Bolje dodajte još nekoliko slova ili neku drugu reč"
@@ -3750,18 +3807,11 @@ msgstr "Brend HTML kod"
msgid "Brand Image"
msgstr "Slika brenda"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr "Logo brenda"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr "Logo brenda sa pretragom"
-
#. 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"
@@ -3833,7 +3883,7 @@ msgstr "Masovno brisanje"
msgid "Bulk Edit"
msgstr "Masovno uređivanje"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Masovno uređivanje {0}"
@@ -3854,7 +3904,7 @@ msgstr "Masovan izvoz PDF"
msgid "Bulk Update"
msgstr "Masovno ažuriranje"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr "Masovno odobravanje podržava najviše do 500 dokumenata."
@@ -3866,7 +3916,7 @@ msgstr "Masovna operacija je stavljena u red za obradu u pozadini."
msgid "Bulk operations only support up to 500 documents."
msgstr "Masovna operacija podržava najviše do 500 dokumenata."
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr "Masovno {0} je stavljeno u red za obradu u pozadini."
@@ -4015,7 +4065,7 @@ msgstr "Keš memorija"
msgid "Cache Cleared"
msgstr "Keš memorija očišćena"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Izračunaj"
@@ -4065,12 +4115,12 @@ msgid "Callback Title"
msgstr "Callback naslov"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4082,11 +4132,11 @@ msgstr "Kampanja"
msgid "Campaign Description (Optional)"
msgstr "Opis kampanje (opciono)"
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr "Ne može se promeniti naziv jer je kolona {0} već prisutna u DocType."
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr "Može se promeniti na/nazad u pravilo automatskog povećanja samo kada u DocType-u nema podataka"
@@ -4096,7 +4146,7 @@ msgstr "Može se promeniti na/nazad u pravilo automatskog povećanja samo kada u
msgid "Can only list down the document types which has been linked to the User document type."
msgstr "Mogu se prikazivati samo vrste dokumenata koji su povezani sa korisničkom vrstom dokumenta."
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr "Ne može se pratiti jer promene nisu zabeležene."
@@ -4118,7 +4168,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:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Otkaži"
@@ -4128,11 +4178,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Otkaži"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "Otkaži sve"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "Otkaži sve dokumente"
@@ -4144,7 +4194,7 @@ msgstr "Otkaži uvoz"
msgid "Cancel Prepared Report"
msgstr "Otkaži pripremljen izveštaj"
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Otkaži {0} dokumenta?"
@@ -4177,7 +4227,7 @@ msgstr "Otkazivanje"
msgid "Cancelling documents"
msgstr "Otkazivanje dokumenata"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "Otkazivanje {0}"
@@ -4185,7 +4235,7 @@ msgstr "Otkazivanje {0}"
msgid "Cannot Download Report due to insufficient permissions"
msgstr "Nije moguće preuzeti izveštaj zbog nedovoljnih dozvola"
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr "Nije moguće preuzeti vrednosti"
@@ -4193,7 +4243,7 @@ msgstr "Nije moguće preuzeti vrednosti"
msgid "Cannot Remove"
msgstr "Nije moguće ukloniti"
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr "Nije moguće ažurirati nakon podnošenja"
@@ -4213,11 +4263,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:1062
+#: frappe/model/document.py:1061
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:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Nije moguće promeniti status dokumenta iz 1 (podnet) u 0 (nacrt)"
@@ -4229,7 +4279,7 @@ msgstr "Nije moguće promeniti stanje otkazanog dokumenta ({0} stanje)"
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "Nije moguće promeniti stanje otkazanog dokumenta. Tranzicioni red {0}"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "Nije moguće promeniti sa/na automatsko povećanje automatskog naziva u polju prilagodi obrazac"
@@ -4237,10 +4287,14 @@ msgstr "Nije moguće promeniti sa/na automatsko povećanje automatskog naziva u
msgid "Cannot create a {0} against a child document: {1}"
msgstr "Nije moguće kreirati {0} protiv zavisnog dokumenta: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "Nije moguće kreirati privatni radni prostor za ostale korisnike"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr "Nije moguće obrisati ikonicu na radnoj površini '{0}' jer je ograničena"
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "Nije moguće obrisati početne i priložene datoteke"
@@ -4249,15 +4303,15 @@ msgstr "Nije moguće obrisati početne i priložene datoteke"
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}"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "Nije moguće obrisati standardnu radnju. Možete je sakriti ukoliko želite"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "Nije moguće obrisati standardno stanje dokumenta."
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "Nije moguće obrisati standardno polje {0}. Možete ga sakriti."
@@ -4268,11 +4322,11 @@ msgstr "Nije moguće obrisati standardno polje {0}. Možete ga
msgid "Cannot delete standard field. You can hide it if you want"
msgstr "Nije moguće obrisati standardno polje. Možete ga sakriti ukoliko želite"
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "Nije moguće obrisati standardni link. Možete ga sakriti ukoliko želite"
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr "Nije moguće obrisati sistemski generisano polje {0}. Možete ga sakriti."
@@ -4300,7 +4354,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:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "Nije moguće urediti otkazan dokument"
@@ -4313,7 +4367,7 @@ msgstr "Nije moguće urediti filtere za standardne grafikone"
msgid "Cannot edit filters for standard number cards"
msgstr "Nije moguće urediti filtere za standardne brojčane kartice"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "Nije moguće urediti standardna polja"
@@ -4329,15 +4383,15 @@ msgstr "Nije moguće pronaći fajl {} na disku"
msgid "Cannot get file contents of a Folder"
msgstr "Nije moguće preuzeti sadržaj fajla iz datoteke"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Nije moguće mapirati više štampača na jedan format za štampu."
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
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:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "Nije moguće povezati otkazani dokument: {0}"
@@ -4349,7 +4403,7 @@ msgstr "Nije moguće mapiranje jer sledeći uslov nije ispunjen:"
msgid "Cannot match column {0} with any field"
msgstr "Nije moguće upariti kolonu {0} ni sa jednim poljem"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "Nije moguće pomeriti red"
@@ -4374,7 +4428,7 @@ msgid "Cannot submit {0}."
msgstr "Nije moguće podneti {0}."
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "Nije moguće ažurirati {0}"
@@ -4394,7 +4448,7 @@ msgstr "Nije moguće {0} {1}."
msgid "Capitalization doesn't help very much."
msgstr "Kapitalizacija ne pomaže puno."
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "Zabeleži"
@@ -4408,7 +4462,7 @@ msgstr "Kartica"
msgid "Card Break"
msgstr "Prelom kartice"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "Oznaka kartice"
@@ -4437,17 +4491,19 @@ msgstr "Opis kategorije"
msgid "Category Name"
msgstr "Naziv kategorije"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
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 "Određeni dokumenti, poput faktura, ne bi trebalo da se menjaju nakon što postanu finalni. Finalno stanje za takve dokument se naziva podneto. Možete ograničiti koje uloge mogu podneti dokumente."
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4536,7 +4592,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Naziv dijagrama"
@@ -4601,6 +4657,12 @@ msgstr "Proveri kolone za označavanje, prevuci da postaviš redosled."
msgid "Check the Error Log for more information: {0}"
msgstr "Proveri evidenciju grešaka za više informacija: {0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr "Označite ovo ukoliko je vrednost ažuriranja formula ili izraz (npr. doc.amount * 2). Ostavite neoznačeno za vrednosti običnog teksta."
+
#: 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 "Označi ovo ukoliko ne želiš da korisnici kreiraju nalog na tvom sajtu. Korisnici neće imati pristup radnoj površini, osim ukoliko im eksplicitno ne obezbediš."
@@ -4652,7 +4714,7 @@ msgstr "Zavisni DocType"
msgid "Child Item"
msgstr "Zavisna stavka"
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr "Zavisna tabela {0} za polje {1} mora biti virtuelna"
@@ -4662,7 +4724,7 @@ msgstr "Zavisna tabela {0} za polje {1} mora biti virtuelna"
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:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "Zavisna polja upita za '{0}' moraju biti vrste lista ili tuple."
@@ -4670,7 +4732,7 @@ msgstr "Zavisna polja upita za '{0}' moraju biti vrste lista ili tuple."
msgid "Choose Existing Card or create New Card"
msgstr "Izaberi postojeću karticu ili kreiraj novu karticu"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "Izaberi blok ili nastavi da kucaš"
@@ -4690,10 +4752,6 @@ msgstr "Izaberi ikonicu"
msgid "Choose authentication method to be used by all users"
msgstr "Izaberi metod autentifikacije koji će koristiti svi korisnici"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr "Chromium nije preuzet. Molimo Vas da najpre pokrenete postavku."
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4710,11 +4768,11 @@ msgstr "Grad/Naseljeno mesto"
msgid "Clear"
msgstr "Očisti"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "Očisti i dodaj šablon"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "Očisti i dodaj šablon"
@@ -4722,7 +4780,7 @@ msgstr "Očisti i dodaj šablon"
msgid "Clear All"
msgstr "Očisti sve"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Očisti dodeljene zadatke"
@@ -4748,7 +4806,7 @@ msgstr "Očisti evidencije nakon (dana)"
msgid "Clear User Permissions"
msgstr "Očisti korisničke dozvole"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "Očisti imejl poruke i dodaj šablon"
@@ -4816,7 +4874,7 @@ msgstr "Kliknite da postavite dinamičke filtere"
msgid "Click to Set Filters"
msgstr "Kliknite da postavite filtere"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "Kliknite da sortirate po {0}"
@@ -4924,7 +4982,7 @@ msgstr "Klijentska skripta"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Zatvori"
@@ -4934,7 +4992,7 @@ msgstr "Zatvori"
msgid "Close Condition"
msgstr "Zatvori uslov"
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr "Zatvori svojstva"
@@ -4990,12 +5048,12 @@ msgstr "Metoda izazova u programiranju"
msgid "Collapse"
msgstr "Sažmi"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sažmi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sažmi sve"
@@ -5052,7 +5110,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5063,7 +5121,7 @@ msgstr "Boja"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5108,11 +5166,11 @@ msgstr "Naziv kolone"
msgid "Column Name cannot be empty"
msgstr "Naziv kolone ne može biti prazan"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "Širina kolone"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "Širina kolone ne može biti nula."
@@ -5155,7 +5213,7 @@ msgstr "Comm10E"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5302,12 +5360,12 @@ msgstr "Završeno"
msgid "Complete By"
msgstr "Završeno od strane"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Završi registraciju"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "Završi postavke"
@@ -5322,7 +5380,7 @@ msgstr "Završi postavke"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Završeno"
@@ -5413,7 +5471,7 @@ msgstr "Konfiguracija"
msgid "Configure Chart"
msgstr "Konfigurišite dijagram"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "Konfigurišite kolone"
@@ -5504,8 +5562,8 @@ msgstr "Povezane aplikacije"
msgid "Connected User"
msgstr "Povezani korisnik"
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "Povezano sa QZ Tray!"
@@ -5623,7 +5681,7 @@ msgstr "Sadrži {0} ispravki bezbednosti"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5692,11 +5750,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "Kopirano u međuspremnik."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr "Kopirano {0} {1} u međuspremnik"
@@ -5708,12 +5766,12 @@ msgstr "Kopiraj link"
msgid "Copy embed code"
msgstr "Kopiraj embedded code"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "Kopiraj grešku u međuspremnik"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "Kopiraj u međuspremnik"
@@ -5734,7 +5792,7 @@ msgstr "Osnovni DocType-ovi ne mogu biti prilagođeni."
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "Osnovni moduli {0} se ne mogu pretraživati u globalnoj pretrazi."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "Ispravna verzija :"
@@ -5742,7 +5800,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:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "Nije bilo moguće pronaći {0}"
@@ -5750,11 +5808,11 @@ 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:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr "Nije moguće obraditi polje: {0}"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr "Nije moguće pokrenuti Chromium. Proverite evidenciju za detalje."
@@ -5762,7 +5820,7 @@ msgstr "Nije moguće pokrenuti Chromium. Proverite evidenciju za detalje."
msgid "Could not start up:"
msgstr "Nije bilo moguće pokrenuti:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "Nije bilo moguće sačuvati, proverite unesene podatke"
@@ -5814,7 +5872,7 @@ msgstr "Brojač"
msgid "Country"
msgstr "Država"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "Šifra države je neophodna"
@@ -5841,15 +5899,16 @@ msgstr "Cr"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Kreiraj"
@@ -5862,13 +5921,13 @@ msgstr "Kreiraj i nastavi"
msgid "Create Address"
msgstr "Kreiraj adresu"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "Kreiraj karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "Kreiraj grafikon"
@@ -5902,7 +5961,7 @@ msgstr "Kreiraj evidenciju"
msgid "Create New"
msgstr "Kreiraj novi"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Kreiraj novi"
@@ -5915,7 +5974,7 @@ msgstr "Kreiraj novi DocType"
msgid "Create New Kanban Board"
msgstr "Kreiraj novu Kanban tablu"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr "Kreiraj sačuvani filter"
@@ -5931,18 +5990,18 @@ msgstr "Kreiraj novi format"
msgid "Create a Reminder"
msgstr "Kreiraj podsetnik"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "Kreiraj novi ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "Kreiraj novi zapis"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Kreiraj novi {0}"
@@ -5959,7 +6018,7 @@ msgstr "Kreiraj ili uredi format štampe"
msgid "Create or Edit Workflow"
msgstr "Kreiraj ili uredi radni tok"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "Kreiraj svoj prvi {0}"
@@ -5978,13 +6037,21 @@ msgstr "Kreirano"
msgid "Created At"
msgstr "Kreirano na"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Kreirano od strane"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr "Kreirano od strane Vas"
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr "Kreirano od strane {0}"
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "Kreirano prilagođeno polje {0} u {1}"
@@ -6178,7 +6245,7 @@ msgstr "Prilagođene vrste dokumenata (izbor dozvole)"
msgid "Custom Document Types Limit Exceeded"
msgstr "Prekoračen limit za prilagođene vrste dokumenata"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "Prilagođeni dokumenti"
@@ -6189,15 +6256,15 @@ msgstr "Prilagođeni dokumenti"
msgid "Custom Field"
msgstr "Prilagođeno polje"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "Prilagođeno polje {0} je kreirao administrator i može se obrisati samo putem administratorskog naloga."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Prilagođena polja mogu se isključivo dodati u standardni DocType."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Prilagođena polja ne mogu biti dodata osnovnim DocType-ovima."
@@ -6223,7 +6290,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr "Prilagođena pretraga grupe, ukoliko je popunjena, mora sadržati korisnički rezervisani tekst {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/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "Prilagođeni HTML"
@@ -6269,7 +6336,7 @@ msgstr "Prilagođene izmene"
msgid "Custom Report"
msgstr "Prilagođeni izveštaj"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "Prilagođeni izveštaji"
@@ -6294,11 +6361,11 @@ msgstr "Prilagođeni meni bočne trake"
msgid "Custom Translation"
msgstr "Prilagođeni prevod"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "Prilagođeno polje je uspešno preimenovano u {0}."
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
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}"
@@ -6321,26 +6388,26 @@ msgstr "Prilagođeni?"
msgid "Customization"
msgstr "Prilagođavanje"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "Prilagođavanje odbačeno"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "Resetuj prilagođavanje"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "Prilagođavanje za {0} su izvezena:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Prilagodi"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Prilagodi"
@@ -6437,7 +6504,7 @@ msgstr "Dnevno"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "Dnevni pregled događaja se šalje za događaje na kalendaru gde su postavljeni podsetnici."
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "Dnevni događaji treba da se završe istog dana."
@@ -6494,8 +6561,8 @@ msgstr "Tamna tema"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "Kontrolna tabla"
@@ -6745,7 +6812,7 @@ msgstr "Dana pre"
msgid "Days Before or After"
msgstr "Dana pre ili nakon"
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "Došlo je do zastoja"
@@ -6942,11 +7009,11 @@ msgstr "Podrazumevani radni prostor"
msgid "Default display currency"
msgstr "Podrazumevana valuta za prikaz"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "Podrazumevana vrednost 'Označi' vrste polja {0} mora biti ili '0' ili '1'"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "Podrazumevana vrednost za {0} mora biti u listi opcija."
@@ -7003,11 +7070,12 @@ msgstr "Kašnjenje"
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -7015,7 +7083,7 @@ msgstr "Kašnjenje"
msgid "Delete"
msgstr "Obriši"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Obriši"
@@ -7029,10 +7097,6 @@ msgstr "Obriši"
msgid "Delete Account"
msgstr "Obriši nalog"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "Obriši sve"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7062,7 +7126,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Obriši karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr "Obriši sve"
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr "Obriši svih {0} redova"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "Obriši i generiši novi"
@@ -7090,6 +7162,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "Obriši celu karticu zajedno sa poljima"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr "Obriši red"
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7104,16 +7180,20 @@ 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:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Trajno obriši {0} stavku?"
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Trajno obriši {0} stavke?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr "Obriši {0} redova"
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7144,7 +7224,7 @@ msgstr "Obrisani naziv"
msgid "Deleted all documents successfully"
msgstr "Svi dokumenti su uspešno obrisani"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Obrisano!"
@@ -7251,6 +7331,7 @@ msgstr "Izvedeni od (sa izvorom)"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7333,16 +7414,21 @@ msgstr "Tema radne površine"
msgid "Desk User"
msgstr "Korisnik radne površine"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr "Radna površina"
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "Ikonica radne površine"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr "Raspored radne površine"
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7372,11 +7458,11 @@ msgstr "Detalji"
msgid "Detect CSV type"
msgstr "Detektuj vrstu CSV fajla"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "Nije dodato"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "Nije uklonjeno"
@@ -7524,10 +7610,11 @@ msgstr "Onemogućeno"
msgid "Disabled Auto Reply"
msgstr "Onemogući automatski odgovor"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Odbaci"
@@ -7541,11 +7628,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Odbaci"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "Odbaci {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "Odbaci?"
@@ -7619,11 +7706,11 @@ msgstr "Nemoj kreirati novog korisnika"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Nemoj kreirati novog korisnika ukoliko korisnik sa tim imejlom ne postoji u sistemu"
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "Nemoj uređivati zaglavlja koja su unapred postavljena u šablonu"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr "Ne upozoravaj me više na {0}"
@@ -7631,7 +7718,7 @@ msgstr "Ne upozoravaj me više na {0}"
msgid "Do you still want to proceed?"
msgstr "Da li još uvek želite da nastavite?"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "Da li želite da otkažete sve povezane dokumente?"
@@ -7689,7 +7776,6 @@ msgstr "Status dokumenta sledećih stanja je promenjen:
{0}<
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7712,7 +7798,6 @@ msgstr "Status dokumenta sledećih stanja je promenjen:
{0}<
#: 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/desktop_icon/desktop_icon.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
@@ -7725,7 +7810,7 @@ msgstr "Status dokumenta sledećih stanja je promenjen:
{0}<
msgid "DocType"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr "DocType {0} dodeljen za polje {1} mora imati barem jedno link polje"
@@ -7793,10 +7878,6 @@ msgstr "DocType je tabela / obrazac u aplikaciji."
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "DocType mora biti podložan podnošenju za odabrani događaj dokumenta"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "DocType mora biti tekst"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "DocType mora imati barem jedno polje"
@@ -7814,15 +7895,15 @@ msgstr "DocType na koji je radni tok primenjiv."
msgid "DocType required"
msgstr "DocType je neophodan"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "DocType {0} ne postoji."
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "DocType {} nije pronađen"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "Naziv DocType-a ne sme počinjati ili završavati se razmakom"
@@ -7836,7 +7917,7 @@ msgstr "DocType ne može biti modifikovan, molimo Vas da koristite {0} umesto to
msgid "Doctype"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "Doctype naziv je ograničen na {0} karaktera ({1})"
@@ -7875,7 +7956,7 @@ msgstr "Radnje dokumenta"
msgid "Document Follow"
msgstr "Praćenje dokumenta"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "Obaveštenje o praćenju dokumenta"
@@ -7898,19 +7979,19 @@ msgstr "Povezivanje dokumenta"
msgid "Document Links"
msgstr "Linkovi dokumenta"
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "Red povezanih dokumenata #{0}: Nije pronađeno polje {1} u {2} DocType"
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "Red povezanih dokumenata #{0}: Nevažeći doctype ili naziv polja."
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "Red povezanih dokumenata #{0}: Matični DocType je obavezan za interne linkove"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr "Red povezanih dokumenata #{0}: Naziv polja tabele je obavezno za interne linkove"
@@ -7929,9 +8010,9 @@ msgstr "Red povezanih dokumenata #{0}: Naziv polja tabele je obavezno za interne
msgid "Document Name"
msgstr "Naziv dokumenta"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "Naziv dokumenta mora biti tekst"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr "Naziv dokumenta ne sme biti prazan"
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7948,7 +8029,7 @@ msgstr "Uslov pravila imenovanja dokumenta"
msgid "Document Naming Settings"
msgstr "Podešavanje imenovanja dokumenata"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "Dokument u redu za obradu"
@@ -8052,7 +8133,7 @@ msgstr "Naslov dokumenta"
#: 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:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8072,11 +8153,11 @@ msgstr "Vrsta dokumenta"
msgid "Document Type and Function are required to create a number card"
msgstr "Vrsta i funkcija dokumenta su neophodne da bi se kreirala brojčana kartica"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "Vrstu dokumenta nije moguće uvoziti"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "Vrstu dokumenta nije moguće podneti"
@@ -8105,27 +8186,27 @@ msgid "Document Types and Permissions"
msgstr "Vrste i dozvole dokumenta"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "Dokument je otključan"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr "Dokument se ne može koristiti kao vrednost filtera"
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "Praćenje dokumenta nije omogućeno za ovog korisnika."
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "Dokument je otkazan"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "Dokument je podnet"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "Dokument u stanju nacrta"
@@ -8137,11 +8218,11 @@ msgstr "Dokument je moguće uređivati samo od strane korisnika sa ulogom"
msgid "Document not Relinked"
msgstr "Dokument nije ponovo povezivan"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "Dokument je preimenovan iz {0} u {1}"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "Preimenovanje dokumenta iz {0} u {1} je stavljeno u red za obradu"
@@ -8157,10 +8238,6 @@ msgstr "Dokument {0} je već obnovljen"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "Dokument {0} je postavljen u stanje {1} od strane {2}"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "Dokument {0} {1} ne postoji"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8298,7 +8375,7 @@ msgstr "Preuzmi link"
msgid "Download PDF"
msgstr "Preuzmi PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "Preuzmi izveštaj"
@@ -8382,7 +8459,7 @@ msgid "Due Date Based On"
msgstr "Datum dospeća zasnovan na"
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "Duplikat"
@@ -8390,19 +8467,15 @@ msgstr "Duplikat"
msgid "Duplicate Entry"
msgstr "Duplikat unosa"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "Duplikat naziv filtera"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Duplikat naziva"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "Duplikat reda"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "Duplikat trenutnog reda"
@@ -8410,6 +8483,18 @@ msgstr "Duplikat trenutnog reda"
msgid "Duplicate field"
msgstr "Duplikat polja"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr "Duplikat reda"
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr "Duplikat redova"
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr "Duplikat {0} redova"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8497,9 +8582,10 @@ msgstr "IZLAZ"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8510,7 +8596,7 @@ msgstr "IZLAZ"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Uredi"
@@ -8520,7 +8606,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Uredi"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Uredi"
@@ -8541,15 +8627,15 @@ msgstr "Uredi grafikon"
msgid "Edit Custom Block"
msgstr "Uredi prilagođeni blok"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "Uredi prilagođeni HTML"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "Uredi DocType"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Uredi DocType"
@@ -8563,7 +8649,7 @@ msgstr "Uredi postojeći"
msgid "Edit Filters"
msgstr "Uredi filtere"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "Uredi filtere"
@@ -8576,7 +8662,7 @@ msgstr "Uredi podnožje"
msgid "Edit Format"
msgstr "Uredi format"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr "Uredi puni obrazac"
@@ -8634,7 +8720,7 @@ msgstr "Uredi brzu listu"
msgid "Edit Shortcut"
msgstr "Uredi prečicu"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr "Uredi bočnu traku"
@@ -8657,11 +8743,11 @@ msgstr "Režim uređivanja"
msgid "Edit the {0} Doctype"
msgstr "Uredi {0} Doctype"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "Uredi da bi dodao sadržaj"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "Uredite Vaš odgovor"
@@ -8717,6 +8803,7 @@ msgstr "Izbor elementa"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8732,12 +8819,14 @@ msgstr "Izbor elementa"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8772,7 +8861,7 @@ msgstr "Imejl nalog onemogućen."
msgid "Email Account Name"
msgstr "Naziv imejl naloga"
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "Imejl nalog je dodat više puta"
@@ -8970,7 +9059,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:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Imejl nije poslat {0} (otkazana pretplata / onemogućeno)"
@@ -9009,7 +9098,7 @@ msgstr "Imejlovi će biti poslati sa sledećim mogućim radnjama u radnom toku"
msgid "Embed code copied"
msgstr "Kod za ugradnju je kopiran"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr "Prazan pseudonim nije dozvoljen"
@@ -9017,7 +9106,7 @@ msgstr "Prazan pseudonim nije dozvoljen"
msgid "Empty column"
msgstr "Prazna kolona"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr "Argumenti kao prazan tekst nisu dozvoljeni"
@@ -9337,11 +9426,11 @@ msgstr "Proverite da su putevi za grupnu i korisničku pretragu tačni."
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Unesite klijentski ID i tajnu klijenta u Google podešavanja."
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "Unesite šifru prikazanu u aplikaciji za jednokratnu lozinku."
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr "Unesite imejl primaoca u polja ka, CC ili BCC"
@@ -9368,6 +9457,10 @@ msgstr "Unesite polja sa podrazumevanim vrednostima (ključevi) i vrednostima. U
msgid "Enter folder name"
msgstr "Unesite naziv datoteke"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr "Unesite listu opcija, svaka u novom redu."
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9398,7 +9491,7 @@ msgstr "Naziv entiteta"
msgid "Entity Type"
msgstr "Vrsta entiteta"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Jednako"
@@ -9432,7 +9525,7 @@ msgstr "Jednako"
msgid "Error"
msgstr "Greška"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Greška"
@@ -9447,12 +9540,12 @@ msgstr "Evidencija grešaka"
msgid "Error Logs"
msgstr "Evidencije grešaka"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr "Poruka o grešci"
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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.."
@@ -9490,15 +9583,15 @@ 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
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr "Greška u {0}.get_list: {1}"
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr "Greška pri obradi ugnježdenih filtera: {0}. {1}"
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr "Greška pri validaciji polja \"Ignoriši korisničke dozvole\""
@@ -9514,15 +9607,15 @@ msgstr "Greška pri obradi obaveštenja {0}. Molimo Vas da ispravite Vaš šablo
msgid "Error {0}: {1}"
msgstr "Greška {0}: {1}"
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "Greška: Podaci nedostaju u tabeli {0}"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "Greška: Vrednost nedostaje za {0}: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Greška: {0} Red #{1}: Vrednost nedostaje za: {2}"
@@ -9532,6 +9625,12 @@ msgstr "Greška: {0} Red #{1}: Vrednost nedostaje za: {2}"
msgid "Errors"
msgstr "Greške"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr "Evaluiraj kao izraz"
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9550,6 +9649,11 @@ msgstr "Kategorija događaja"
msgid "Event Frequency"
msgstr "Učestalost događaja"
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr "Obaveštenja o događajima"
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9575,11 +9679,11 @@ msgstr "Događaj je sinhronizovan sa Google Calendar-om."
msgid "Event Type"
msgstr "Vrsta događaja"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "Događaji"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "Događaji u današnjem kalendaru"
@@ -9601,6 +9705,7 @@ msgid "Exact Copies"
msgstr "Identične kopije"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr "Primer"
@@ -9671,7 +9776,7 @@ msgstr "Izvršavanje koda"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "Vreme izvršavanja: {0} sekundi"
@@ -9692,21 +9797,21 @@ msgstr "Postojeća uloga"
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Proširi sve"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "Eksperimentalno"
@@ -9758,20 +9863,21 @@ msgstr "Vreme isteka stranica sa QR kodom"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Izvoz"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Izvoz"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "Izvezi 1 zapis"
@@ -9810,11 +9916,11 @@ msgstr "Izvoz izveštaja: {0}"
msgid "Export Type"
msgstr "Vrsta izvoza"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "Izvoz svih redova koji se podudaraju?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "Izvoz svih {0} redova?"
@@ -9830,6 +9936,10 @@ msgstr "Izvoz u pozadini"
msgid "Export not allowed. You need {0} role to export."
msgstr "Izvoz nije dozvoljen. Neophodna je uloga {0} za izvoz."
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr "Izvezi samo prilagođavanja dodeljena izabranom modulu.
Napomena: Pre primene ovog filtera, morate podesiti polje Modul (za izvoz) na zapisima prilagođenih polja i postavki svojstva.Upozorenje:Prilagođavanja iz drugih modula biće izuzeta.
"
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9842,7 +9952,7 @@ msgstr "Izvoz podataka bez napomena u zaglavlju i opisu kolona"
msgid "Export without main header"
msgstr "Izvoz bez glavnog zaglavlja"
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "Izvoz {0} zapisa"
@@ -9882,7 +9992,7 @@ msgstr "Eksterni"
#. Label of the external_link (Data) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "Eksterni link"
@@ -9931,12 +10041,17 @@ msgstr "Broj neuspelih zadataka"
msgid "Failed Jobs"
msgstr "Neuspešni zadaci"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr "Neuspešni pokušaji prijavljivanja"
+
#. 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 "Neuspešne prijave (poslednjih 30 dana)"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "Neuspešne transakcije"
@@ -9999,7 +10114,7 @@ msgstr "Neuspešno generisanje pregleda serija"
msgid "Failed to get method for command {0} with {1}"
msgstr "Neuspešno dobiti metodu za komandu {0} sa {1}"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "Neuspešno dobiti metodu {0} sa {1}"
@@ -10011,7 +10126,7 @@ msgstr "Neuspešno dobijanje informacija o sajtu"
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "Neuspešan pokušaj uvoza virtuelnog doctype {}, da li je fajl kontrolera prisutan?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "Neuspešno optimizovanje slike: {0}"
@@ -10027,7 +10142,7 @@ msgstr "Nije moguće prikazati naslov: {0}"
msgid "Failed to request login to Frappe Cloud"
msgstr "Neuspešan pokušaj prijave na Frappe Cloud"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "Neuspešan pokušaj slanja imejla sa naslovom:"
@@ -10069,7 +10184,7 @@ msgstr "FavIcon"
msgid "Fax"
msgstr "Faks"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "Povratna informacija"
@@ -10129,8 +10244,8 @@ msgstr "Preuzimanje polja iz {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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10140,7 +10255,7 @@ msgstr "Polje"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "Polje \"putanja\" je obavezno za veb-prikaze"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "Polje \"naslov\" je obavezno ukoliko je postavljeno \"Polje za pretragu na veb-sajtu\"."
@@ -10148,7 +10263,7 @@ msgstr "Polje \"naslov\" je obavezno ukoliko je postavljeno \"Polje za pretragu
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "Polje \"vrednost\" je obavezno. Molimo Vas da navedete vrednost koja treba da se ažurira"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr "Polje {0} nije pronađeno u {1}"
@@ -10157,7 +10272,7 @@ msgstr "Polje {0} nije pronađeno u {1}"
msgid "Field Description"
msgstr "Opis polja"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Polje nedostaje"
@@ -10205,7 +10320,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:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "Polje {0} ne postoji u {1}"
@@ -10213,11 +10328,11 @@ msgstr "Polje {0} ne postoji u {1}"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Polje {0} se odnosi na nepostojeći doctype {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "Polje {0} mora biti virtuelno da bi podržavalo virtuelni DocType."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Polje {0} nije pronađeno."
@@ -10239,7 +10354,7 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za mobilni broj, ni link za kupc
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Naziv polja"
@@ -10248,7 +10363,7 @@ msgstr "Naziv polja"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "Naziv polja '{0}' je u konfliktu sa {1} nazivom {2} u {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Naziv polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
@@ -10256,7 +10371,7 @@ msgstr "Naziv polja {0} mora postojati da bi se omogućilo automatsko imenovanje
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Naziv polja je ograničen na 64 karaktera ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Naziv polja nije postavljen za prilagođeno polje"
@@ -10272,7 +10387,7 @@ msgstr "Naziv polja {0} se pojavljuje više puta"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Naziv polja {0} ne može sadržati specijalne karaktere poput {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Naziv polje {0} je u konfliktu sa meta objektom"
@@ -10320,7 +10435,7 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za fajl"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je opcija as_list omogućena"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
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"
@@ -10344,7 +10459,7 @@ msgstr "Polja odvojena zarezom (,) biće uključena u listu \"Pretraži po\" u d
msgid "Fieldtype"
msgstr "Vrsta polja"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Vrsta polja ne može biti promenjena sa {0} na {1}"
@@ -10420,12 +10535,12 @@ msgstr "Naziv fajla ne može sadržati {0}"
msgid "File not attached"
msgstr "Fajl nije priložen"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Veličina fajla je premašila maksimalnu dozvoljenu veličinu od {0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Fajl je preveliki"
@@ -10452,12 +10567,17 @@ msgstr "Fajlovi"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filter"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr "Područje filtera"
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10476,7 +10596,7 @@ msgstr "Filter metapodataka"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Filter naziva"
@@ -10485,11 +10605,11 @@ msgstr "Filter naziva"
msgid "Filter Values"
msgstr "Filter vrednosti"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "Nedostaje uslov filtera nakon operatora: {0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr "Polja filtera imaju nevažeću backtick notaciju: {0}"
@@ -10508,10 +10628,14 @@ msgid "Filtered Records"
msgstr "Filtrirani zapisi"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Filtrirani po \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr "Filtrirano po: {0}."
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10535,7 +10659,7 @@ msgstr "Filtrirani po \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Filteri"
@@ -10566,10 +10690,6 @@ msgstr "JSON filtera"
msgid "Filters Section"
msgstr "Odeljak filtera"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Filteri primenjeni za {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filteri sačuvani"
@@ -10587,14 +10707,14 @@ msgstr "Filteri {0}"
msgid "Filters:"
msgstr "Filteri:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Pronađi '{0}' u ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Pronađi {0} u {1}"
@@ -10682,11 +10802,11 @@ msgstr "Preciznost decimale"
msgid "Fold"
msgstr "Sklopi"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Sklapanje ne može biti na kraju obrasca"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Sklapanje mora biti pre preloma odeljka"
@@ -10715,12 +10835,12 @@ msgstr "Datoteka {0} nije prazna"
msgid "Folio"
msgstr "Folio"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Prati"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Praćen od strane"
@@ -10728,7 +10848,7 @@ msgstr "Praćen od strane"
msgid "Following Report Filters have missing values:"
msgstr "Sledeći filteri izveštaja imaju nedostajuće vrednosti:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Sledeći dokument {0}"
@@ -10736,7 +10856,7 @@ msgstr "Sledeći dokument {0}"
msgid "Following fields are missing:"
msgstr "Sledeća polja nedostaju:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Sledeća polja imaju nevažeće vrednosti:"
@@ -10744,7 +10864,7 @@ msgstr "Sledeća polja imaju nevažeće vrednosti:"
msgid "Following fields have missing values"
msgstr "Sledeća polja imaju nedostajuće vrednosti"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Sledeća polja imaju nedostajuće vrednosti:"
@@ -10813,7 +10933,7 @@ msgstr "Detalji podnožja"
msgid "Footer HTML"
msgstr "HTML podnožje"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "HTML podnožje postavljeno iz priloga {0}"
@@ -10850,7 +10970,7 @@ msgstr "Šablon podnožja"
msgid "Footer Template Values"
msgstr "Vrednosti šablona podnožja"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "Podnožje možda neće biti vidljivo jer je opcija {0} onemogućena"
@@ -10883,16 +11003,6 @@ msgstr "Za vrstu dokumenta"
msgid "For Example: {} Open"
msgstr "Na primer: {} otvoren"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "Za linkove, unesite DocType kao opseg.\n"
-"Za izbor, 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'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10916,20 +11026,16 @@ msgstr "Za vrednost"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "Za dinamički naslov koristite Jinja oznake poput ove:{{ doc.name }} Delivered"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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)."
-#: 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 "Na primer, ukoliko otkažete i izmenite INV004, on će postati novi dokument INV004-1. Ovo Vam pomaže da pratite svaku izmenu."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "Na primer:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Na primer: Ukoliko želite da uključite ID dokumenta, koristite {0}"
@@ -10957,7 +11063,7 @@ msgstr "Za više adresa, unesite adrese u različitim redovima, na primer e.g. t
msgid "For updating, you can update only selective columns."
msgstr "Za ažuriranje, možete ažurirati samo određene kolone."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "Za {0} na nivou {1} u {2} u redu {3}"
@@ -11007,7 +11113,8 @@ msgstr "Zaboravili ste lozinku?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Obrazac"
@@ -11186,7 +11293,7 @@ msgstr "Petak"
msgid "From"
msgstr "Od"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "Od"
@@ -11207,7 +11314,7 @@ msgstr "Datum početka"
msgid "From Date Field"
msgstr "Polje za datum početka"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Od vrste dokumenta"
@@ -11248,7 +11355,7 @@ msgstr "Cela stranica"
msgid "Full Name"
msgstr "Ime i prezime"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Cela stranica"
@@ -11261,7 +11368,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funkcija"
@@ -11270,11 +11377,11 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na listi dozvoljenih."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "Funkcija {0} zahteva argumente, ali ni jedan nije naveden"
@@ -11339,11 +11446,11 @@ msgstr "Opšte"
msgid "Generate Keys"
msgstr "Generiši ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Generiši novi izveštaj"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Generiši nasumičnu lozinku"
@@ -11353,8 +11460,8 @@ msgstr "Generiši nasumičnu lozinku"
msgid "Generate Separate Documents For Each Assignee"
msgstr "Generiši odvojene dokumente za svakog dodeljenog korisnika"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Generiši URL za praćenje"
@@ -11465,7 +11572,7 @@ msgstr "Globalne prečice"
msgid "Global Unsubscribe"
msgstr "Globalno otkazivanje pretplate"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Kreni"
@@ -11525,7 +11632,7 @@ msgstr "Idi na listu {0}"
msgid "Go to {0} Page"
msgstr "Idi na stranicu {0}"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Cilj"
@@ -11751,7 +11858,7 @@ 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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "Grupisano po mora biti tekst"
@@ -11831,6 +11938,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "Uređivač HTML"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr "HTML poruka"
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11919,7 +12030,7 @@ msgstr "Zaglavlje"
msgid "Header HTML"
msgstr "HTML zaglavlje"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "HTML zaglavlje postavljeno iz priloga {0}"
@@ -11955,7 +12066,7 @@ msgstr "Skripte za zaglavlje/podnožje mogu se koristiti za dodavanje dinamičko
msgid "Headers"
msgstr "Zaglavlja"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "Zaglavlja moraju biti u formatu rečnika"
@@ -11992,7 +12103,7 @@ msgstr "Zdravo,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12047,7 +12158,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Evo Vašeg URL za praćenje"
@@ -12083,9 +12194,9 @@ msgstr "Sakriveno"
msgid "Hidden Fields"
msgstr "Sakrivena polja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "Sakrivene kolone uključuju: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+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
@@ -12250,7 +12361,7 @@ msgstr "Savet: Uključite simbole, brojeve i velika slova u lozinku"
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12333,18 +12444,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
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š.
"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12395,7 +12506,6 @@ msgid "IP Address"
msgstr "IP adresa"
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12416,11 +12526,16 @@ msgstr "IP adresa"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Ikonica"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr "Slika ikonice"
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12431,6 +12546,10 @@ msgstr "Stil ikonice"
msgid "Icon Type"
msgstr "Vrsta ikonice"
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+msgstr "Ikonica nije pravilno podešena, molimo Vas da proverite bočnu traku radnog prostora"
+
#. 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"
@@ -12462,13 +12581,13 @@ msgstr "Ukoliko je opcija primeni stroge korisničke dozvole označena i korisni
msgid "If Checked workflow status will not override status in list view"
msgstr "Ukoliko je označeno status radnog toka neće zameniti status u prikazu liste"
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Ukoliko je vlasnik"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "Ukoliko uloga nema pristup na nivou 0, viši nivoi nemaju značaj."
@@ -12595,12 +12714,20 @@ msgstr "Ukoliko nije podešeno, preciznost valute će zavisiti od formata broja"
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr "Ukoliko je podešeno, samo korisnici sa ovim ulogama mogu pristupiti ovom grafikonu. Ukoliko nije podešeno, koristiće se dozvole iz DocType-a ili izveštaja."
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr "Ukoliko korisnik omogući svojstvo maske za polje broj telefona, vrednost će biti prikazana u maskiranom formatu (npr. 811XXXXXXX)."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr "Ukoliko korisnik ima pristup zaposlenom licu i omogućeni su izveštaji, može pregledati izveštaje zasnovane na zaposlenim licima."
+
#. 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 "Ukoliko korisnik ima označenu bilo koju ulogu, postaje \"Sistemski korisnik\". \"Sistemski korisnik\" ima pristup radnoj površini"
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "Ukoliko Vam ove instrukcije nisu bile od pomoći, molimo Vas da dodate svoje predloge na GitHub Issues."
@@ -12700,7 +12827,7 @@ msgstr "Ignoriši priloge veće od ove veličine"
msgid "Ignored Apps"
msgstr "Ignorisane aplikacije"
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "Nevažeći status dokumenta za {0}"
@@ -12766,11 +12893,11 @@ msgstr "Pregled slike"
msgid "Image Width"
msgstr "Širina slike"
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "Polje slike mora biti važeći naziv polja"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "Polje slike mora biti vrste Priloži sliku"
@@ -12804,7 +12931,7 @@ msgstr "Zameni identitet kao {0}"
msgid "Impersonated by {0}"
msgstr "Identitet je zamenjen od strane {0}"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "Zamena identiteta za {0}"
@@ -12822,11 +12949,12 @@ msgstr "Implicitno"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "Uvoz"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Uvoz"
@@ -13049,15 +13177,15 @@ msgid "Include Web View Link in Email"
msgstr "Uključi link ka veb-prikazu u imejlu"
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "Uključi filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr "Uključi sakrivene kolone"
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "Uključi indentaciju"
@@ -13124,11 +13252,11 @@ msgstr "Pogrešno korisničko ime ili lozinka"
msgid "Incorrect Verification code"
msgstr "Pogrešan verifikacioni kod"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "Pogrešna vrednost u redu {0}:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "Pogrešna vrednost:"
@@ -13180,7 +13308,7 @@ msgstr "Indikator"
msgid "Indicator Color"
msgstr "Boja indikatora"
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "Boja indikatora"
@@ -13227,15 +13355,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "Unesi nakon"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "Unesi nakon ne može biti postavljeno kao {0}"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "Polje za unos nakon polja '{0}' pomenutog u prilagođenom polju '{1}', sa oznakom '{2}', ne postoji"
@@ -13265,8 +13393,8 @@ msgstr "Unesi stil"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "Instaliraj {0} iz prodavnice"
@@ -13292,15 +13420,15 @@ msgstr "Instalirane aplikacije"
msgid "Instructions"
msgstr "Uputstva"
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "Uputstva poslata imejlom"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "Nedovoljan nivo ovlašćenja za {0}"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "Nedovoljna ovlašćenja za {0}"
@@ -13368,7 +13496,7 @@ msgstr "Interesovanja"
msgid "Intermediate"
msgstr "Srednje"
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "Interna greška servera"
@@ -13377,6 +13505,11 @@ msgstr "Interna greška servera"
msgid "Internal record of document shares"
msgstr "Interna evidencija deljenja dokumenata"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+msgstr "Interval"
+
#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Intro Video URL"
@@ -13416,13 +13549,13 @@ msgid "Invalid"
msgstr "Nevažeće"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "Nevažeći \"depends_on\" izraz"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Nevažeći \"depends_on\" izraz postavljen u filteru {0}"
@@ -13462,7 +13595,7 @@ msgstr "Nevažeći datum"
msgid "Invalid DocType"
msgstr "Nevažeći DocType"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "Nevažeći DocType: {0}"
@@ -13470,7 +13603,8 @@ msgstr "Nevažeći DocType: {0}"
msgid "Invalid Doctype"
msgstr "Nevažeći DocType"
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "Nevažeći naziv polja"
@@ -13478,8 +13612,8 @@ msgstr "Nevažeći naziv polja"
msgid "Invalid File URL"
msgstr "Nevažeći URL fajla"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr "Nevažeći filter"
@@ -13503,7 +13637,7 @@ msgstr "Nevažeći link"
msgid "Invalid Login Token"
msgstr "Nevažeći token za prijavljivanje"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "Nevažeće prijavljivanje. Pokušajte ponovo."
@@ -13511,7 +13645,7 @@ msgstr "Nevažeće prijavljivanje. Pokušajte ponovo."
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Nevažeći imejl server. Ispravite i pokušajte ponovo."
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "Nevažeća serija imenovanja: {}"
@@ -13522,8 +13656,8 @@ msgstr "Nevažeća serija imenovanja: {}"
msgid "Invalid Operation"
msgstr "Nevažeća operacija"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "Nevažeća opcija"
@@ -13535,7 +13669,7 @@ msgstr "Nevažeći izlazni imejl server ili port: {0}"
msgid "Invalid Output Format"
msgstr "Nevažeći izlazni format"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "Nevažeća izmena"
@@ -13548,11 +13682,11 @@ msgstr "Nevažeći parametri."
msgid "Invalid Password"
msgstr "Nevažeća lozinka"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "Nevažeći broj telefona"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Nevažeći zahtev"
@@ -13561,7 +13695,7 @@ msgstr "Nevažeći zahtev"
msgid "Invalid Search Field {0}"
msgstr "Nevažeće polje pretrage {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "Nevažeći naziv polja tabele"
@@ -13580,7 +13714,7 @@ msgstr "Nevažeći URL"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Nevažeće korisničko ime ili lozinka za podršku. Ispravite i pokušajte ponovo."
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "Nevažeće vrednosti"
@@ -13592,7 +13726,7 @@ msgstr "Nevažeća tajna za Webhook"
msgid "Invalid aggregate function"
msgstr "Nevažeća agregatna funkcija"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Nevažeći format pseudonima: {0}. Pseudonim mora biti jednostavan identifikator."
@@ -13600,19 +13734,19 @@ msgstr "Nevažeći format pseudonima: {0}. Pseudonim mora biti jednostavan ident
msgid "Invalid app"
msgstr "Nevažeća aplikacija"
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
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:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr "Nevažeća vrsta argumenta: {0}. Dozvoljeni su samo tekstovi, brojevi, rečnici i None."
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
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:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr "Nevažeći karakteri u nazivu tabele: {0}"
@@ -13620,18 +13754,22 @@ msgstr "Nevažeći karakteri u nazivu tabele: {0}"
msgid "Invalid column"
msgstr "Nevažeća kolona"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr "Nevažeća vrsta uslova u ugnježdenom filteru: {0}"
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
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:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "Nevažeći status dokumenta"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr "Nevažeći izraz u vrednosti ažuriranja radnog toka: {0}"
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "Nevažeći izraz postavljen u filteru {0}"
@@ -13640,11 +13778,11 @@ msgstr "Nevažeći izraz postavljen u filteru {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Nevažeći izraz postavljen u filteru {0} ({1})"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
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:1184
+#: frappe/database/query.py:1227
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'."
@@ -13652,11 +13790,11 @@ msgstr "Nevažeći format polja u {0}: {1}. Koristite 'field', 'link_field.field
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr "Nevažeća vrsta polja: {0}"
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju"
@@ -13664,11 +13802,11 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju"
msgid "Invalid file path: {0}"
msgstr "Nevažeća putanja fajla: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
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:791
+#: frappe/database/query.py:825
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'."
@@ -13676,7 +13814,7 @@ msgstr "Nevažeći format polja za filter: {0}. Koristite 'fieldname' or 'link_f
msgid "Invalid filter: {0}"
msgstr "Nevažeći filter: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
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."
@@ -13693,19 +13831,19 @@ msgstr "Nevažeći JSON dodat u prilagođene opcije: {0}"
msgid "Invalid key"
msgstr "Nevažeći ključ"
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "Nevažeća vrsta naziva (ceo broj) za kolonu sa nazivom tipa varchar"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "Nevažeća serija imenovanja {}: nedostaje tačka (.)"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr "Nevažeća serija imenovanja {}: nedostaje tačka (.) pre rezervisanih numeričkih karaktera. Molimo Vas da koristite format poput ABCD.#####."
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr "Nevažeći ugnježdeni izraz: Rečnik mora predstavljati funkciju ili operator"
@@ -13729,11 +13867,11 @@ msgstr "Nevažeće telo zahteva"
msgid "Invalid role"
msgstr "Nevažeća uloga"
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr "Nevažeći jednostavni format filtera: {0}"
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
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."
@@ -13750,24 +13888,24 @@ msgstr "Nevažeće stanje tokena! Proverite da li je token kreiran od strane OAu
msgid "Invalid username or password"
msgstr "Nevažeće korisničko ime ili lozinka"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "Nevažeća vrednost za UUID: {}"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "Nevažeće vrednosti za polja:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "Nevažeća verzija wkhtmltopdf"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "Nevažeći uslov za {0}"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr "Nevažeći format rečnika {0}"
@@ -13895,7 +14033,7 @@ msgstr "Dinamički URL?"
msgid "Is Folder"
msgstr "Datoteka"
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Globalno"
@@ -13966,7 +14104,7 @@ msgstr "Javno"
msgid "Is Published Field"
msgstr "Objavljeno polje"
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "Objavljeno polje mora biti važeći naziv polja"
@@ -14211,8 +14349,8 @@ msgstr "Zadatak je uspešno zaustavljen"
msgid "Join video conference with {0}"
msgstr "Pridruži se video-konferenciji sa {0}"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "Idi na polje"
@@ -14535,7 +14673,7 @@ msgstr "Oznaka pomoći"
msgid "Label and Type"
msgstr "Oznaka i vrsta"
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "Oznaka je obavezna"
@@ -14558,7 +14696,7 @@ msgstr "Pejzažni"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Jezik"
@@ -14604,6 +14742,14 @@ msgstr "Poslednjih 90 dana"
msgid "Last Active"
msgstr "Poslednja aktivnost"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr "Poslednju izmenu izvršili ste Vi"
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+msgstr "Poslednja izmena je izvršena od strane {0}"
+
#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Last Execution"
@@ -14728,6 +14874,11 @@ msgstr "Prošla godina"
msgid "Last synced {0}"
msgstr "Poslednji put sinhronizovano {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "Raspored"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "Reset rasporeda"
@@ -14755,9 +14906,15 @@ msgstr "Napusti ovaj razgovor"
msgid "Ledger"
msgstr "Knjiga"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14851,7 +15008,7 @@ msgstr "Pismo"
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14880,7 +15037,7 @@ msgstr "Naziv zaglavlja"
msgid "Letter Head Scripts"
msgstr "Skripte za zaglavlje"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "Zaglavlje ne može biti i onemogućeno i podrazumevano"
@@ -14902,7 +15059,7 @@ msgstr "Zaglavlje u HTML-u"
msgid "Level"
msgstr "Nivo"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "Nivo 0 je za dozvole na nivou dokumenta, viši nivoi su za dozvole na nivou polja."
@@ -14943,7 +15100,7 @@ msgstr "Svetla tema"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Lajk"
@@ -14967,7 +15124,7 @@ msgstr "Lajkovanja"
msgid "Limit"
msgstr "Limit"
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr "Ograničenje mora biti pozitivan ceo broj"
@@ -15093,7 +15250,7 @@ msgstr "Naslov linka"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -15111,7 +15268,7 @@ msgstr "Link ka u redu"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr "Vrsta linka"
@@ -15154,6 +15311,7 @@ msgstr "LinkedIn"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15175,8 +15333,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr "Lista"
@@ -15206,7 +15364,7 @@ msgstr "Filter liste"
msgid "List Settings"
msgstr "Podešavanje liste"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Podešavanje liste"
@@ -15220,7 +15378,7 @@ msgstr "Prikaz liste"
msgid "List View Settings"
msgstr "Podešavanje prikaza liste"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "Izlistiraj vrstu dokumenta"
@@ -15247,7 +15405,7 @@ msgstr "Lista izvršenih zakrpa"
msgid "List setting message"
msgstr "Poruka podešavanja liste"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "Liste"
@@ -15256,7 +15414,7 @@ msgstr "Liste"
msgid "Load Balancing"
msgstr "Balansiranje opterećenja"
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15274,10 +15432,10 @@ msgstr "Učita više"
#: 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "Učitavanje"
@@ -15294,8 +15452,8 @@ msgid "Loading versions..."
msgstr "Učitavanje verzija..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15305,7 +15463,8 @@ msgid "Loading..."
msgstr "Učitavanje..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr "Lokacija"
@@ -15378,6 +15537,11 @@ msgstr "Odjavljeni ste"
msgid "Login"
msgstr "Prijava"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr "Aktivnost prijavljivanja"
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15453,7 +15617,7 @@ msgstr "Prijavite se da biste započeli novu diskusiju"
msgid "Login to {0}"
msgstr "Prijavljivanje na {0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "Neophodan je token za prijavu"
@@ -15520,8 +15684,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr "Odjava sa svih uređaja nakon promene 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
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Evidencije"
@@ -15552,7 +15715,7 @@ msgstr "Izgleda da niste promenili vrednost"
msgid "Looks like you haven’t added any third party apps."
msgstr "Izgleda da niste dodali nijednu eksternu aplikaciju."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "Izgleda da niste primili nijedno obaveštenje."
@@ -15702,7 +15865,7 @@ msgstr "Obavezna polja su neophodna u tabeli {0}, red {1}"
msgid "Mandatory fields required in {0}"
msgstr "Obavezna polja su neophodna u {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "Obavezna polja su neophodna:"
@@ -15764,7 +15927,7 @@ msgstr "Gornja margina"
msgid "MariaDB Variables"
msgstr "MariaDB promenljive"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "Označi sve kao pročitano"
@@ -15816,9 +15979,12 @@ msgstr "Menadžer marketinga"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "Maska"
@@ -15880,7 +16046,7 @@ msgstr "Maksimalan broj automatskih izveštaja po korisniku"
msgid "Max signups allowed per hour"
msgstr "Maksimalan broj prijavljivanja po satu"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "Maksimalna širina za vrstu valute je 100px u redu {0}"
@@ -15901,20 +16067,27 @@ msgstr "Dostignut je maksimalni broj priloga od {0}."
msgid "Maximum {0} rows allowed"
msgstr "Dozvoljeno je najviše {0} redova"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr "Možda"
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Ja"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "Značenje opcija podnesi, otkaži, izmeni"
+msgid "Meaning of Different Permission Types"
+msgstr "Značenje različitih vrsta dozvola"
#. 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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15958,12 +16131,12 @@ msgstr "Pominjanje"
msgid "Mentions"
msgstr "Pominjanja"
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "Meni"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Spoji sa postojećim"
@@ -15997,13 +16170,13 @@ msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora"
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Poruka"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Poruka"
@@ -16034,7 +16207,7 @@ msgstr "Poruka poslata"
msgid "Message Type"
msgstr "Vrsta poruke"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Poruka je skraćena"
@@ -16131,7 +16304,7 @@ msgstr "Metapodaci"
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "Metoda nije dozvoljena"
@@ -16220,7 +16393,7 @@ msgstr "Propušteno"
msgid "Missing DocType"
msgstr "Nedostajući DocType"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "Nedostajuće polje"
@@ -16240,7 +16413,7 @@ msgstr "Nedostajuće dozvole"
msgid "Missing Value"
msgstr "Nedostajuće vrednosti"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16305,7 +16478,7 @@ msgstr "Pokretač modalnog prozora"
#: 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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16352,9 +16525,8 @@ msgstr "Modul uvodne obuke"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "Profil modula"
@@ -16371,7 +16543,7 @@ msgstr "Napredak modula uvodne obuke je resetovan"
msgid "Module to Export"
msgstr "Modul za izvoz"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "Modul {} nije pronađen"
@@ -16486,7 +16658,7 @@ msgstr "Više članaka o {0}"
msgid "More content for the bottom of the page."
msgstr "Dodatni sadržaj za dno stranice."
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "Najviše korišćeno"
@@ -16501,7 +16673,7 @@ msgstr "Verovatno je Vaša lozinka predugačka."
msgid "Move"
msgstr "Premesti"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Premesti u"
@@ -16513,19 +16685,19 @@ msgstr "Premesti u smeće"
msgid "Move current and all subsequent sections to a new tab"
msgstr "Premesti trenutni i sve sledeće odeljke u novu karticu"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "Premesti kursor na gornji red"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "Premesti kursor na donji red"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "Premesti kursor na sledeću kolonu"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "Premesti kursor na prethodnu kolonu"
@@ -16537,7 +16709,7 @@ msgstr "Premesti odeljke u novu karticu"
msgid "Move the current field and the following fields to a new column"
msgstr "Premesti trenutno polje i sledeća polja u novu kolonu"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Premesti na broj reda"
@@ -16655,7 +16827,7 @@ msgstr "Naziv (Dokumenta)"
msgid "Name already taken, please set a new name"
msgstr "Naziv je već zauzet, molimo Vas da postavite novi naziv"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "Naziv ne može sadržati specijalne karaktere kao što je {0}"
@@ -16667,7 +16839,7 @@ msgstr "Naziv vrste dokumenta (DocType) sa kojim želite da bude povezano ovo po
msgid "Name of the new Print Format"
msgstr "Naziv novog formata za štampanje"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "Naziv {0} ne može biti {1}"
@@ -16708,7 +16880,7 @@ msgstr "Pravilo imenovanja"
msgid "Naming Series"
msgstr "Serija imenovanja"
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Serija imenovanja je obavezna"
@@ -16732,11 +16904,6 @@ msgstr "Stavka navigacione trake"
msgid "Navbar Settings"
msgstr "Podešavanje navigacione trake"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-msgstr "Stil navigacione 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'
@@ -16750,39 +16917,44 @@ msgstr "Šablon navigacione trake"
msgid "Navbar Template Values"
msgstr "Vrednosti šablona navigacione trake"
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Pomeri listu prema dole"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Pomeri listu prema gore"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "Idi na glavni sadržaj"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr "Navigaciona dugmad"
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr "Podešavanje navigacije"
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "Treba Vam pomoć?"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
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:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Negativna vrednost"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr "Ugnježdeni filteri moraju biti predati kao lista ili tuple."
@@ -16804,6 +16976,7 @@ msgstr "Nikada"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16820,7 +16993,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "Nova adresa"
@@ -16836,8 +17009,8 @@ msgstr "Novi kontakt"
msgid "New Custom Block"
msgstr "Novi prilagođeni blok"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "Novi prilagođeni format štampe"
@@ -16886,7 +17059,7 @@ msgstr "Nova poruka sa kontakt stranice veb-sajta"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Novi naziv"
@@ -16907,8 +17080,8 @@ msgstr "Nova uvodna obuka"
msgid "New Password"
msgstr "Nova lozinka"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Novi naziv formata štampe"
@@ -16935,8 +17108,8 @@ msgstr "Nova prečica"
msgid "New Users (Last 30 days)"
msgstr "Novi korisnici (prethodnih 30 dana)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "Nova vrednost"
@@ -16944,7 +17117,7 @@ msgstr "Nova vrednost"
msgid "New Workflow Name"
msgstr "Novi naziv radnog toka"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "Novi radni prostor"
@@ -16989,32 +17162,32 @@ msgstr "Novi korisnici će morati biti ručno registrovani od strane sistem mena
msgid "New value to be set"
msgstr "Nova vrednost treba da bude postavljena"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Novi {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Novi {0} kreiran"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
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:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "Novi {0} {1} kreiran"
@@ -17026,7 +17199,7 @@ msgstr "Novi {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Novi {} verzije za sledeće aplikacija su dostupne"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "Novokreirani korisnik {0} nema omogućene uloge."
@@ -17047,7 +17220,7 @@ msgstr "Menadžer biltena"
msgid "Next"
msgstr "Sledeće"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "Sledeće"
@@ -17074,12 +17247,16 @@ msgstr "Narednih 7 dana"
msgid "Next Action Email Template"
msgstr "Šablon za sledeću radnju putem imejla"
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+msgstr "Sledeće akcije"
+
#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Next Actions HTML"
msgstr "HTML za sledeće radnje"
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr "Sledeći dokument"
@@ -17146,20 +17323,24 @@ msgstr "Sledeće na klik"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -17229,7 +17410,7 @@ msgstr "Nijedan filter nije podešen"
msgid "No Google Calendar Event to sync."
msgstr "Nema Google Calendar događaja za sinhronizaciju."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "Nema slika"
@@ -17248,23 +17429,23 @@ msgstr "Nijedan LDAP korisnik nije pronađen za imejl: {0}"
msgid "No Label"
msgstr "Nema oznake"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: 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 "Nema zaglavlja"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "Nije naveden naziv za {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "Nema novih obaveštenja"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "Dozvole nisu navedene"
@@ -17284,11 +17465,11 @@ msgstr "Nema dozvoljenih grafikona na kontrolnoj tabli"
msgid "No Preview"
msgstr "Nema pregleda"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "Pregled nije dostupan"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "Nijedan štampač nije dostupan."
@@ -17296,7 +17477,7 @@ msgstr "Nijedan štampač nije dostupan."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "Nema povezanih RQ Worker-a. Pokušajte da restartujete bench."
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "Nema rezultata"
@@ -17304,7 +17485,7 @@ msgstr "Nema rezultata"
msgid "No Results found"
msgstr "Nijedan rezultat nije pronađen"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "Uloge nisu navedene"
@@ -17320,7 +17501,7 @@ msgstr "Nema predloga"
msgid "No Tags"
msgstr "Nema oznaka"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "Nema predstojećih događaja"
@@ -17340,7 +17521,7 @@ msgstr "Nema dostupnih automatskih predloga za optimizaciju."
msgid "No changes in document"
msgstr "Nema promena u dokumentu"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "Nije izvršena nijedna promena"
@@ -17404,7 +17585,7 @@ msgstr "Nije pronađeno polje koje može biti korišćeno kao Kanban kolona. Kor
msgid "No file attached"
msgstr "Nema priloženih fajlova"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "Nijedan filter nije pronađen"
@@ -17452,11 +17633,11 @@ msgstr "Broj redova (maksimalno 500)"
msgid "No of Sent SMS"
msgstr "Broj poslatih SMS poruka"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "Ne postoji dozvola za {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Ne postoji dozvola za '{0}' {1}"
@@ -17465,7 +17646,7 @@ msgstr "Ne postoji dozvola za '{0}' {1}"
msgid "No permission to read {0}"
msgstr "Ne postoji dozvola za čitanje {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "Ne postoji dozvola za {0} {1} {2}"
@@ -17481,7 +17662,7 @@ msgstr "Nijedan zapis nije dostupan u {0}"
msgid "No records tagged."
msgstr "Nema označenih zapisa."
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "Nijedan zapis neće biti izvezen"
@@ -17489,7 +17670,7 @@ msgstr "Nijedan zapis neće biti izvezen"
msgid "No rows"
msgstr "Nema redova"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr "Nema izabranih redova"
@@ -17501,11 +17682,12 @@ msgstr "Nema naslova"
msgid "No template found at path: {0}"
msgstr "Nije pronađen šablon na putanji: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr "Nijedan korisnik nema ulogu {0}"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "Nema vrednosti za prikaz"
@@ -17517,7 +17699,7 @@ msgstr "Nema {0}"
msgid "No {0} found"
msgstr "Nije pronađen nijedan {0}"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Nema {0} koji odgovaraju filterima. Očistite filtere da vidite sve {0}."
@@ -17526,7 +17708,7 @@ msgid "No {0} mail"
msgstr "Nema {0} pošte"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Br."
@@ -17569,12 +17751,12 @@ msgstr "Normalizovane kopije"
msgid "Normalized Query"
msgstr "Normalizovani upiti"
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "Nije dozvoljeno"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "Nije dozvoljeno: Korisnik je onemogućen"
@@ -17616,7 +17798,7 @@ msgstr "Nije povezani ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Ne može biti prazno"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17625,7 +17807,7 @@ msgstr "Ne može biti prazno"
msgid "Not Permitted"
msgstr "Nije dozvoljeno"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "Nije dozvoljeno za čitanje {0}"
@@ -17634,8 +17816,8 @@ msgstr "Nije dozvoljeno za čitanje {0}"
msgid "Not Published"
msgstr "Nije objavljeno"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17655,7 +17837,7 @@ msgstr "Nije viđeno"
msgid "Not Sent"
msgstr "Nije poslato"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "Nije postavljeno"
@@ -17669,15 +17851,15 @@ 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:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "Nevažeća slika korisnika."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "Nevažeća radnja radnog toka"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "Nevažeći korisnik"
@@ -17685,7 +17867,7 @@ msgstr "Nevažeći korisnik"
msgid "Not active"
msgstr "Nije aktivno"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "Nije dozvoljeno za {0}: {1}"
@@ -17705,11 +17887,11 @@ msgstr "Nije dozvoljeno štampanje otkazanih dokumenata"
msgid "Not allowed to print draft documents"
msgstr "Nije dozvoljeno štampanje dokumenata u nacrtu"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "Nije dozvoljeno prema proverenim dozvolama kontrolera"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Nije pronađeno"
@@ -17722,11 +17904,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Nije u razvojnom režimu! Postavite u site_config.json ili napravite 'Prilagođeni' DocType."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nije dozvoljeno"
@@ -17754,7 +17936,7 @@ msgstr "Napomena viđena od strane"
msgid "Note:"
msgstr "Napomena:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Napomena: Promena naziva stranica će prekinuti prethodni URL ka ovoj stranici."
@@ -17786,7 +17968,7 @@ msgstr "Napomena: Vaš zahtev za brisanje naloga biće ispunjen u roku od {0} č
msgid "Notes:"
msgstr "Napomene:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "Nema ničeg novog"
@@ -17798,8 +17980,8 @@ msgstr "Nema više stavki za ponavljanje"
msgid "Nothing left to undo"
msgstr "Nema više stavki za opoziv"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17810,11 +17992,13 @@ msgid "Nothing to update"
msgstr "Nema ničega za ažuriranje"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "Obaveštenje"
@@ -17830,7 +18014,7 @@ msgstr "Primalac obaveštenja"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "Podešavanje obaveštenja"
@@ -17839,11 +18023,6 @@ msgstr "Podešavanje obaveštenja"
msgid "Notification Subscribed Document"
msgstr "Dokument na koji je korisnik pretplaćen za obaveštenja"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr "Rezime obaveštenja"
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "Obaveštenje poslato ka"
@@ -17861,13 +18040,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "Obaveštenje: korisnik {0} nema podešen 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Obaveštenja"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "Obaveštenja onemogućena"
@@ -18103,7 +18284,7 @@ msgstr "Tajna za jednokratnu lozinku je resetovana. Ponovna registracija biće n
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr "Rezervisani tekst za jednokratnu lozinku treba da bude definisan kao {{ otp }} "
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "Postavke jednokratne lozinke pomoću aplikacije za jednokratnu lozinku nisu završene. Molimo Vas da kontaktirate administratora."
@@ -18143,7 +18324,7 @@ msgstr "Pomak X"
msgid "Offset Y"
msgstr "Pomak Y"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "Pomak mora biti pozitivan ceo broj"
@@ -18151,7 +18332,7 @@ msgstr "Pomak mora biti pozitivan ceo broj"
msgid "Old Password"
msgstr "Stara lozinka"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Stari i novi nazivi polja su isti."
@@ -18218,7 +18399,7 @@ msgstr "Na ili nakon"
msgid "On or Before"
msgstr "Na ili pre"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "Na {0}, {1} je napisao/la:"
@@ -18262,7 +18443,7 @@ msgstr "Uvodna obuka završena"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Jednom kada su podneti, dokumenti koji se mogu podneti ne mogu se menjati. Mogu se samo otkazati ili izmeniti."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "Kada ovo postavite, korisnici će moći pristupiti samo dokumentima (npr. objave na blogu) gde link postoji (npr. bloger)."
@@ -18278,11 +18459,11 @@ msgstr "Kod za registraciju jednokratne lozinke (OTP) sa {}"
msgid "One of"
msgstr "Jedan od"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Dozvoljeno je isključivo 200 unosa po zahtevu"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Isključivo administrator može obrisati red čekanja imejlova"
@@ -18303,7 +18484,7 @@ msgstr "Isključivo administrator može da koristi alat za snimanje"
msgid "Only Allow Edit For"
msgstr "Dozvoli uređivanje samo za"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Jedine opcije dozvoljene za polje podataka su:"
@@ -18326,11 +18507,11 @@ msgstr "Isključivo menadžer radnog prostora može da uređuje javne radne pros
msgid "Only allow System Managers to upload public files"
msgstr "Isključivo sistem menadžeri mogu da otpremaju javne fajlove"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "Izvoz prilagođavanja je dozvoljen samo u razvojnom režimu"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Isključivo nacrti dokumenata mogu biti odbačeni"
@@ -18373,7 +18554,7 @@ msgstr "Isključivo dodeljeni korisnik može završiti ovaj zadatak."
msgid "Only {0} emailed reports are allowed per user."
msgstr "Dozvoljeno je isključivo {0} izveštaja poslatih putem imejla po korisniku."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Ups! Došlo je do greške."
@@ -18396,8 +18577,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Otvori"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18433,6 +18614,10 @@ msgstr "Otvori referentni dokument"
msgid "Open Settings"
msgstr "Otvori podešavanja"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr "Otvori bočnu traku"
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Aplikacije otvorenog koda za veb"
@@ -18447,7 +18632,7 @@ msgstr "Otvori URL u novoj kartici"
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 "Otvori dijalog sa obaveznim poljima za brzo kreiranje novog zapisa. Dijalog će biti prikazan samo ukoliko postoji bar jedno obavezno polje."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Otvori modul ili alat"
@@ -18459,11 +18644,11 @@ msgstr "Otvori konzolu"
msgid "Open in a new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr "Otvori u novoj kartici"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Otvorene stavke"
@@ -18478,16 +18663,16 @@ msgstr "Otvori aplikaciju za autentifikaciju na svom telefonu."
#: 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:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Otvori {0}"
@@ -18519,7 +18704,7 @@ msgstr "Operacija"
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od sledećih {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr "Operator {0} zahteva tačno 2 argumenta (levi i desni operand)"
@@ -18545,7 +18730,7 @@ msgstr "Opcija 2"
msgid "Option 3"
msgstr "Opcija 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "Opcija {0} za polje {1} nije zavisna tabela"
@@ -18579,7 +18764,7 @@ msgstr "Opciono: Upozorenje će biti poslato ukoliko je ovaj izraz tačan"
msgid "Options"
msgstr "Opcije"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Opcija 'Dinamički link' mora da pokazuje na drugo link polje čije su opcije 'DocType'"
@@ -18588,7 +18773,7 @@ msgstr "Opcija 'Dinamički link' mora da pokazuje na drugo link polje čije su o
msgid "Options Help"
msgstr "Pomoć za opcije"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Opcije za polje ocenjivanja mogu biti u rasponu od 3 do 10"
@@ -18596,7 +18781,7 @@ msgstr "Opcije za polje ocenjivanja mogu biti u rasponu od 3 do 10"
msgid "Options for select. Each option on a new line."
msgstr "Opcije za odabir. Svaka opcija u novom redu."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Opcije za {0} moraju biti podešene pre nego što se postavi podrazumevana vrednost."
@@ -18604,7 +18789,7 @@ msgstr "Opcije za {0} moraju biti podešene pre nego što se postavi podrazumeva
msgid "Options is required for field {0} of type {1}"
msgstr "Opcije su neophodne za polje {0} vrste {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Opcije nisu postavljene za link polje {0}"
@@ -18620,7 +18805,7 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Redosled"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "Sortiraj po mora biti tekst"
@@ -18640,8 +18825,12 @@ msgstr "Naslov istorije organizacije"
msgid "Orientation"
msgstr "Orijentacija"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr "Original"
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Originalna vrednost"
@@ -18716,18 +18905,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF se generiše"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF Generator"
@@ -18751,7 +18942,7 @@ msgstr "Širina PDF stranice (u mm)"
msgid "PDF Settings"
msgstr "Podešavanje PDF"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "Generisanje PDF-a nije uspelo"
@@ -18759,11 +18950,11 @@ msgstr "Generisanje PDF-a nije uspelo"
msgid "PDF generation failed because of broken image links"
msgstr "Generisanje PDF-a nije uspelo zbog neispravnih linkova ka slikama"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "Generisanje PDF-a možda neće raditi kako je očekivano."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "Štampanje PDF-a putem opcije \"Neobrađena štampa\" nije podržano."
@@ -18922,7 +19113,7 @@ msgstr "Širina stranice (u mm)"
msgid "Page has expired!"
msgstr "Stranica je istekla!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Visina i širina stranice ne mogu biti nula"
@@ -18938,7 +19129,7 @@ msgstr "Stranica koja će biti prikazana na veb-sajtu\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:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Strana {0} od {1}"
@@ -18949,7 +19140,7 @@ msgid "Parameter"
msgstr "Parametar"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Matični"
@@ -18982,11 +19173,11 @@ msgstr "Matično polje"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Matično polje (stablo)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Matično polje mora biti važeći naziv polja"
@@ -19000,7 +19191,7 @@ msgstr "Matična ikonica"
msgid "Parent Label"
msgstr "Matična oznaka"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "Matični entitet nedostaje"
@@ -19025,11 +19216,11 @@ msgstr "Matični označava naziv dokumenta u koji će se podaci dodati."
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:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "Matično polje nije navedeno u {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "Matična vrsta, matični entitet i matično polje su neophodni za unos zavisnog zapisa"
@@ -19048,7 +19239,7 @@ msgstr "Delimičan uspeh"
msgid "Partially Sent"
msgstr "Delimično poslato"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Učesnici"
@@ -19085,11 +19276,11 @@ msgstr "Pasivan"
msgid "Password"
msgstr "Lozinka"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "Imejl sa lozinkom poslat"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Resetovanje lozinke"
@@ -19098,7 +19289,7 @@ msgstr "Resetovanje lozinke"
msgid "Password Reset Link Generation Limit"
msgstr "Ograničenje za generisanje linkova za resetovanje lozinke"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "Lozinka se ne može filtrirati"
@@ -19127,11 +19318,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:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr "Zahtevi za lozinku nisu ispunjeni"
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}"
@@ -19143,7 +19334,7 @@ msgstr "Lozinka postavljena"
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke premašuje dozvoljenu granicu"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "Dužina lozinke premašuje dozvoljenu granicu."
@@ -19205,7 +19396,7 @@ msgstr "Putanja do server sertifikata"
msgid "Path to private Key File"
msgstr "Putanja do fajla sa privatnim ključem"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "Putanja {0} se ne nalazi unutar modula {1}"
@@ -19290,15 +19481,15 @@ msgstr "Nivo dozvole"
msgid "Permanent"
msgstr "Trajno"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "Trajno otkazati {0}?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "Trajno odbaciti {0}?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "Trajno podneti {0}?"
@@ -19306,7 +19497,11 @@ msgstr "Trajno podneti {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno obrisati {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr "Dozvola"
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Greška u dozvolama"
@@ -19316,12 +19511,12 @@ msgid "Permission Inspector"
msgstr "Pregled pristupnih dozvola"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Nivo dozvola"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Nivoi dozvola"
@@ -19330,11 +19525,6 @@ msgstr "Nivoi dozvola"
msgid "Permission Log"
msgstr "Evidencija dozvola"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "Menadžer dozvola"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19365,7 +19555,6 @@ msgstr "Vrsta dozvole '{0}' je rezervisana. Molimo Vas da izaberete drugi naziv.
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19376,13 +19565,12 @@ msgstr "Vrsta dozvole '{0}' je rezervisana. Molimo Vas da izaberete drugi naziv.
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Dozvole"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Greška u dozvolama"
@@ -19394,11 +19582,11 @@ msgstr "Dozvole se automatski primenjuju na standardne izveštaje i pretrage."
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 "Dozvole se postavljaju na uloge i vrste dokumenata (koji se nazivaju DocTypes) dodeljivanjem prava kao što su čitanje, pisanje, kreiranje, uklanjanje, podnošenje, otkazivanje, izmenjivanje, izveštaj, uvoz, izvoz, štampa, imejl i postavljanje korisničkih dozvola."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "Dozvole na višim nivoima su dozvole na nivou polja. Svako polje ima dodeljeni nivo dozvole, a pravila definisana tim nivoima primenjuju se na ovo polje. Ovo je korisno u slučaju kada želite da sakrijete ili postavite određeno polje kao samo za čitanje za određene uloge."
-#: frappe/core/page/permission_manager/permission_manager_help.html:24
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Dozvole na nivou 0 su dozvole na nivou dokumenta, tj. one su osnovne za pristup dokumentu."
@@ -19468,13 +19656,13 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon br."
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
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:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Izaberite kolone"
@@ -19532,7 +19720,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Molimo Vas da postavite grafikon"
@@ -19548,7 +19736,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:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Molimo Vas da zatražite od administratora da verifikuje Vašu registraciju"
@@ -19556,11 +19744,11 @@ msgstr "Molimo Vas da zatražite od administratora da verifikuje Vašu registrac
msgid "Please attach a file first."
msgstr "Molimo Vas da prvo priložite fajl."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Molimo Vas da priložite sliku kako biste postavili HTML za podnožje."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Molimo Vas da priložite sliku kako biste postavili HTML za zaglavlje."
@@ -19572,11 +19760,11 @@ msgstr "Molimo Vas da priložite paket"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Molimo Vas da proverite vrednosti filtera postavljene za grafikon za kontrolnoj tabli: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
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:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Molimo Vas da proverite svoj imejl za verifikaciju"
@@ -19608,7 +19796,7 @@ msgstr "Molimo Vas da kliknete na sledeći link da biste postavili novu lozinku"
msgid "Please confirm your action to {0} this document."
msgstr "Molimo Vas da potvrdite svoju radnju kako biste {0} ovaj dokument."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Molimo Vas da kontaktirate sistem menadžera kako biste instalirali ispravnu verziju."
@@ -19638,10 +19826,10 @@ msgstr "Molimo Vas da omogućite barem jedan ključ za prijavljivanje putem dru
#: 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Molimo Vas da omogućite iskačuće prozore"
@@ -19654,7 +19842,7 @@ msgstr "Molimo Vas da omogućite iskačuće prozore u Vašem internet pretraživ
msgid "Please enable {} before continuing."
msgstr "Molimo Vas da omogućite {} pre nego što nastavite."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Molimo Vas da se uverite da Vaš profil sadrži imejl adresu"
@@ -19728,15 +19916,15 @@ 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:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Molimo Vas da osvežite kako biste dobili najnoviji dokument."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Molimo Vas da uklonite mapiranje štampača u podešavanjima štampe i pokušate ponovo."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Molimo Vas da sačuvate pre nego što priložite."
@@ -19752,7 +19940,7 @@ msgstr "Molimo Vas da sačuvate dokument pre uklanjanja dodeljivanja"
msgid "Please save the form before previewing the message"
msgstr "Molimo Vas da sačuvate obrazac pre pregleda poruke"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Molimo Vas da prvo sačuvate izveštaj"
@@ -19772,7 +19960,7 @@ 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:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Molimo Vas da izaberete X i Y polja"
@@ -19780,7 +19968,7 @@ msgstr "Molimo Vas da izaberete X i Y polja"
msgid "Please select a DocType in options before setting filters"
msgstr "Molimo Vas da izaberete DocType u opcijama pre postavljanja filtera"
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Molimo Vas da izaberete šifru države za polje {1}."
@@ -19830,11 +20018,11 @@ msgstr "Molimo Vas da izaberete {0}"
msgid "Please set Email Address"
msgstr "Molimo Vas da postavite imejl adresu"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
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:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Molimo Vas da postavite filtere"
@@ -19842,7 +20030,7 @@ msgstr "Molimo Vas da postavite filtere"
msgid "Please set filters value in Report Filter table."
msgstr "Molimo Vas da postavite vrednosti filtera u tabeli filter izveštaja."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Molimo Vas da postavite naziv dokumenta"
@@ -19862,7 +20050,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:462
+#: frappe/core/doctype/user/user.py:465
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"
@@ -19874,7 +20062,7 @@ msgstr "Molimo Vas da postavite podrazumevani izlazni imejl nalog iz Alati > Ime
msgid "Please specify"
msgstr "Molimo Vas da navedete"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Molimo Vas da navedete važeći matični DocType za {0}"
@@ -19902,7 +20090,7 @@ msgstr "Molimo Vas da navedete koje polje za datum i vreme mora biti provereno"
msgid "Please specify which value field must be checked"
msgstr "Molimo Vas da navedete koje polje za vrednost mora biti provereno"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Molimo Vas da pokušate ponovo"
@@ -20023,11 +20211,11 @@ msgstr "Vreme objave"
msgid "Precision"
msgstr "Preciznost"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "Preciznost ({0}) za {1} ne može biti veća od njegove dužine ({2})."
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Preciznost treba da bude između 1 i 6"
@@ -20079,11 +20267,11 @@ msgstr "Korisnik pripremljenog izveštaja"
msgid "Prepared report render failed"
msgstr "Prikaz pripremljenog izveštaja nije uspeo"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Priprema izveštaja"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Dodaj šablon na početak imejl poruke"
@@ -20091,7 +20279,7 @@ msgstr "Dodaj šablon na početak imejl poruke"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Pritisnite taster Alt da biste aktivirali dodatne prečice u meniju i bočnoj traci"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Pritisnite Enter da sačuvate"
@@ -20109,7 +20297,7 @@ msgstr "Pritisnite Enter da sačuvate"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Pregled"
@@ -20153,16 +20341,16 @@ msgstr "Pregled:"
msgid "Previous"
msgstr "Prethodno"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Prethodno"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Prethodni dokument"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Prethodno podnošenje"
@@ -20215,19 +20403,19 @@ msgstr "Primarni ključ za doctype {0} ne može biti promenjen jer sadrži posto
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Štampa"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Štampa"
@@ -20245,8 +20433,9 @@ msgstr "Štampa dokumenta"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20290,7 +20479,7 @@ msgstr "Pomoć za format štampe"
msgid "Print Format Type"
msgstr "Vrsta formata štampe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "Format štampe nije pronađen"
@@ -20323,11 +20512,11 @@ msgstr "Sakrij štampu"
msgid "Print Hide If No Value"
msgstr "Sakrij štampu ukoliko nema vrednosti"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Jezik štampe"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Štampa je poslata na štampač!"
@@ -20340,8 +20529,8 @@ msgstr "Server za štampu"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Podešavanje štampe"
@@ -20380,7 +20569,7 @@ msgstr "Širina štampe"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "Širina polja za štampu, ukoliko je polje kolona u tabeli"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Štampa dokumenta"
@@ -20389,11 +20578,11 @@ msgstr "Štampa dokumenta"
msgid "Print with letterhead"
msgstr "Štampa sa zaglavljem"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Štampač"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Mapiranje štampača"
@@ -20403,15 +20592,15 @@ msgstr "Mapiranje štampača"
msgid "Printer Name"
msgstr "Naziv štampača"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Podešavanje štampača"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Mapiranje štampača nije podešeno."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Štampanje neuspešno"
@@ -20460,7 +20649,7 @@ msgstr "Savet: Dodaje Reference: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Ipak nastavi"
@@ -20500,9 +20689,9 @@ msgid "Project"
msgstr "Projekat"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "Svojstvo"
@@ -20572,7 +20761,7 @@ msgstr "Naziv provajdera"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Javni"
@@ -20722,7 +20911,7 @@ msgstr "QR kod"
msgid "QR Code for Login Verification"
msgstr "QR kod za verifikaciju prijavljivanja"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ Tray neuspešno:"
@@ -20784,7 +20973,7 @@ msgstr "Upit mora biti vrste SELECT ili read-only."
msgid "Queue"
msgstr "Red"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "Red preopterećen"
@@ -20805,7 +20994,7 @@ msgstr "Vrste redova"
msgid "Queue in Background (BETA)"
msgstr "Red u pozadini (BETA)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Red treba da bude jedan od {0}"
@@ -20846,7 +21035,7 @@ msgstr "U redu za rezervnu kopiju. Dobićete imejl sa linkom za preuzimanje"
msgid "Queues"
msgstr "Redovi"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "{0} se stavlja u red za podnošenje"
@@ -20938,6 +21127,15 @@ msgstr "Neobrađene komande"
msgid "Raw Email"
msgstr "Neobrađeni imejl"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr "Neobrađeni HTML može se koristiti samo sa šablonima imejla koji imaju označeno polje 'Koristite HTML'. Nastavlja se sa imejlom u običnom tekstu."
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr "Neobrađeni HTML imejla se prikazuju kao kompletni Jinja šabloni. U suprotnom, imejl se ubacuje u standard.html šablon imejla, koji uključuje brand_logo, zaglavlje i podnožje."
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20946,7 +21144,7 @@ msgstr "Neobrađeni imejl"
msgid "Raw Printing"
msgstr "Neobrađeno štampanje"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Podešavanje neobrađenog štampanja"
@@ -20964,7 +21162,7 @@ msgstr "Re:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Re: {0}"
@@ -20975,11 +21173,12 @@ msgstr "Re: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21016,7 +21215,7 @@ msgstr "Isključivo za čitanje zavisi od"
msgid "Read Only Depends On (JS)"
msgstr "Isključivo za čitanje zavisi od (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Režim isključivo za čitanje"
@@ -21056,7 +21255,7 @@ msgstr "U realnom vremenu (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Obnovi"
@@ -21098,7 +21297,7 @@ msgstr "Parametar primaoca"
msgid "Recent years are easy to guess."
msgstr "Nedavne godine se lako naslućuju."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Nedavno"
@@ -21149,7 +21348,7 @@ msgstr "Predloženi indeksi iz alata za snimanje"
msgid "Records for following doctypes will be filtered"
msgstr "Zapisi za sledeće vrste dokumenata biće filtrirani"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Rekurzivno preuzimanje iz"
@@ -21215,12 +21414,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:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Vrati"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Vrati poslednju radnju"
@@ -21436,12 +21635,12 @@ msgstr "Referenca: {0} {1}"
msgid "Referrer"
msgstr "Izvor pristupa"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21458,7 +21657,7 @@ msgstr "Osveži sve"
msgid "Refresh Google Sheet"
msgstr "Osveži Google Sheet"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "Osveži pregled štampe"
@@ -21473,7 +21672,7 @@ msgstr "Osveži pregled štampe"
msgid "Refresh Token"
msgstr "Token za osvežavanje"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Osvežavanje"
@@ -21484,7 +21683,7 @@ msgstr "Osvežavanje"
msgid "Refreshing..."
msgstr "Osvežavanje..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Registrovano, ali onemogućeno"
@@ -21530,10 +21729,8 @@ msgstr "Ponovno povezivanje komunikacije"
msgid "Relinked"
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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Ponovno učitavanje"
@@ -21545,7 +21742,7 @@ msgstr "Ponovo učitaj fajl"
msgid "Reload List"
msgstr "Ponovo učitaj listu"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Ponovo učitaj izveštaj"
@@ -21564,7 +21761,7 @@ msgstr "Zapamti poslednju izabranu vrednost"
msgid "Remind At"
msgstr "Podsetnik u"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Podseti me"
@@ -21644,9 +21841,9 @@ msgid "Removed"
msgstr "Uklonjeno"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21674,7 +21871,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:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Ponovi"
@@ -21721,7 +21918,7 @@ msgstr "Ponavljanja kao \"aaa\" se lako naslućuju"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Ponavljanja kao \"abcabcabc\" su samo malo teža za naslutiti od \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Ponovljeno {0}"
@@ -21784,6 +21981,7 @@ msgstr "Odgovori svima"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21798,10 +21996,9 @@ msgstr "Odgovori svima"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Izveštaj"
@@ -21870,7 +22067,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Naziv izveštaja"
@@ -21904,14 +22101,10 @@ msgstr "Vrsta izveštaja"
msgid "Report View"
msgstr "Prikaz izveštaja"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Prijavi grešku"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Izveštaj se može biti postavljen za pojedinačne vrste"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21922,7 +22115,7 @@ msgstr "Izveštaj nema podataka, molimo Vas da izmenite filtere ili promenite na
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izveštaj nema numeričkih polja, molimo Vas da promenite naziv izveštaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Izveštaj je pokrenut, kliknite da biste pogledali status"
@@ -21934,7 +22127,7 @@ msgstr "Dostignuto je ograničenje izveštaja"
msgid "Report timed out."
msgstr "Izveštaj je istekao."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Izveštaj je uspešno ažuriran"
@@ -21942,12 +22135,12 @@ 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:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
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."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Izveštaj {0}"
@@ -21970,7 +22163,7 @@ msgstr "Izveš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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Izveštaji"
@@ -21978,7 +22171,7 @@ msgstr "Izveštaji"
msgid "Reports & Masters"
msgstr "Izveštaji i master podaci"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Izveštaji su već u redu"
@@ -22037,13 +22230,13 @@ msgstr "Metod zahteva"
msgid "Request Structure"
msgstr "Struktura zahteva"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "Zahtev je istekao"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Vreme za zahtev je isteklo"
@@ -22159,7 +22352,7 @@ msgstr "Vrati na podrazumevano"
msgid "Reset sorting"
msgstr "Resetuj sortiranje"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Vrati na podrazumevano"
@@ -22217,7 +22410,7 @@ msgstr "Zaglavlje odgovora"
msgid "Response Type"
msgstr "Vrsta odgovora"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Ostatak dana"
@@ -22226,7 +22419,7 @@ msgstr "Ostatak dana"
msgid "Restore"
msgstr "Vrati"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Vrati originalne dozvole"
@@ -22248,6 +22441,11 @@ msgstr "Vraćanje obrisanog dokumenta"
msgid "Restrict IP"
msgstr "Ograniči IP adresu"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr "Ograniči uklanjanje"
+
#. 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'
@@ -22275,8 +22473,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Ograničenja"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Rezultat"
@@ -22323,9 +22521,15 @@ msgstr "Opozvano"
msgid "Rich Text"
msgstr "Bogati tekst"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22360,8 +22564,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22376,8 +22578,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22421,7 +22622,7 @@ msgstr "Dozvole uloga"
msgid "Role Permissions Manager"
msgstr "Menadžer dozvola uloga"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Menadžer dozvola uloga"
@@ -22429,11 +22630,9 @@ msgstr "Menadžer dozvola uloga"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Profil uloge"
@@ -22455,7 +22654,7 @@ msgstr "Replikacija uloga"
msgid "Role and Level"
msgstr "Uloga i nivo"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Uloga je postavljena prema vrsti korisnika {0}"
@@ -22574,20 +22773,20 @@ msgstr "Preusmeravanje putanje"
msgid "Route: Example \"/app\""
msgstr "Putanja: Primer \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Red"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "Red #"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Red # {0}: Korisnik koji nije administrator ne može da postavi ulogu {1} u prilagođeni doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr "Red # {0}: Korisnici koji nisu administratori ne mogu dodati ulogu {1} u prilagođenom DocType-u."
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Red #{0}:"
@@ -22614,7 +22813,7 @@ msgstr "Naziv reda"
msgid "Row Number"
msgstr "Broj reda"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Vrednosti u redu su izmenjene"
@@ -22633,14 +22832,14 @@ msgstr "Red {0}: Nije dozvoljeno omogućiti dozvolu pri podnošenju za standardn
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Redovi dodati"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Redovi uklonjeni"
@@ -22663,7 +22862,7 @@ msgstr "Pravilo"
msgid "Rule Conditions"
msgstr "Uslovi pravila"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
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."
@@ -22743,7 +22942,7 @@ msgstr "SMS podešavanje"
msgid "SMS sent successfully"
msgstr "SMS je uspešno poslat"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS nije poslat. Molimo Vas da kontaktirate administratora."
@@ -22777,7 +22976,7 @@ msgstr "SQL izlaz"
msgid "SQL Queries"
msgstr "SQL upiti"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr "SQL funkcije nisu dozvoljene kao tekst u SELECT upitu: {0}. Umesto toga koristite dict sintaksu kao {{'COUNT': '*'}}."
@@ -22849,22 +23048,23 @@ msgstr "Subota"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22877,7 +23077,7 @@ msgid "Save Anyway"
msgstr "Ipak sačuvaj"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Sačuvaj kao"
@@ -22885,7 +23085,7 @@ msgstr "Sačuvaj kao"
msgid "Save Customizations"
msgstr "Sačuvaj prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Sačuvaj izveštaj"
@@ -22903,20 +23103,20 @@ msgid "Save the document."
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:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Sačuvano"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Sačuvani filteri"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Čuvanje"
@@ -22925,11 +23125,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Čuvanje"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr "Čuvanje promena..."
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Čuvanje prilagođavanja..."
@@ -23133,7 +23333,7 @@ msgstr "Skripte"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23153,7 +23353,7 @@ msgstr "Traka za pretragu"
msgid "Search Fields"
msgstr "Polja za pretragu"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Pomoć za pretragu"
@@ -23171,7 +23371,7 @@ msgstr "Rezultati pretrage"
msgid "Search by filename or extension"
msgstr "Pretraga po nazivu fajla ili ekstenziji"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Polje za pretragu {0} nije važeće"
@@ -23188,12 +23388,12 @@ msgstr "Pretraži vrste polja..."
msgid "Search for anything"
msgstr "Pretraga za bilo šta"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "Pretraga za {0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Pretraži u vrsti dokumenta"
@@ -23265,15 +23465,15 @@ msgstr "Odeljka mora imati najmanje jednu kolonu"
msgid "Security Settings"
msgstr "Podešavanja bezbednosti"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Pogledaj sve aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izveštaje."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Pogledaj na veb-sajtu"
@@ -23323,24 +23523,26 @@ msgstr "Tabela korisnika koji su videli"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Izaberi"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Izaberi sve"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23356,7 +23558,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Izaberi kolone"
@@ -23400,13 +23602,13 @@ msgstr "Izaberi vrstu dokumenta"
msgid "Select Document Type or Role to start."
msgstr "Izaberi vrstu dokumenta ili ulogu za početak."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
msgstr "Izaberite vrste dokumenata kako biste postavili koje korisničke dozvole se koriste za ograničavanje pristupa."
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Izaberi polje"
@@ -23415,7 +23617,7 @@ msgstr "Izaberi polje"
msgid "Select Field..."
msgstr "Izaberi polje..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Izaberi polja"
@@ -23424,19 +23626,19 @@ msgstr "Izaberi polja"
msgid "Select Fields (Up to {0})"
msgstr "Izaberite polja (do {0})"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Izaberi polja za unos"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Izaberi polja za ažuriranje"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Izaberi filtere"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Izaberi Google Calendar za sinhronizaciju događaja."
@@ -23461,16 +23663,16 @@ msgstr "Izaberi jezik"
msgid "Select List View"
msgstr "Izaberi prikaz liste"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Izaberi obavezno"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Izaberi modul"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Izaberi mrežni štampač"
@@ -23480,7 +23682,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Izaberi format štampe"
@@ -23516,12 +23718,6 @@ msgstr "Izaberi radni tok"
msgid "Select Workspace"
msgstr "Izaberi 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 "Izaberi radne prostore"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Prvo izaberi sliku brenda."
@@ -23538,11 +23734,11 @@ msgstr "Izaberite polje da biste uredili njegova svojstva."
msgid "Select a group {0} first."
msgstr "Najpre izaberite grupu {0}."
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Izaberi važeće polje pošiljaoca za kreiranje dokumenta iz imejla"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Izaberi važeće polje za naslov za kreiranje dokumenta iz mejla"
@@ -23568,13 +23764,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:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Izaberi stavku iz liste"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Izaberi više stavki iz liste"
@@ -23608,7 +23804,7 @@ msgstr "Izaberi dve verzije za prikaz razlika."
msgid "Select {0}"
msgstr "Izaberite {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Samopotvrda nije dozvoljena"
@@ -23638,6 +23834,11 @@ msgstr "Pošalji nakon"
msgid "Send Alert On"
msgstr "Pošalji obaveštenje na"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr "Pošalji kao neobrađeni HTML"
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23690,7 +23891,7 @@ msgstr "Pošalji sada"
msgid "Send Print as PDF"
msgstr "Pošalji kao PDF za štampu"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Pošalji potvrdu o čitanju"
@@ -23753,7 +23954,7 @@ 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:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Pošalji mi kopiju"
@@ -23792,7 +23993,7 @@ msgstr "Imejl pošiljaoca"
msgid "Sender Email Field"
msgstr "Polje za imejl pošiljaoca"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Polje pošiljaoca treba da ima imejl među opcijama"
@@ -23886,7 +24087,7 @@ msgstr "Serija ažurirana za {}"
msgid "Series counter for {} updated to {} successfully"
msgstr "Brojač serije za {} je uspešno ažuriran na {}"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Serija {0} je već iskorišćena u {1}"
@@ -23896,7 +24097,7 @@ msgstr "Serija {0} je već iskorišćena u {1}"
msgid "Server Action"
msgstr "Serverska radnja"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverska greška"
@@ -23923,11 +24124,15 @@ msgstr "Serverska skripta je onemogućena. Molimo Vas da je omogućite u konfigu
msgid "Server Scripts feature is not available on this site."
msgstr "Funkcionalnost serverskih skripti nije dostupna na ovom sajtu."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr "Serverska greška tokom otpremanja. Fajl može biti oštećen."
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "Server nije uspeo da obradi zahtev zbog istovremenog konfliktnog zahteva. Molimo Vas da pokušate ponovo."
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "Server je bio preopterećen da obradi zahtev. Pokušajte ponovo."
@@ -23955,16 +24160,14 @@ msgstr "Podrazumevana sesija"
msgid "Session Default Settings"
msgstr "Podešavanje podrazumevane 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Podrazumevane vrednosti sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Podrazumevane vrednosti sesije su sačuvane"
@@ -24005,7 +24208,7 @@ msgstr "Postavi"
msgid "Set Banner from Image"
msgstr "Postavi baner iz slike"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Postavi grafikon"
@@ -24031,7 +24234,7 @@ msgstr "Postavi filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Postavi nivo"
@@ -24074,8 +24277,8 @@ msgstr "Postavi svojstva"
msgid "Set Property After Alert"
msgstr "Postavi svojstva nakon upozorenja"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Postavi količinu"
@@ -24095,12 +24298,12 @@ msgstr "Postavi korisničke dozvole"
msgid "Set Value"
msgstr "Postavi vrednost"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Postavi sve kao privatno"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Postavi sve kao javno"
@@ -24228,8 +24431,8 @@ msgstr "Postavljanje sistema"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24252,11 +24455,11 @@ msgstr "Podešavanje za stranicu o nama"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Postavke"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Postavke > Prilagodi obrazac"
@@ -24264,12 +24467,12 @@ msgstr "Postavke > Prilagodi obrazac"
msgid "Setup > User"
msgstr "Postavke > Korisnik"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Postavke > Korisničke dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Postavke automatskog imejla"
@@ -24298,13 +24501,14 @@ msgstr "Postavka neuspešna"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Podeli"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Podeli sa"
@@ -24312,7 +24516,7 @@ msgstr "Podeli sa"
msgid "Share this document with"
msgstr "Podeli ovaj dokument sa"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Podeli {0} sa"
@@ -24372,16 +24576,10 @@ msgstr "Prikaži tačan datum i vreme u vremenskom redosledu"
msgid "Show Absolute Values"
msgstr "Prikaži apsolutne vrednosti"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Prikaži sve"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr "Prikaži ikonice aplikacija kao datoteku"
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24427,7 +24625,7 @@ msgstr "Prikaži grešku"
msgid "Show External Link Warning"
msgstr "Prikaži upozorenje za eksterne linkove"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Prikaži naziv polja (klikni za kopiranje)"
@@ -24479,7 +24677,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:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Prikaži linkove"
@@ -24599,7 +24797,7 @@ msgstr "Prikaži vikende"
msgid "Show account deletion link in My Account page"
msgstr "Prikaži link za brisanje naloga na stranici Moj nalog"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Prikaži sve verzije"
@@ -24741,7 +24939,7 @@ msgstr "Odjava"
msgid "Sign Up and Confirmation"
msgstr "Registracija i potvrda"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Registracija je onemogućena"
@@ -24864,7 +25062,7 @@ msgstr "Preskakanje kolona bez naziva"
msgid "Skipping column {0}"
msgstr "Preskakanje kolone {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "Preskakanje sinhronizacije podataka za doctype {0} iz fajla {1}"
@@ -25039,15 +25237,15 @@ msgstr "Došlo je do greške"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Došlo je do greške prilikom generisanja tokena. Kliknite na {0} da biste generisali novi."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Došlo je do greške."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Oprostite! Nisam mogao da pronađem ono što ste tražili."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Oprostite! Nemate dozvolu da pregledate ovu stranicu."
@@ -25078,13 +25276,13 @@ msgstr "Opcije sortiranja"
msgid "Sort Order"
msgstr "Redosled sortiranja"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "Polje za sortiranje {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25133,7 +25331,7 @@ msgstr "Pokreće radnje u pozadinskom zadatku"
msgid "Special Characters are not allowed"
msgstr "Specijalni karakteri nisu dozvoljeni"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Specijalni karakteri osim '-', '#', '.', '/', '{{' i '}}' nisu dozvoljeni u seriji imenovanja {0}"
@@ -25172,6 +25370,7 @@ msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25179,6 +25378,7 @@ msgstr "Stack Trace"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25246,8 +25446,8 @@ msgstr "Standardna vrsta korisnika {0} ne može biti obrisana."
#: 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:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Početak"
@@ -25419,7 +25619,7 @@ msgstr "Vremenski interval statistike"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25457,7 +25657,7 @@ msgstr "Koraci za verifikaciju Vašeg prijavljivanja"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "Prikačen"
@@ -25571,7 +25771,7 @@ msgstr "Poddomen"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Naslov"
@@ -25585,7 +25785,7 @@ msgstr "Naslov"
msgid "Subject Field"
msgstr "Polje za naslov"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Vrsta polja za naslov treba da bude podatak, tekst, duži tekst, kraći tekst, uređivač teksta"
@@ -25606,14 +25806,14 @@ msgstr "Red čekanja za podnošenje"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Podnesi"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Podnesi"
@@ -25643,7 +25843,7 @@ msgstr "Podnesi"
msgid "Submit After Import"
msgstr "Podnesi nakon uvoza"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Prijavi problem"
@@ -25667,11 +25867,11 @@ msgstr "Podnesi prilikom kreiranja"
msgid "Submit this document to complete this step."
msgstr "Podnesite ovaj dokument da biste završili ovaj korak."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Podnesite ovaj dokument da biste potvrdili"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Podnesi {0} dokumenata?"
@@ -25697,7 +25897,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Podnošenje"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Podnošenje {0}"
@@ -25732,12 +25932,12 @@ msgstr "Neupadljivo"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25779,7 +25979,7 @@ msgstr "Naslov uspeha"
msgid "Successful Job Count"
msgstr "Broj uspešnih zadataka"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Uspešne transakcije"
@@ -25804,7 +26004,7 @@ msgstr "Uspešno uvezeno {0} od {1} zapisa."
msgid "Successfully reset onboarding status for all users."
msgstr "Uspešno je resetovan status uvodne obuke za sve korisnike."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr "Uspešno odjavljivanje"
@@ -25829,7 +26029,7 @@ msgstr "Predloži optimizacije"
msgid "Suggested Indexes"
msgstr "Predloži indekse"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Predloženo korisničko ime: {0}"
@@ -25870,7 +26070,7 @@ msgstr "Nedelja"
msgid "Suspend Sending"
msgstr "Obustavi slanje"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Promeni kameru"
@@ -25883,7 +26083,7 @@ msgstr "Promeni temu"
msgid "Switch To Desk"
msgstr "Prebaci na radnu površinu"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Promena kamere"
@@ -25952,9 +26152,7 @@ msgid "Syntax Error"
msgstr "Greška u sintaksi"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "Sistem"
@@ -25964,7 +26162,7 @@ msgstr "Sistem"
msgid "System Console"
msgstr "Sistemska konzola"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "Sistemski generisana polja se ne mogu preimenovati"
@@ -26091,6 +26289,7 @@ msgstr "Evidencije sistema"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26105,7 +26304,6 @@ msgstr "Evidencije sistema"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26181,6 +26379,11 @@ msgstr "Sistemska stranica"
msgid "System Settings"
msgstr "Podešavanje sistema"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr "Sistemski korisnici"
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26197,6 +26400,12 @@ msgstr "T"
msgid "TOS URI"
msgstr "URI uslova korišćenja"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+msgstr "Kartica"
+
#. 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'
@@ -26232,7 +26441,7 @@ msgstr "Tabela"
msgid "Table Break"
msgstr "Prelom tabele"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Polje tabele"
@@ -26241,7 +26450,7 @@ msgstr "Polje tabele"
msgid "Table Fieldname"
msgstr "Naziv polja tabele"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Naziv polja tabele nedostaje"
@@ -26259,7 +26468,7 @@ msgstr "HTML tabele"
msgid "Table MultiSelect"
msgstr "Višestruki odabir u tabeli"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr "Višestruki odabir u tabeli zahteva tabelu sa najmanje jednim poljem sa linkom, ali nijedno nije pronađeno u {0}"
@@ -26267,11 +26476,11 @@ msgstr "Višestruki odabir u tabeli zahteva tabelu sa najmanje jednim poljem sa
msgid "Table Trimmed"
msgstr "Skraćena tabela"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Tabela ažurirana"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -26291,17 +26500,17 @@ msgid "Tag Link"
msgstr "Link oznake"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Oznake"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Napravi fotografiju"
@@ -26385,7 +26594,7 @@ msgstr "Upozorenja u šablonu"
msgid "Templates"
msgstr "Šabloni"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Privremeno onemogućeno"
@@ -26483,7 +26692,7 @@ msgstr "Hvala"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Automatsko ponavljanje za ovaj dokument je onemogućeno."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "CSV format razlikuje velika i mala slova"
@@ -26539,7 +26748,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:481
msgid "The changes have been reverted."
msgstr "Promene su vraćene na prethodno stanje."
@@ -26555,7 +26764,7 @@ msgstr "Komentar ne može biti prazan"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "Sadržaj ovog imejla je strogo poverljiv. Molimo Vas da ga ne prosleđujete."
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Prikazan broj procena. Kliknite ovde da vidite tačan broj."
@@ -26581,11 +26790,15 @@ msgstr "Dokument je dodeljen korisniku {0}"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "Izabrana vrsta dokumenta je zavisna tabela, stoga je potrebna matična vrsta dokumenta."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr "Dugme za imejl je omogućeno korisniku u dokumentu."
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr "Polje {0} u {1} ne dozvoljava ignorisanje korisničkih dozvola"
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr "Polje {0} u {1} vodi ka {2}, a ne ka {3}"
@@ -26652,6 +26865,10 @@ msgstr "Broj sekundi do isteka zahteva"
msgid "The password of your account has expired."
msgstr "Lozinka za Vaš nalog je istekla."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+msgstr "Dugme za štampu je omogućeno korisniku u dokumentu."
+
#: 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 "Pokrenut je proces brisanja podataka {0} povezanih sa {1}."
@@ -26669,15 +26886,15 @@ msgstr "Broj projekta dobijen putem Google Cloud konzole, u odeljku
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "Izveštaj koji ste zatražili je generisan.
Kliknite ovde za preuzimanje:
{0}
Ovaj link ističe za {1} sata."
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "Link za resetovanje lozinke je istekao"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
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:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26689,7 +26906,7 @@ msgstr "Uloga {0} treba da bude prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Izabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
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."
@@ -26701,6 +26918,42 @@ msgstr "Sistem nudi mnogo unapred definisanih uloga. Možete dodati nove uloge z
msgid "The total number of user document types limit has been crossed."
msgstr "Ukupan broj korisničkih vrsta dokumenata je premašen."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr "Korisnik može kreirati novu stavku, ali ne može uređivati postojeće stavke."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr "Korisnik može obrisati dokumenta u statusu nacrt / otkazano."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr "Korisnik može izvoziti podatke iz izveštaja."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr "Korisnik može uvoziti nove zapise ili ažurirati postojeće podatke za dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr "Korisnik može odabrati kupca u prodajnoj porudžbini, ali ne može otvoriti master podatke kupca."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr "Korisnik može deliti pristup dokumentu sa drugim korisnikom."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr "Korisnik može ažurirati kupca ili bilo koje drugo polje u postojećoj prodajnoj porudžbini, ali ne može kreirati novu prodajnu porudžbinu."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr "Korisnik može pregledati izlazne fakture, ali ne može menjati vrednosti polja u njima."
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+msgstr "Vrednost polja {0} je predugačka u dokumentu {1}. Da biste rešili ovaj problem, smanjite dužinu vrednosti ili promenite vrstu polja {0} u duži tekst koristeći prilagođavanje obrasca, a zatim pokušajte ponovo."
+
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr "Uneta vrednost ima {0} karaktera. Maksimalan dozvoljeni broj karaktera je {1}."
@@ -26742,7 +26995,7 @@ msgstr "URL teme"
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 "Postoje dokumenti sa stanjima u radnom toku koja ne postoje u trenutnom radnom toku. Preporuka je da ih prvo dodate u radni tok, a zatim izmenite njihova stanja pre nego što ih uklonite."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Nemate predstojećih događaja."
@@ -26750,7 +27003,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "Već postoji {0} sa istim filterima u redu čekanja:"
@@ -26759,7 +27012,7 @@ msgstr "Već postoji {0} sa istim filterima u redu čekanja:"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "U veb-obrascu može biti najviše 9 polja za prelom stranice"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "Može postojati samo jedno preklapanje u obrascu"
@@ -26771,11 +27024,11 @@ msgstr "Došlo je do greške u šablonu adrese {0}"
msgid "There is no data to be exported"
msgstr "Nema podataka za izvoz"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "Ne postoji zadatak pod nazivom \"{}\""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Trenutno nema ničeg novog da se prikaže."
@@ -26783,7 +27036,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:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "Već postoji {0} sa istim filterima u redu čekanja:"
@@ -26799,7 +27052,7 @@ msgstr "Došlo je do greške prilikom izgradnje ove stranice"
msgid "There was an error saving filters"
msgstr "Došlo je do greške prilikom čuvanja filtera"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Došlo je do grešaka"
@@ -26807,11 +27060,11 @@ 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:834
+#: frappe/public/js/frappe/views/communication.js:903
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."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Došlo je do grešaka prilikom postavljanja naziva, molimo Vas da kontaktirate administratora"
@@ -26880,11 +27133,11 @@ 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:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ovo se ne može opozvati"
@@ -26908,7 +27161,7 @@ msgstr "Ovaj grafikon će biti dostupan svim korisnicima ukoliko je ova opcija u
msgid "This doctype has no orphan fields to trim"
msgstr "Ovaj doctype nema nepovezanih polja koja treba ukloniti"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
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."
@@ -26924,15 +27177,15 @@ msgstr "Ovaj dokument je već stavljen u red za podnošenje. Napredak možete pr
msgid "This document has been modified after the email was sent."
msgstr "Ovaj dokument je izmenjen nakon što je imejl poslat."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "Ovaj dokument ima nesačuvane izmene koje možda neće biti prikazane u finalnom PDF-u.
Preporuka je da sačuvate dokument pre štampe."
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
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:509
+#: frappe/model/document.py:508
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."
@@ -26946,7 +27199,7 @@ msgid "This feature can not be used as dependencies are missing.\n"
msgstr "Ova funkcionalnost nije dostupna jer nedostaju zavisnosti.\n"
"\t\t\t\tMolimo Vas da kontaktirate sistem menadžera da omogući ovu opciju time što će instalirati pycups!"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "Ova funkcionalnost je nova i još uvek je eksperimentalna"
@@ -26974,11 +27227,11 @@ msgstr "Ovaj fajl je javan i može mu pristupiti bilo ko, čak i bez prijavljiva
msgid "This file is public. It can be accessed without authentication."
msgstr "Ovaj fajl je javan. Može mu se pristupiti bez autentifikacije."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Ovaj obrazac je izmenjen nakon što je učitan"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "Ovaj obrazac nije moguće urediti zbog radnog toka."
@@ -26997,7 +27250,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:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
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."
@@ -27039,15 +27292,15 @@ msgstr "Ovaj link je već aktiviran za verifikaciju."
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Ovaj link je nevažeći ili je istekao. Proverite da li ste ga ispravno uneli."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Ovo može biti odštampano na više stranica"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Ovaj mesec"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
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}."
@@ -27055,7 +27308,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:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Ovaj izveštaj je generisan {0}."
@@ -27079,7 +27332,7 @@ msgstr "Ovaj softver je izgrađen na osnovu brojnih paketa otvorenog koda."
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "Ovaj naslov će biti korišćen kao naslov veb-stranice i u meta oznakama"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "Ova vrednost je preuzeta iz polja {1} objekta {0}"
@@ -27123,7 +27376,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:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Zagušeno"
@@ -27154,6 +27407,7 @@ msgstr "Četvrtak"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27161,6 +27415,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Vreme"
@@ -27243,11 +27498,6 @@ msgstr "Vreme {0} mora biti u formatu: {1}"
msgid "Timed Out"
msgstr "Isteklo"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr "Timeless Launchpad"
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Timeless Night"
@@ -27279,11 +27529,11 @@ msgstr "Linkovi vremenskog redosleda"
msgid "Timeline Name"
msgstr "Naziv vremenskog redosleda"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "Polje vremenskog redosleda mora biti link ili dinamički link"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "Polje vremenskog redosleda mora biti važeći naziv polja"
@@ -27354,7 +27604,7 @@ msgstr "Savet: Isprobajte novi padajući meni za konzolu pomoću"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27377,7 +27627,7 @@ msgstr "Polje za naslov"
msgid "Title Prefix"
msgstr "Prefiks naslova"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Polje za naslov mora biti važeći naziv polja"
@@ -27468,7 +27718,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:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "Za ažurirani izveštaj kliknite na {0}."
@@ -27521,31 +27771,14 @@ msgstr "Za uraditi"
msgid "Today"
msgstr "Danas"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Prebaci grafikon"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Prebaci u punu širinu"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Prebaci u prikaz mreže"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Prebaci bočnu traku"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Promeni temu"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27581,7 +27814,7 @@ msgid "Tomorrow"
msgstr "Sutra"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "Previše dokumenata"
@@ -27589,15 +27822,19 @@ msgstr "Previše dokumenata"
msgid "Too Many Requests"
msgstr "Previše zahteva"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "Previše promena baze podatka u jednoj radnji."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
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:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr "Previše zahteva. Molimo Vas da pokušate ponovo kasnije."
+
+#: frappe/core/doctype/user/user.py:1093
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"
@@ -27653,10 +27890,10 @@ msgstr "Gore desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Ukupno"
@@ -27671,7 +27908,7 @@ msgstr "Ukupno pozadinskih radnika"
msgid "Total Errors (last 1 day)"
msgstr "Ukupan broj grešaka (poslednjih 1 dan)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Ukupno slika"
@@ -27773,7 +28010,7 @@ msgstr "Prati da li je imejl otvoren od strane primaoca.\n"
msgid "Track milestones for any document"
msgstr "Prati ključne tačke dokumenta"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL za praćenje je generisan i kopiran u međuspremnik"
@@ -27809,7 +28046,7 @@ msgstr "Tranzicije"
msgid "Translatable"
msgstr "Moguće prevođenje"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "Prevedi podatke"
@@ -27820,7 +28057,7 @@ msgstr "Prevedi podatke"
msgid "Translate Link Fields"
msgstr "Prevedi polja sa linkovima"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Prevedi vrednosti"
@@ -27856,7 +28093,7 @@ msgstr "Smeće"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "Stablo"
@@ -27905,8 +28142,8 @@ msgstr "Pokušajte ponovo"
msgid "Try a Naming Series"
msgstr "Isprobajte seriju imenovanja"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Isprobajte novi dizajner štampe"
@@ -27952,6 +28189,7 @@ msgstr "Metod dvofaktorske autentifikacije"
#. 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 'Event Notifications'
#. 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'
@@ -27965,6 +28203,7 @@ msgstr "Metod dvofaktorske autentifikacije"
#: 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/event_notifications/event_notifications.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
@@ -27973,7 +28212,7 @@ msgstr "Metod dvofaktorske autentifikacije"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28141,7 +28380,7 @@ msgstr "UTM izvor"
msgid "UUID"
msgstr "UUID"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "Prestanak praćenja dokumenta {0}"
@@ -28149,7 +28388,7 @@ msgstr "Prestanak praćenja dokumenta {0}"
msgid "Unable to find DocType {0}"
msgstr "Nije moguće pronaći DocType {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Nije moguće učitati kameru."
@@ -28165,7 +28404,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:180
+#: frappe/core/doctype/communication/email.py:204
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"
@@ -28186,20 +28425,20 @@ msgstr "Ukloni dodeljivanje uslova"
msgid "Uncaught Exception"
msgstr "Neuhvaćeni izuzetak"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Neizmenjeno"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Poništi"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Poništi poslednju radnju"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Zaustavi praćenje"
@@ -28274,9 +28513,10 @@ msgstr "Poslata obaveštenja o nepročitanim"
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "Poništi odabir svega"
@@ -28309,11 +28549,11 @@ msgstr "Parametri otkazivanja pretplate"
msgid "Unsubscribed"
msgstr "Otkazana pretplata"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr "Nepodržana funkcija ili operator: {0}"
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr "Nepodržano {0}: {1}"
@@ -28333,7 +28573,7 @@ msgstr "Izdvojeni {0} fajlovi"
msgid "Unzipping files..."
msgstr "Izdvajanje fajlova..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Predstojeći događaji za danas"
@@ -28341,13 +28581,13 @@ msgstr "Predstojeći događaji za danas"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Ažuriraj"
@@ -28418,7 +28658,7 @@ msgstr "Ažuriraj vrednost"
msgid "Update from Frappe Cloud"
msgstr "Ažuriraj iz Frappe Cloud-a"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "Ažuriraj {0} zapisa"
@@ -28426,8 +28666,7 @@ msgstr "Ažuriraj {0} zapisa"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Ažurirano"
@@ -28439,11 +28678,11 @@ msgstr "Uspešno ažurirano"
msgid "Updated To A New Version 🎉"
msgstr "Ažurirano na novu verziju 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Uspešno ažurirano"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Ažuriranje"
@@ -28468,11 +28707,11 @@ msgstr "Ažuriranje globalnih podešavanja"
msgid "Updating naming series options"
msgstr "Ažuriranje opcija za seriju imenovanja"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "Ažuriranje povezanih polja..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Ažuriranje {0}"
@@ -28480,12 +28719,12 @@ msgstr "Ažuriranje {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "Ažuriranje {0} od {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "Nadogradnja plana"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28533,6 +28772,7 @@ msgstr "Koristite prvi dan perioda"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "Koristite HTML"
@@ -28604,7 +28844,7 @@ msgstr "Koristite ukoliko podrazumevana podešavanja ne prepoznaju tačno Vaše
msgid "Use of sub-query or function is restricted"
msgstr "Korišćenje podupita ili funkcije je ograničeno"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Koristite novi alat za kreiranje formata za štampu"
@@ -28638,9 +28878,8 @@ msgstr "Korišćen OAuth"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28667,11 +28906,11 @@ msgstr "Korišćen OAuth"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28807,7 +29046,7 @@ msgstr "Slika korisnika"
msgid "User Invitation"
msgstr "Pozivnica korisniku"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Meni korisnika"
@@ -28823,19 +29062,19 @@ msgid "User Permission"
msgstr "Korisnička dozvola"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Korisničke dozvole"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Korisničke dozvole"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "Korisničke dozvole se koriste za ograničavanje korisnika na određene zapise."
@@ -28908,7 +29147,7 @@ msgstr "Korisnik može da se prijavi pomoću imejl adrese ili broja mobilnog tel
msgid "User can login using Email id or User Name"
msgstr "Korisnik može da se prijavi pomoću imejl adrese ili korisničkog imena"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "Korisnik ne postoji."
@@ -28942,27 +29181,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Korisnik {0} ne može biti obrisan"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Korisnik {0} ne može biti onemogućen"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Korisnik {0} ne može biti preimenovan"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "Korisnik {0} nema pristup ovom dokumentu"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Korisnik {0} nema pristup doctype putem dozvole uloge za dokument {1}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "Korisnik {0} nema dozvolu da kreira radni prostor."
@@ -28971,11 +29210,11 @@ 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:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "Korisnik {0} se predstavlja kao {1}"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Korisnik {0} je onemogućen"
@@ -29000,18 +29239,17 @@ msgstr "URI sa podacima o korisniku"
msgid "Username"
msgstr "Korisničko ime"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Korisničko ime {0} već postoji"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29082,7 +29320,7 @@ msgstr "Validiraj Frappe podešavanje imejla"
msgid "Validate SSL Certificate"
msgstr "Validiraj SSL sertifikat"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Greška pri validaciji"
@@ -29111,7 +29349,7 @@ msgstr "Važenje"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29138,15 +29376,19 @@ msgstr "Vrednost promenjena"
msgid "Value To Be Set"
msgstr "Vrednost koju treba postaviti"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr "Vrednost je predugačka"
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Vrednost se ne može promeniti za {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Vrednost ne može biti negativna za"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Vrednost ne može biti negativna za {0}: {1}"
@@ -29158,7 +29400,7 @@ msgstr "Vrednost za polje izbora može biti samo 0 ili 1"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Vrednost za polje {0} u {1} je predugačka. Dužina treba da bude manja od {2} karaktera"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "Vrednost za {0} ne može biti lista"
@@ -29183,7 +29425,13 @@ msgstr "Vrednost \"None\" ukazuje na javnog klijenta. U tom slučaju tajna klije
msgid "Value to Validate"
msgstr "Vrednost za validaciju"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr "Vrednost koja se postavlja kada se primeni ovo stanje radnog toka. Koristite običan tekst (npr. Odobreno) ili izraz ukoliko je omogućeno “Evaluiraj kao izraz“."
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Vrednost je prevelika"
@@ -29200,7 +29448,7 @@ msgstr "Vrednost {0} mora biti u važećem formatu trajanja: d h m s"
msgid "Value {0} must in {1} format"
msgstr "Vrednost {0} mora biti u {1} formatu"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Promenjene vrednosti"
@@ -29209,11 +29457,11 @@ msgstr "Promenjene vrednosti"
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Verifikacija"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Verifikacioni kod"
@@ -29221,7 +29469,7 @@ msgstr "Verifikacioni kod"
msgid "Verification Link"
msgstr "Verifikacioni link"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "Verifikacioni imejl sa kodom nije poslat. Molimo Vas kontaktirajte administratora."
@@ -29235,7 +29483,7 @@ msgid "Verified"
msgstr "Verifikovano"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Verifikuj"
@@ -29271,7 +29519,7 @@ msgstr "Prikaz"
msgid "View All"
msgstr "Prikaži sve"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "Prikaži istoriju izmena"
@@ -29283,7 +29531,7 @@ msgstr "Prikaži DocType dozvole"
msgid "View File"
msgstr "Prikaži fajl"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Prikaži celu evidenciju"
@@ -29320,7 +29568,7 @@ msgstr "Prikaži izveštaj"
msgid "View Settings"
msgstr "Prikaži podešavanja"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr "Prikaz bočne trake"
@@ -29329,14 +29577,11 @@ msgstr "Prikaz bočne trake"
msgid "View Switcher"
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 "Prikaži veb-sajt"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr "Prikaži sve {0} korisnike"
@@ -29352,7 +29597,7 @@ msgstr "Prikaži izveštaj u internet pretraživaču"
msgid "View this in your browser"
msgstr "Prikaži ovo u internet pretraživaču"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Prikažite Vaš odgovor"
@@ -29388,7 +29633,7 @@ msgstr "Virtuelni DocType {} zahteva statičku metodu pod nazivom {} pronađenu
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "Virtuelni DocType {} zahteva redefinisanje instance metode {} pronađene u {}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr "Virtuelne tabele moraju biti virtuelna polja"
@@ -29436,7 +29681,7 @@ msgstr "Skladište"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Upozorenje"
@@ -29445,7 +29690,7 @@ msgstr "Upozorenje"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "Upozorenje: GUBITAK PODATAKA NEIZBEŽAN! Nastavak će trajno obrisati sledeće kolone baze podataka iz doctype-a {0}:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Upozorenje: Imenovanje nije postavljeno"
@@ -29529,7 +29774,7 @@ msgstr "Veb-stranica"
msgid "Web Page Block"
msgstr "Blok veb-stranice"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "URL veb-stranice"
@@ -29626,7 +29871,7 @@ msgstr "URL webhook-a"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29681,7 +29926,7 @@ msgstr "Skripta veb-sajta"
msgid "Website Search Field"
msgstr "Polje za pretragu na veb-sajtu"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Polje za pretragu na veb-sajtu mora biti važeći naziv polja"
@@ -29746,6 +29991,11 @@ msgstr "Link slike u temi veb-sajta"
msgid "Website Themes Available"
msgstr "Dostupne teme veb-sajta"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr "Korisnici veb-sajta"
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29833,15 +30083,15 @@ msgstr "URL za dobrodošlicu"
msgid "Welcome Workspace"
msgstr "Dobro došli u radni prostor"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "Imejl dobrodošlice je poslat"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Dobro došli u {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Šta je novo"
@@ -29863,10 +30113,6 @@ msgstr "Prilikom slanja dokumenata putem imejla, sačuvaj PDF u okviru komunikac
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 "Prilikom otpremanja fajlova, primoraj korišćenje snimanja putem internet pretraživača. Ukoliko nije uključeno, koristiće se podrazumevana kamera mobilnog uređaja kada se prepozna mobilni pristup."
-#: 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 "Kada izmenite dokument nakon što je otkazan i sačuvan, dobiće novi broj koji predstavlja verziju starog broja."
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29884,7 +30130,7 @@ msgstr "Na koji prikaz povezane vrste DocType treba da vodi ova prečica?"
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Širina"
@@ -30005,6 +30251,10 @@ msgstr "Detalji radnog toka"
msgid "Workflow Document State"
msgstr "Stanje dokumenta u radnom toku"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr "Greška u evaluaciji radnog toka"
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -30022,11 +30272,11 @@ msgstr "Stanje radnog toka"
msgid "Workflow State Field"
msgstr "Polje stanja radnog toka"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Stanje radnog toka nije postavljeno"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Tranzicija stanja radnog toka nije dozvoljena sa {0} na {1}"
@@ -30034,7 +30284,7 @@ msgstr "Tranzicija stanja radnog toka nije dozvoljena sa {0} na {1}"
msgid "Workflow States Don't Exist"
msgstr "Stanja radnog toka ne postoje"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Status radnog toka"
@@ -30069,18 +30319,15 @@ msgstr "Radni tok je uspešno ažuriran"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Radni prostor"
@@ -30107,7 +30354,6 @@ msgstr "Link radnog prostora"
#. 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 "Menadžer radnog prostora"
@@ -30121,27 +30367,15 @@ msgstr "Brojčana kartica radnog prostora"
msgid "Workspace Quick List"
msgstr "Brza lista radnog prostora"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "Podešavanje 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 "Postavke radnog prostora završene"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Prečica do radnog prostora"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr "Bočna traka radnog prostora"
@@ -30151,13 +30385,7 @@ msgstr "Bočna traka radnog prostora"
msgid "Workspace Sidebar Item"
msgstr "Stavka bočne trake 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 "Vidljivost radnog prostora"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "Radni prostor {0} je kreiran"
@@ -30186,11 +30414,12 @@ msgstr "Završavanje"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "Izmena"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Pogrešna vrednost u polju preuzmi iz"
@@ -30208,7 +30437,7 @@ msgstr "X polje"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr "XMLHttpRequest Greška"
@@ -30223,7 +30452,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y polje"
@@ -30271,10 +30500,14 @@ msgstr "Žuta"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30283,10 +30516,10 @@ msgstr "Žuta"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -30322,7 +30555,7 @@ msgstr "Dodali ste 1 red u {0}"
msgid "You added {0} rows to {1}"
msgstr "Dodali ste {0} redova u {1}"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "Pokušavate da otvorite eksterni link. Da potvrdite, kliknite ponovo na link."
@@ -30330,7 +30563,7 @@ msgstr "Pokušavate da otvorite eksterni link. Da potvrdite, kliknite ponovo na
msgid "You are connected to internet."
msgstr "Povezani ste na internet."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "Prijavljeni ste kao drugi korisnik."
@@ -30338,11 +30571,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:437
+#: frappe/permissions.py:443
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:426
+#: frappe/permissions.py:432
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}"
@@ -30365,7 +30598,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:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "Nemate dozvolu da izvezete doctype {}"
@@ -30373,10 +30606,14 @@ 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:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr "Nemate dozvolu da pošaljete imejl vezan za ovaj dokument"
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr "Nije Vam dozvoljeno ažuriranje statusa ovog događaja."
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Nemate dozvolu da ažurirate ovaj dokument veb-obrasca"
@@ -30393,7 +30630,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:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
@@ -30401,7 +30638,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
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."
@@ -30414,7 +30651,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "Priložili ste {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Možete dodati dinamičke osobine iz dokumenta koristeći jinja šablonski jezik."
@@ -30438,10 +30675,6 @@ msgstr "Takođe možete kopirati i nalepiti ovaj {0} u Vaš internet pretraživa
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "Možete zamoliti svoj tim da ponovo pošalje pozivnicu ukoliko i dalje želite da se pridružite."
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "Možete promeniti podneta dokumenta tako što ćete ih prvo otkazati, a zatim izmeniti."
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "Možete promeniti politiku čuvanja podataka u {0}."
@@ -30496,7 +30729,7 @@ msgstr "Možete postaviti višu vrednost ovde ukoliko se više korisnika prijavl
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati da promenite filtere Vašeg izveštaja."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Možete koristiti prilagodi obrazac za postavljanje nivoa na poljima."
@@ -30526,6 +30759,10 @@ msgstr "Otkazali ste ovaj dokument {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Ne možete kreirati grafikon kontrolne table iz jednog DocType-a"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr "Ne možete deliti `{0}` na {1} `{2}` jer nemate `{0}` dozvolu na `{1}`"
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Ne možete ukloniti opciju 'Isključivo za čitanje' za polje {0}"
@@ -30552,7 +30789,6 @@ msgid "You changed {0} to {1}"
msgstr "Promenili ste {0} u {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "Kreirali ste ovo"
@@ -30561,11 +30797,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "Vi ste kreirali ovaj dokument {0}"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "Nemate dozvolu za čitanje ili izbor za {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
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."
@@ -30577,15 +30809,19 @@ msgstr "Nemate dovoljno dozvola da dovršite ovu radnju"
msgid "You do not have import permission for {0}"
msgstr "Nemate dozvolu za uvoz za {0}"
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr "Nemate dozvolu za pristup polju u zavisnoj tabeli: {0}"
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "Nemate dozvolu za pristup polju: {0}"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Nemate dozvolu da otkažete sve povezane dokumente."
@@ -30621,7 +30857,7 @@ msgstr "Uspešno ste odjavljeni"
msgid "You have hit the row size limit on database table: {0}"
msgstr "Dostigli ste ograničenje broja redova u tabeli baze podataka: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Niste uneli vrednost. Polje će biti postavljeno kao prazno."
@@ -30641,7 +30877,7 @@ msgstr "Imate nepročitano {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Još uvek niste dodali grafikone ili brojčane kartice na kontrolnu tablu."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "Još uvek niste kreirali {0}"
@@ -30650,7 +30886,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Dostigli ste ograničenje broja zahteva zbog prevelikog broja zahteva. Molimo Vas pokušajte ponovo kasnije."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Vi ste poslednji put ovo uredili"
@@ -30666,12 +30901,12 @@ msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac."
msgid "You must login to submit this form"
msgstr "Morate biti prijavljeni da biste podneli ovaj obrazac"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
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."
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Morate biti menadžer radnog prostora da biste obrisali javni radni prostor."
@@ -30679,7 +30914,7 @@ msgstr "Morate biti menadžer radnog prostora da biste obrisali javni radni pros
msgid "You need to be Workspace Manager to edit this document"
msgstr "Morate biti menadžer radnog prostora da biste uredili ovaj dokument"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Morate biti sistemski korisnik da biste pristupili ovoj stranici."
@@ -30711,7 +30946,7 @@ msgstr "Morate omogućiti JavaScript da bi Vaša aplikacija radila."
msgid "You need to have \"Share\" permission"
msgstr "Morate imati dozvolu za \"Deljenje\""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Morate da instalirate pycups da biste koristili ovu mogućnost!"
@@ -30731,7 +30966,7 @@ msgstr "Potrebna Vam je dozvola za izmenu na {0} {1} za spajanje"
msgid "You need write permission on {0} {1} to rename"
msgstr "Potrebna Vam je dozvola za izmenu na {0} {1} za preimenovanje"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "Potrebna Vam je dozvola {0} da biste preuzeli vrednosti iz {1} {2}"
@@ -30778,7 +31013,7 @@ msgstr "Prestali ste da pratite ovaj dokument"
msgid "You viewed this"
msgstr "Pregledali ste ovo"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "Bićete preusmereni na:"
@@ -30855,7 +31090,7 @@ msgstr "Vaša imejl adresa"
msgid "Your exported report: {0}"
msgstr "Vaš izveštaj koji ste izvezli: {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Vaš obrazac je uspešno ažuriran"
@@ -30897,7 +31132,7 @@ msgstr "Vaš izveštaj se generiše u pozadini. Dobićete imejl na {0} sa linkom
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."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "Vaš sajt je trenutno na održavanju ili se ažurira."
@@ -30919,7 +31154,7 @@ msgstr "Nula znači poslati zapise koji su ažurirani u bilo kojem trenutku"
msgid "[Action taken by {0}]"
msgstr "[Radnja preduzeta od strane {0}]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
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`"
@@ -30938,7 +31173,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "izmeni"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "i"
@@ -30961,7 +31196,7 @@ msgstr "po ulozi"
msgid "cProfile Output"
msgstr "cProfile izlaz"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "kalendar"
@@ -30977,7 +31212,9 @@ msgid "canceled"
msgstr "otkazano"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "chrome"
@@ -31001,7 +31238,7 @@ msgid "cyan"
msgstr "cijan"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "d"
@@ -31059,7 +31296,7 @@ msgstr "obriši"
msgid "descending"
msgstr "opadajuće"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "vrsta dokumenta...,npr. kupac"
@@ -31069,7 +31306,7 @@ msgstr "vrsta dokumenta...,npr. kupac"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "npr. \"Podrška\", \"Prodaja\", \"Petar Petrović\""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "npr. (55 + 434) / 4 ili =Math.sin(Math.PI/2)..."
@@ -31111,12 +31348,16 @@ msgstr "emacs"
msgid "email"
msgstr "imejl"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "prijemna pošta imejla"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "prazno"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "prazno"
@@ -31172,12 +31413,12 @@ 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:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "h"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "hub"
@@ -31192,6 +31433,20 @@ msgstr "ikonica"
msgid "import"
msgstr "uvoz"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr "je onemogućeno"
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr "je omogućeno"
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "jane@example.com"
@@ -31231,16 +31486,11 @@ msgid "long"
msgstr "dugo"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr "macOS Launchpad"
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "spojeno {0} u {1}"
@@ -31259,15 +31509,15 @@ msgstr "mm-dd-yyyy"
msgid "mm/dd/yyyy"
msgstr "mm/dd/yyyy"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "naziv modula..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "novo"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "nova vrsta dokumenta"
@@ -31329,7 +31579,7 @@ msgstr "on_update"
msgid "on_update_after_submit"
msgstr "on_update_after_submit"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "ili"
@@ -31402,7 +31652,7 @@ msgid "restored {0} as {1}"
msgstr "vraćeno {0} kao {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -31486,11 +31736,11 @@ msgstr "tekstualna vrednost, npr. {0} ili uid={0}, ou=users,dc=example,dc=com"
msgid "submit"
msgstr "podnesi"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "naziv oznake..., npr. #oznaka"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "tekstu u vrsti dokumenta"
@@ -31588,11 +31838,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "kada se klikne na element, fokusiraće se na iskačuću poruku ukoliko je prisutna."
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (sa ispravljenim qt)."
@@ -31628,11 +31880,11 @@ msgstr "yyyy-mm-dd"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : vrsta}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31649,8 +31901,8 @@ msgstr "{0} ({1}) (1 red obavezan)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31663,13 +31915,13 @@ msgid "{0} Chart"
msgstr "{0} grafikon"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} kontrolna tabla"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31703,11 +31955,11 @@ msgstr "{0} M"
msgid "{0} Map"
msgstr "{0} mapa"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} naziv"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} nije dozvoljeno menjati {1}, nakon što je podneto od {2} za {3}"
@@ -31715,7 +31967,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:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} izveštaji"
@@ -31728,11 +31980,11 @@ msgid "{0} Tree"
msgstr "{0} stablo"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} pregleda veb-stranice"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} dodato"
@@ -31794,7 +32046,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} je otkazao ovaj dokument {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
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."
@@ -31823,16 +32075,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} je promenio {1} u {2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0} sadrži nevažeći izraz funkcije preuzmi iz, funkcija preuzmi iz ne može biti samoreferencijalna."
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr "{0} sadrži {1}"
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} je uspešno kreirano"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "{0} je kreirao ovo"
@@ -31849,11 +32104,19 @@ msgstr "{0} d"
msgid "{0} days ago"
msgstr "pre {0} dana"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr "{0} ne sadrži {1}"
+
#: 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} ne postoji u redu {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr "{0} je jednako {1}"
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
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"
@@ -31878,7 +32141,7 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodelio podrazumevanu vrednost za {1}."
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr "{0} sadrži nevažeću backtick notaciju: {1}"
@@ -31899,7 +32162,11 @@ msgstr "{0} ukoliko niste preusmereni unutar {1} sekundi"
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} u redu {1} ne može imati URL i zavisne stavke"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr "{0} je potomak {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} je obavezno polje"
@@ -31907,7 +32174,15 @@ msgstr "{0} je obavezno polje"
msgid "{0} is a not a valid zip file"
msgstr "{0} nije važeći zip fajl"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr "{0} je nakon {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr "{0} je nadređen {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} nije važeće polje za podatak."
@@ -31915,6 +32190,15 @@ msgstr "{0} nije važeće polje za podatak."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} nije važeća imejl adresa u 'Primaoci'"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr "{0} je pre {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr "{0} je između {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} je između {1} i {2}"
@@ -31924,22 +32208,36 @@ msgstr "{0} je između {1} i {2}"
msgid "{0} is currently {1}"
msgstr "{0} je trenutno {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr "{0} je onemogućen"
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr "{0} je omogućen"
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} je jednako {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} je veće ili jednako {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} je veće od {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} je manje ili jednako {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} je manje od {1}"
@@ -31952,10 +32250,14 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezno"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "{0} nije zavisna tabela od {1}"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr "{0} nije potomak {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}"
@@ -31972,12 +32274,12 @@ msgstr "{0} nije važeći kalendar. Preusmeravanje na podrazumevani kalendar."
msgid "{0} is not a valid Cron expression."
msgstr "{0} nije važeći Cron izraz."
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeći DocType ili dinamički link"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća imejl adresa"
@@ -31985,23 +32287,23 @@ 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:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} nije važeći naziv"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije važeći broj telefona"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
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:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nije važeći matični DocType za {1}"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće matično polje za {1}"
@@ -32017,6 +32319,11 @@ msgstr "{0} nije zip fajl"
msgid "{0} is not an allowed role for {1}"
msgstr "{0} nije dozvoljena uloga za {1}"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr "{0} nije nadređen {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} nije jednako {1}"
@@ -32025,10 +32332,12 @@ msgstr "{0} nije jednako {1}"
msgid "{0} is not like {1}"
msgstr "{0} nije kao {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} nije jedan od {1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} nije postavljen"
@@ -32037,36 +32346,50 @@ msgstr "{0} nije postavljen"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada podrazumevani format za štampanje za {1} doctype"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr "{0} je na ili nakon {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr "{0} je na ili pre {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} je jedno od {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} je neophodno"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} je postavljeno"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr "{0} je {1}"
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "odabrano {0} stavki"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} se upravo predstavio kao Vi. Naveo je sledeći razlog: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} je poslednji put ovo uredio"
@@ -32094,35 +32417,35 @@ msgstr "pre {0} minuta"
msgid "{0} months ago"
msgstr "pre {0} meseci"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} mora biti nakon {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora počinjati sa '{1}'"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} ne sme biti nijedno od {1}"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} mora prvo biti postavljeno"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstveno"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -32139,11 +32462,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} se ne može preimenovati"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} od {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redova sa zavisnim podacima)"
@@ -32172,7 +32495,7 @@ msgstr "{0} zapisa se čuva {1} dana."
msgid "{0} records deleted"
msgstr "{0} zapisa obrisano"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} zapisa će biti izvezeno"
@@ -32197,7 +32520,7 @@ msgstr "{0} je uklonio {1} redova iz {2}"
msgid "{0} role does not have permission on any doctype"
msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} red#{1}:"
@@ -32211,7 +32534,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0} redova u {1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} je uspešno sačuvano"
@@ -32219,7 +32542,7 @@ msgstr "{0} je uspešno sačuvano"
msgid "{0} self assigned this task: {1}"
msgstr "{0} je sebi dodelio ovaj zadatak: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} je podelio dokument {1} {2} sa Vama"
@@ -32287,7 +32610,7 @@ msgstr "{0} w"
msgid "{0} weeks ago"
msgstr "pre {0} nedelja"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr "{0} sa ulogom {1}"
@@ -32299,7 +32622,7 @@ msgstr "{0} y"
msgid "{0} years ago"
msgstr "pre {0} godina"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} je dodat"
@@ -32307,11 +32630,11 @@ msgstr "{0} {1} je dodat"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} je dodat na kontrolnu tablu {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} već postoji"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} ne može biti \"{2}\". Trebalo bi da bude jedno od \"{3}\""
@@ -32323,11 +32646,11 @@ msgstr "{0} {1} ne može biti krajnji čvor jer ima zavisne entitete"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} ne postoji, izaberite novo tačku za spajanje"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
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:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađen"
@@ -32335,87 +32658,59 @@ msgstr "{0} {1} nije pronađen"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Podneti zapis ne može biti obrisan. Prvo morate {2} otkazati {3}."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, red {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom dok se proces ne završi."
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) će biti skraćeno, jer je maksimalan broj dozvoljenih karaktera {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Ne može se postaviti izmena bez otkazivanja"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Ne može se postaviti dodeljena izmena ukoliko nije moguće podneti"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Ne može se postaviti dodeljeno podnošenje ukoliko nije moguće podneti"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Ne može se postaviti otkazivanje bez podnošenja"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Ne može se postaviti uvoz bez kreiranja"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Ne može se postaviti podnošenje, otkazivanje ili dopuna bez izmene"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Ne može se postaviti uvoz kao {1} jer nije moguće uvesti"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Neuspešno dodavanje novog ponavljajućeg dokumenta. Da biste omogućili dodavanje dokumenta u imejl automatska obaveštenja, omogućite {1} u podešavanjima štampe"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: Polje '{1}' ne može biti postavljeno kao jedinstveno jer sadrži nejedinstvene vrednosti"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: Polje {1} u redu {2} ne može biti sakriveno i obavezno bez podrazumevane vrednosti"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Polje {1} vrste {2} ne može biti obavezno"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Naziv polja {1} se pojavljuje više puta u redovima {2}"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Vrsta polja {1} za {2} ne može biti jedinstveno"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Osnovne dozvole nisu postavljene"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Isključivo je dozvoljeno samo jedno pravilo sa istom ulogom, nivoom i {1}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Opcije moraju da budu validni DocType za polje {1} u redu {2}"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: Opcije su obavezne za vrstu polja link ili tabela {1} u redu {2}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Opcije {1} moraju biti iste kao naziv DocType-a {2} za polje {3}"
@@ -32423,15 +32718,59 @@ msgstr "{0}: Opcije {1} moraju biti iste kao naziv DocType-a {2} za polje {3}"
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Mogu se primeniti i druga pravila dozvola"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Dozvola na nivou 0 mora biti postavljena pre viših nivoa"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: Dozvola za 'Izmeni' ne može biti dodeljena za DocType koji se ne može podneti."
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: Dozvola za 'Izmeni' ne može biti dodeljena bez dozvole 'Kreiraj'."
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr "{0}: Dozvola za 'Otkaži' ne može biti dodeljena bez dozvole 'Podnesi'."
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Dozvola za 'Izvoz' je uklonjena jer ne može biti dodeljena za jedinstveni DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr "{0}: Dozvola za 'Uvoz' ne može biti dodeljena za DocType koji se ne može uvoziti."
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: Dozvola za 'Uvoz' ne može biti dodeljena bez dozvole 'Kreiraj'."
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Dozvola za 'Uvoz' je uklonjena jer ne može biti dodeljena za jedinstveni DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: Dozvola za 'Izveštaj' je uklonjena jer ne može biti dodeljena za jedinstveni DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: Dozvola za 'Podnesi' ne može biti dodeljena za DocType koji se ne može podneti."
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr "{0}: Dozvole 'Podnesi', 'Otkaži' i 'Izmeni' ne mogu biti dodeljene bez dozvole 'Izmena'."
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: Možete povećati ograničenje za ovo polje ukoliko je potrebno putem {1}"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr "{0}: Naziv polja ne može biti postavljen na rezervisano polje {1} u DocType-u"
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: naziv polja ne sme da sadrži rezervisane reči {1}"
@@ -32444,15 +32783,15 @@ 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:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} u odnosu na {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}: naziv polja {1} za {2} ne može biti indeksiran"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} sačuvano"
@@ -32472,11 +32811,11 @@ msgstr "{count} red izabran"
msgid "{count} rows selected"
msgstr "{count} redova izabrano"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} nije ispravan format naziva polja. Trebalo bi da bude {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} završeno"
diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po
index 9b223dafd1..40a28edbba 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2026-01-06 23:51\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:51\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "'Överordnad' betyder överordnad tabell där denna rad skall infogas"
msgid "\"Team Members\" or \"Management\""
msgstr "\"Team Medlemmar\" eller \"Ledning\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "\"ändrad_från\" fält måste finnas att skapa ändring."
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. och bidragsgivare"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr "'*' är endast tillåtet i {0} SQL funktion(er)"
@@ -74,7 +74,7 @@ msgstr "'*' är endast tillåtet i {0} SQL funktion(er)"
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "\"I Global Sök\" är inte tillåtet för fält {0} av typ {1}"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "\"I Global Sökning\" är otillåtet för {0} på rad {1}"
@@ -90,19 +90,19 @@ 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:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "'{0}' är inte ett giltigt IBAN nummer"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' är inte en giltig webbadress"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' är otillåtet för typ {1} på rad {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Erfordrad)"
@@ -148,7 +148,7 @@ msgstr "0 - för gissningsbart: riskabelt lösenord.\n"
msgid "0 is highest"
msgstr "0 är högsta värde"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Sant & 0 = Falskt"
@@ -166,7 +166,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:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Rapport"
@@ -197,7 +197,7 @@ msgstr "1 månad sedan"
msgid "1 of 2"
msgstr "1 av 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 post exporteras"
@@ -779,7 +779,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
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"
@@ -793,7 +793,7 @@ msgstr "System instans kan fungera som en OAuth Klient, Resurs eller Auktoriseri
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "En nedladdningslänk med dina uppgifter kommer att skickas till den e-postadress som är kopplad till ditt konto."
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "Ett fält med detta namn {0} finns redan i {1}"
@@ -894,7 +894,7 @@ msgstr "ALLT"
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr "API"
+msgstr "Single sign on"
#. Label of the api_access (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -1114,7 +1114,7 @@ msgstr "Åtgärd / Sökväg"
msgid "Action Complete"
msgstr "Åtgärd Klar"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Åtgärd Misslyckades"
@@ -1163,13 +1163,13 @@ msgstr "Åtgärd {0} misslyckades {1} {2}. Visa {3}"
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "Åtgärder"
@@ -1226,20 +1226,20 @@ msgstr "Aktivitet"
msgid "Activity Log"
msgstr "Aktivitet Logg"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Lägg till"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Lägg till/Ta Bort Kolumn"
@@ -1247,11 +1247,11 @@ msgstr "Lägg till/Ta Bort Kolumn"
msgid "Add / Update"
msgstr "Lägg till / Uppdatera"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Lägg till Ny Regel"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Lägg till Bilaga"
@@ -1271,11 +1271,15 @@ msgstr "Lägg till Kant Längst Ner"
msgid "Add Border at Top"
msgstr "Lägg till Kant Längst Upp"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr "Lägg till CSS"
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Lägg till i Översikt Panel"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Lägg till Diagram i Översikt Panel"
@@ -1284,8 +1288,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:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1329,11 +1333,7 @@ msgstr "Lägg till Grupp"
msgid "Add Indexes"
msgstr "Lägg till Index"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Lägg till Flera"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Lägg till Ny Behörighet Regel"
@@ -1346,17 +1346,13 @@ msgstr "Lägg till Deltagare"
msgid "Add Query Parameters"
msgstr "Lägg till Fråge Parametrar"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Lägg till Roller"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "Lägg till Signatur"
@@ -1375,16 +1371,16 @@ msgstr "Lägg till Utrymme Längst Upp"
msgid "Add Subscribers"
msgstr "Lägg till Prenumeranter"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Lägg till Taggar"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Lägg till Taggar"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Lägg till Mall"
@@ -1434,19 +1430,19 @@ msgstr "Lägg till Kommentar"
msgid "Add a new section"
msgstr "Lägg till ny sektion"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Lägg till Rad Ovanför denna Rad"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Lägg till Rad Nederst"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "Lägg till Rad Överst"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Lägg till Rad Under denna Rad"
@@ -1464,6 +1460,10 @@ msgstr "Lägg till kolumn"
msgid "Add field"
msgstr "Lägg till fält"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr "Lägg till flera"
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1477,6 +1477,10 @@ msgstr "Lägg till siffror eller specialtecken."
msgid "Add page break"
msgstr "Lägg till sidbrytning"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr "Lägg till rad"
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Lägg till Skript för Undertabell"
@@ -1495,7 +1499,7 @@ msgid "Add tab"
msgstr "Lägg till flik"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Lägg till i Översikt Panel"
@@ -1535,8 +1539,8 @@ msgstr "Tillagd HTML i sektion 'head' på webbsida, i första hand används för
msgid "Added default log doctypes: {}"
msgstr "Lade till standard logg Dokument Typer: {}"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "la till {0} ({1})"
@@ -1626,7 +1630,7 @@ msgstr "Lägger till anpassad klient skript till DocType"
msgid "Adds a custom field to a DocType"
msgstr "Lägger till anpassad fält till DocType"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Administration"
@@ -1653,15 +1657,15 @@ msgstr "Administration"
msgid "Administrator"
msgstr "Administratör"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Administratör Inloggad"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administratör loggade in {0} {1} via IP Adress {2}."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "Administratör kan inte följa"
@@ -1678,8 +1682,8 @@ msgstr "Avancerad"
msgid "Advanced Control"
msgstr "Avancerad Kontroll"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Avancerad Sökning"
@@ -1760,7 +1764,7 @@ msgstr "Aggregerad Funktion fält erfordras att skapa Översikt Panel Diagram"
msgid "Alert"
msgstr "Varna"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr "Alias måste vara sträng"
@@ -1784,6 +1788,15 @@ msgstr "Justera till Höger"
msgid "Align Value"
msgstr "Justera Värde"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr "Justering"
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1816,7 +1829,7 @@ msgstr "Alla"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Hela Dagen"
@@ -1828,11 +1841,11 @@ msgstr "Alla Bilder bifogade till Hemsida Bildspel ska vara allmänna bilder"
msgid "All Records"
msgstr "Alla Poster"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "Alla Godkännande"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "Alla anpassningar kommer att tas bort. Bekräfta."
@@ -2144,7 +2157,7 @@ msgstr "Tillåtna Roller"
msgid "Allowed embedding domains"
msgstr "Tillåtna inbäddning av domäner"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Tillåter DocType, DocType. Var försiktig!"
@@ -2178,13 +2191,61 @@ msgstr "Tillåter klienter att visa detta som en auktorisering server när de fr
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."
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr "Tillåter utskrift eller nedladdning av PDF dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+msgstr "Tillåter delning av dokument åtkomst med andra användare."
+
#. 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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr "Tillåter användare att få tillgång för rapporter relaterade till dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr "Tillåter användare att skapa nya dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr "Tillåter användare att radera dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr "Tillåter användare att redigera befintliga poster som de har åtkomst till."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr "Tillåter användare att skicka e-post från dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr "Tillåter användare att exportera data från rapport vy."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr "Tillåter användare att söka och se poster."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr "Tillåter användare att använda data import verktyg för att skapa/uppdatera poster."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr "Tillåter användare att visa dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr "Tillåter användare att aktivera mask egenskap för vilket fält som helst i respektive doctype."
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Redan Registrerad"
@@ -2279,7 +2340,7 @@ msgstr "Ändring"
msgid "Amendment Naming Override"
msgstr "Ändring Namngivning Serie Åsidosättande"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Ändring Ej Tillåten"
@@ -2292,7 +2353,7 @@ msgstr "Ändring Namngivning Regler uppdaterad."
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr "Ett e-postmeddelande för att verifiera din begäran har skickats till din e-postadress. Vänligen verifiera din begäran för att slutföra processen."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Fel inträffade vid konfiguration av Session Standard"
@@ -2343,7 +2404,7 @@ msgstr "Anonymisering Matris"
msgid "Anonymous responses"
msgstr "Anonyma svar"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "Annan transaktion spärrar detta. Försök igen om några sekunder."
@@ -2356,7 +2417,7 @@ msgstr "Annan {0} med namn {1} existerar, välj ett annat namn"
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 "Alla strängbaserade skrivarspråk kan användas. Att skriva rå kommando kräver kunskap om skrivarens skrivarspråk som tillhandahålls av tillverkare. Se utvecklarhandbok som tillhandahålls av tillverkare om hur man skriver deras ursprungliga kommando. Dessa kommando återges på serversidan med hjälp av Jinja Templating Language."
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr "Förutom System Ansvarig kan roller med Ange användarbehörighet rättigheten ange behörigheter för andra användare för detta DocType."
@@ -2406,11 +2467,11 @@ msgstr "App Namn"
msgid "App Name (Client Name)"
msgstr "App Namn (Klient Namn)"
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "App hittades inte för modul: {0}"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "App {0} är inte installerad"
@@ -2484,7 +2545,7 @@ msgstr "Gäller för (DocType)"
msgid "Apply"
msgstr "Tillämpa"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Tillämpa Tilldelning Regel"
@@ -2493,6 +2554,10 @@ msgstr "Tillämpa Tilldelning Regel"
msgid "Apply Filters"
msgstr "Tillämpa Filter"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr "Tillämpa Modul Export Filter"
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2532,7 +2597,7 @@ msgstr "Tillämpa denna regel om Användaren är Ansvarig"
msgid "Apply to all Documents Types"
msgstr "Tillämpa på alla Dokument Typer"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Tillämpar: {0}"
@@ -2540,18 +2605,11 @@ msgstr "Tillämpar: {0}"
msgid "Approval Required"
msgstr "Godkännande Erfordras"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Appar"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr "Appar med Sökfunktion"
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2574,16 +2632,16 @@ msgstr "Arkiverade Kolumner"
msgid "Are you sure you want to cancel the invitation?"
msgstr "Är du säker på att du vill avbryta inbjudan?"
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr "Är du säker på att du vill ta bort tilldelningar?"
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Är du säker på att du vill ta bort alla rader?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr "Är du säker på att du vill ta bort alla {0} rader?"
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Är du säker på att du vill ta bort bifogad fil?"
@@ -2602,19 +2660,19 @@ 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 "Är du säker på att du vill ta bort flik? Alla avsnitt och fält i flik flyttas till föregående flik."
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr "Är du säker på att du vill ta bort denna post?"
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
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:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "Är du säker på att du vill skapa ny rapport?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "Är du säker på att du vill slå samman {0} med {1}?"
@@ -2634,7 +2692,7 @@ msgstr "Är du säker att du vill länka om kommunikation till {0}?"
msgid "Are you sure you want to remove all failed jobs?"
msgstr "Är du säker på att du vill ta bort alla misslyckade jobb?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "Är du säker på att du vill ta bort filtret {0}?"
@@ -2683,7 +2741,7 @@ msgstr "Enligt begäran har ditt konto och data på {0} kopplat till E-post {1}
msgid "Ask"
msgstr "Fråga"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Tilldela"
@@ -2696,7 +2754,7 @@ msgstr "Tilldela Villkor"
msgid "Assign To"
msgstr "Tilldela till"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Tilldela till"
@@ -2746,7 +2804,7 @@ msgstr "Tilldelad Av"
msgid "Assigned By Full Name"
msgstr "Tilldelad Av Fullständig Namn"
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2835,7 +2893,7 @@ msgstr "Tillldelningar"
msgid "Asynchronous"
msgstr "Asynkron"
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "Minst en kolumn erfordras för att visas i rutnät."
@@ -2860,7 +2918,7 @@ msgstr "Minst ett fält av Överordnad Dokument Typ erfordras"
msgid "Attach"
msgstr "Bifoga"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Bifoga Dokument Utskrift"
@@ -2958,19 +3016,26 @@ msgstr "Bilaga Inställningar"
#. 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:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Bilagor"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "Försöker ansluta till QZ Aktivitet Fält..."
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "Försöker starta QZ Aktivitet Fält..."
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr "Deltar"
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "Tillskrivning"
@@ -2988,7 +3053,7 @@ msgstr "Granskning Spår"
#. Label of the auth_url_data (Code) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Auth URL Data"
-msgstr "Auth URL Data"
+msgstr "Auth URL-data"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:96
msgid "Auth URL data should be valid JSON"
@@ -3295,11 +3360,6 @@ msgstr "Fantastiskt Jobb"
msgid "Awesome, now try making an entry yourself"
msgstr "Fantastiskt, försök nu göra ett inlägg själv"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr "Awesomebar"
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3405,17 +3465,12 @@ msgstr "Bakgrund Färg"
msgid "Background Image"
msgstr "Bakgrund Bild"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-msgstr "Bakgrund Jobb Aktivitet"
-
#. 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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Bakgrund Jobb"
@@ -3528,8 +3583,8 @@ msgstr "Bas URL"
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "Baserat På"
@@ -3553,6 +3608,8 @@ msgstr "Grundläggande"
msgid "Basic Info"
msgstr "Information"
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3622,7 +3679,7 @@ msgstr "Börjar med"
msgid "Beta"
msgstr "Beta"
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "Bättre att lägga till några fler bokstäver eller annat ord"
@@ -3750,18 +3807,11 @@ msgstr "Märke HTML"
msgid "Brand Image"
msgstr "Märke Bild"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr "Märke Logo"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr "Varumärke Logotyp med Sökfunktion"
-
#. 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"
@@ -3833,7 +3883,7 @@ msgstr "Massborttagning"
msgid "Bulk Edit"
msgstr "Mass Redigera"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Mass Redigera {0}"
@@ -3854,7 +3904,7 @@ msgstr "Mass PDF Export"
msgid "Bulk Update"
msgstr "Mass Uppdatera"
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr "Mass Godkännande stöder endast upp till 500 dokument."
@@ -3866,7 +3916,7 @@ msgstr "Mass Åtgärd i bakgrund kö."
msgid "Bulk operations only support up to 500 documents."
msgstr "Mass Åtgärder stöder bara upp till 500 dokument."
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr "Mass {0} i bakgrund kö."
@@ -4015,7 +4065,7 @@ msgstr "Cache"
msgid "Cache Cleared"
msgstr "Cache Raderad"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Beräkna"
@@ -4065,12 +4115,12 @@ msgid "Callback Title"
msgstr "Återuppringning Benämning"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4082,11 +4132,11 @@ msgstr "Kampanj"
msgid "Campaign Description (Optional)"
msgstr "Kampanj Beskrivning (Valfri)"
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr "Kan inte byta namn eftersom kolumn {0} redan finns under DocType."
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr "Kan bara ändra till/från Autoökning namngivning regel när det inte finns några data i doctype"
@@ -4096,7 +4146,7 @@ msgstr "Kan bara ändra till/från Autoökning namngivning regel när det inte f
msgid "Can only list down the document types which has been linked to the User document type."
msgstr "Kan bara lista de Dokument Typer som har länkats till användarDokument Typen."
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr "Kan inte följa eftersom ändringar inte spåras."
@@ -4118,7 +4168,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:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "Annullera"
@@ -4128,11 +4178,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "Annullera"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "Annullera"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "Annullera Alla Dokument"
@@ -4144,7 +4194,7 @@ msgstr "Avbryt Import"
msgid "Cancel Prepared Report"
msgstr "Avbryt Förberedd Rapport"
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "Annullera {0} dokument?"
@@ -4177,7 +4227,7 @@ msgstr "Annullerar"
msgid "Cancelling documents"
msgstr "Annullerar Dokument"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "Annullerar {0}"
@@ -4185,7 +4235,7 @@ msgstr "Annullerar {0}"
msgid "Cannot Download Report due to insufficient permissions"
msgstr "Kan inte ladda ner Rapport på grund av otillräckliga behörigheter"
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr "Kan inte Hämta Värden"
@@ -4193,7 +4243,7 @@ msgstr "Kan inte Hämta Värden"
msgid "Cannot Remove"
msgstr "Kan inte Ta Bort"
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr "Kan inte Uppdatera efter Godkännande"
@@ -4213,11 +4263,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:1062
+#: frappe/model/document.py:1061
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:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Kan inte ändra dokument status från 1 (Godkänd) till 0 (Utkast)"
@@ -4229,7 +4279,7 @@ msgstr "Kan inte ändra tillstånd för Annullerad Dokument ({0} Tillstånd)<
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "Kan inte ändra tillstånd för Annullerad Dokument. Övergång rad {0}"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "Kan inte ändra till/från automatisk ökning av automatisk name i Anpassa Formulär"
@@ -4237,10 +4287,14 @@ msgstr "Kan inte ändra till/från automatisk ökning av automatisk name i Anpas
msgid "Cannot create a {0} against a child document: {1}"
msgstr "Kan inte skapa {0} mot underordnad dokument: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "Kan inte skapa privat arbetsyta för andra användare"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr "Kan inte ta bort skrivbord ikon '{0}' eftersom den är begränsad"
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "Kan inte ta bort Hem och Bilaga mappar"
@@ -4249,15 +4303,15 @@ msgstr "Kan inte ta bort Hem och Bilaga mappar"
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}"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "Kan inte ta bort standard åtgärd. Dölj det istället"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "Kan inte ta bort standard dokument tillstånd."
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "Kan inte ta bort standard fält {0}. Dölj det istället"
@@ -4268,11 +4322,11 @@ msgstr "Kan inte ta bort standard fält {0}. Dölj det iställe
msgid "Cannot delete standard field. You can hide it if you want"
msgstr "Kan inte ta bort standard fält. Dölj det istället"
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "Kan inte ta bort standard länk. Dölj det istället"
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr "Kan inte ta bort system skapad fält {0}. Dölj det istället."
@@ -4300,7 +4354,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:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "Kan inte redigera annullerad dokument"
@@ -4313,7 +4367,7 @@ msgstr "Kan inte redigera filter för standard diagram"
msgid "Cannot edit filters for standard number cards"
msgstr "Kan inte redigera filter för standard diagram"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "Kan inte redigera standard fält"
@@ -4329,15 +4383,15 @@ msgstr "Kan inte hitta fil {} på disk"
msgid "Cannot get file contents of a Folder"
msgstr "Kan inte hämta fil innehåll från mapp"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Kan inte mappa flera skrivare till enskild utskrift format."
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr "Kan inte importera tabell med fler än 5000 rader."
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "Kan inte länka annullerad dokument: {0}"
@@ -4349,7 +4403,7 @@ msgstr "Kan inte mappa eftersom följande villkor misslyckas:"
msgid "Cannot match column {0} with any field"
msgstr "Kan inte avstäma kolumn {0} med något fält"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "Kan inte flytta rad"
@@ -4374,7 +4428,7 @@ msgid "Cannot submit {0}."
msgstr "Kan inte godkänna {0}."
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "Kan inte uppdatera {0}"
@@ -4394,7 +4448,7 @@ msgstr "Kan inte {0} {1}."
msgid "Capitalization doesn't help very much."
msgstr "Versaler hjälper inte mycket."
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "Fånga"
@@ -4408,7 +4462,7 @@ msgstr "Kort"
msgid "Card Break"
msgstr "Kort Brytning"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "Kort Titel"
@@ -4437,17 +4491,19 @@ msgstr "Kategori Beskrivning"
msgid "Category Name"
msgstr "Kategori Namn"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr "Center"
-#: 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 "Vissa dokument, som faktura, ska inte ändras när de är slutliga. Det slutliga tillståndet för sådana dokument kallas godkänd. Du kan begränsa vilka roller som kan godkänna."
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4536,7 +4592,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Diagram Namn"
@@ -4601,6 +4657,12 @@ msgstr "Markera kolumner för att välja, dra för att ange ordning."
msgid "Check the Error Log for more information: {0}"
msgstr "Kontrollera Fel Logg för mer information: {0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr "Aktivera detta om uppdatering värde är formel eller ett uttryck (t.ex. doc.amount * 2). Lämna det inaktiverad för värde i vanlig text."
+
#: 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 "Välj detta för att användare inte ska kunna registrera konto på Webbplats. Användare får inte skrivbord åtkomst om du inte uttryckligen anger det."
@@ -4652,7 +4714,7 @@ msgstr "Underordnad Doctype"
msgid "Child Item"
msgstr "Underordnad Artikel"
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr "Underordnad Tabell {0} för fält {1} måste vara virtuell"
@@ -4662,7 +4724,7 @@ msgstr "Underordnad Tabell {0} för fält {1} måste vara virtuell"
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:1062
+#: frappe/database/query.py:1105
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."
@@ -4670,7 +4732,7 @@ msgstr "Underordnade frågefält för '{0}' måste vara lista eller tupel."
msgid "Choose Existing Card or create New Card"
msgstr "Välj Befintligt Kort eller skapa Ny Kort"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "Välj avsnitt eller fortsätt skriva"
@@ -4690,10 +4752,6 @@ msgstr "Välj Ikon"
msgid "Choose authentication method to be used by all users"
msgstr "Välj autentiseringsätt som ska användas av alla Användare"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr "Chromium är inte installerad. Kör installation först."
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4710,11 +4768,11 @@ msgstr "Stad/Ort"
msgid "Clear"
msgstr "Rensa"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "Rensa & Lägg till Mall"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "Rensa & Lägg till Mall"
@@ -4722,7 +4780,7 @@ msgstr "Rensa & Lägg till Mall"
msgid "Clear All"
msgstr "Rensa Alla"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Rensa Tilldelning"
@@ -4748,7 +4806,7 @@ msgstr "Rensa Logg Efter (dagar)"
msgid "Clear User Permissions"
msgstr "Rensa Användare Rättigheter"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "Rensa e-post meddelande och lägg till mall"
@@ -4816,7 +4874,7 @@ msgstr "Klicka på att Ange Dynamisk Filter"
msgid "Click to Set Filters"
msgstr "Klicka på att Ange Filter"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "Klicka på att sortera efter {0}"
@@ -4924,7 +4982,7 @@ msgstr "Klientskript"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Stäng"
@@ -4934,7 +4992,7 @@ msgstr "Stäng"
msgid "Close Condition"
msgstr "Stängning Villkor"
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr "Stäng egenskaper"
@@ -4990,12 +5048,12 @@ msgstr "Kod utmaning sätt"
msgid "Collapse"
msgstr "Fäll In"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Fäll In"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Fäll In Alla"
@@ -5052,7 +5110,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5063,7 +5121,7 @@ msgstr "Färg"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5108,11 +5166,11 @@ msgstr "Kolumn Namn"
msgid "Column Name cannot be empty"
msgstr "Kolumn Namn kan inte vara tom"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "Kolumn Bred"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "Kolumn bredd kan inte vara noll."
@@ -5155,7 +5213,7 @@ msgstr "Comm10E"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5302,12 +5360,12 @@ msgstr "Klar"
msgid "Complete By"
msgstr "Klar Senast"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Slutför Registrering"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "Slutför Konfiguration"
@@ -5322,7 +5380,7 @@ msgstr "Slutför Konfiguration"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Klar"
@@ -5413,7 +5471,7 @@ msgstr "Konfiguration"
msgid "Configure Chart"
msgstr "Försäljning Order Diagram"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "Konfigurera Kolumner"
@@ -5504,8 +5562,8 @@ msgstr "Ansluten App"
msgid "Connected User"
msgstr "Ansluten Användare"
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "Ansluten till QZ Aktivitet Fält!"
@@ -5623,7 +5681,7 @@ msgstr "Innehåller {0} säkerhetskorrigeringar"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5692,11 +5750,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "Kopierad till urklipp."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr "Kopierade {0} {1} till urklipp"
@@ -5708,12 +5766,12 @@ msgstr "Kopiera Länk"
msgid "Copy embed code"
msgstr "Kopiera inbäddningskod"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "Kopiera fel till urklipp"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "Kopiera till Urklipp"
@@ -5724,7 +5782,7 @@ msgstr "Kopiera token till urklipp"
#. Label of the copyright (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr "Copyright"
+msgstr "Upphovsrätt"
#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
@@ -5734,7 +5792,7 @@ msgstr "System DocType kan inte anpassas."
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "System Moduler {0} kan inte sökas i Global Sök."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "Rätt version : "
@@ -5742,7 +5800,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:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "Kunde inte hitta {0}"
@@ -5750,11 +5808,11 @@ 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:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr "Kunde inte parsa fält: {0}"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr "Chromium kunde inte startas. Kontrollera loggar för detaljer."
@@ -5762,7 +5820,7 @@ msgstr "Chromium kunde inte startas. Kontrollera loggar för detaljer."
msgid "Could not start up:"
msgstr "Kunde inte starta:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "Kunde inte spara. Kontrollera angivna uppgifter"
@@ -5814,7 +5872,7 @@ msgstr "Räknare"
msgid "Country"
msgstr "Land"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "Land Kod Erfordras"
@@ -5841,15 +5899,16 @@ msgstr "Cr"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Skapa"
@@ -5862,13 +5921,13 @@ msgstr "Skapa & Fortsätt"
msgid "Create Address"
msgstr "Skapa Adress"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "Skapa Kort"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "Skapa Diagram"
@@ -5902,7 +5961,7 @@ msgstr "Skapa Logg"
msgid "Create New"
msgstr "Skapa Ny"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Skapa Ny "
@@ -5915,7 +5974,7 @@ msgstr "Skapa Ny DocType"
msgid "Create New Kanban Board"
msgstr "Skapa Ny Anslagstavla"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr "Skapa Sparad Filter"
@@ -5931,18 +5990,18 @@ msgstr "Skapa ny Format"
msgid "Create a Reminder"
msgstr "Skapa Påminnelse"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "Skapa ny..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "Skapa ny Post"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Skapa {0}"
@@ -5959,7 +6018,7 @@ msgstr "Skapa eller Redigera Utskrift Format"
msgid "Create or Edit Workflow"
msgstr "Skapa eller Redigera Arbetsflöde"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "Skapa {0}"
@@ -5978,13 +6037,21 @@ msgstr "Skapad"
msgid "Created At"
msgstr "Skapad"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Skapad Av"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr "Skapad av dig"
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr "Skapad av {0}"
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "Skapade Anpassad Fält {0} i {1}"
@@ -6178,7 +6245,7 @@ msgstr "Anpassade Dokument Typer (Välj Behörighet)"
msgid "Custom Document Types Limit Exceeded"
msgstr "Anpassade Dokument Typer Gräns Överskriden"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "Anpassade Dokument"
@@ -6189,15 +6256,15 @@ msgstr "Anpassade Dokument"
msgid "Custom Field"
msgstr "Anpassad Fält"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "Anpassad Fält {0} är skapad av Administratör och kan bara tas bort via Administratör Konto."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Anpassade Fält kan bara läggas till i Standard DocTypes."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Anpassade Fält kan inte läggas till i System DocTypes."
@@ -6223,7 +6290,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr "Anpassad Grupp Sökning om ifylld måste innehålla användarens platshållare {0}, t.ex. 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/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "Anpassad HTML"
@@ -6269,7 +6336,7 @@ msgstr "Anpassade Åsidosättningar"
msgid "Custom Report"
msgstr "Anpassad Rapport"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "Anpassade Rapporter"
@@ -6294,11 +6361,11 @@ msgstr "Anpassad Sidfält Meny"
msgid "Custom Translation"
msgstr "Anpassad Översättning"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "Anpassat fält bytte namn till {0}."
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
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}"
@@ -6321,26 +6388,26 @@ msgstr "Anpassad?"
msgid "Customization"
msgstr "Anpassning"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "Anpassningar Ångrade"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "Anpassningar Återställda "
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "Anpassningar för {0} som exporterades till:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Anpassa"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Anpassa"
@@ -6437,7 +6504,7 @@ msgstr "Dagsvis"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "Daglig Händelse Översikt skickas till Kalender Händelser där påminnelser anges."
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "Dagliga Händelser ska avslutas samma dag."
@@ -6494,8 +6561,8 @@ msgstr "Mörk Tema"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "Översikt Panel"
@@ -6745,7 +6812,7 @@ msgstr "Dagar Före"
msgid "Days Before or After"
msgstr "Dagar Före eller Efter"
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "Dödläge Inträffade"
@@ -6942,11 +7009,11 @@ msgstr "Standard Arbetsyta"
msgid "Default display currency"
msgstr "Standard Valuta"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "Standard för 'Kontroll' typ för fält {0} måste vara antingen '0' eller '1'"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "Standard Värde för {0} måste vara i lista med alternativ."
@@ -7003,11 +7070,12 @@ msgstr "Försenad"
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -7015,7 +7083,7 @@ msgstr "Försenad"
msgid "Delete"
msgstr "Ta bort"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Ta bort"
@@ -7029,10 +7097,6 @@ msgstr "Ta bort"
msgid "Delete Account"
msgstr "Ta bort Konto"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "Ta bort Alla"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7062,7 +7126,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Ta bort Flik"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr "Ta bort alla"
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr "Ta bort alla {0} rader"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "Ta bort och Skapa Ny"
@@ -7090,6 +7162,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "Ta bort flik med fält"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr "Ta bort rad"
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7104,16 +7180,20 @@ 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:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "Ta bort {0} Post permanent?"
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "Ta bort {0} Poster permanent?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr "Ta bort {0} rader"
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7144,7 +7224,7 @@ msgstr "Borttaget Namn"
msgid "Deleted all documents successfully"
msgstr "Alla Dokument Borttagna"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Borttagen!"
@@ -7251,6 +7331,7 @@ msgstr "Underordnad Av (inklusive)"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7333,16 +7414,21 @@ msgstr "Skrivbord Tema"
msgid "Desk User"
msgstr "Skrivbord Användare"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr "Skrivbord"
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "Skrivbord Ikon"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr "Skrivbord Layout"
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7372,11 +7458,11 @@ msgstr "Detaljer"
msgid "Detect CSV type"
msgstr "Detektera CSV typ"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "Lades inte till"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "Togs inte bort"
@@ -7524,10 +7610,11 @@ msgstr "Inaktiverad"
msgid "Disabled Auto Reply"
msgstr "Inaktiverad Autosvar"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Ångra"
@@ -7541,11 +7628,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Ångra"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "Ångra {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "Ångra?"
@@ -7619,11 +7706,11 @@ msgstr "Skapa inte ny Användare"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "Skapa inte ny Användare om Användare med E-post inte finns i system"
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "Ändra inte rubriker som är förinställda i mall"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr "Varna mig inte igen om {0}"
@@ -7631,7 +7718,7 @@ msgstr "Varna mig inte igen om {0}"
msgid "Do you still want to proceed?"
msgstr "Vill du fortfarande fortsätta?"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "Vill du annullera alla länkade dokument?"
@@ -7689,7 +7776,6 @@ msgstr "Status för följande tillstånd är ändrad:
{0}
{0}
{0}
{0} provided for the field {1} must have atleast one Link field"
msgstr "DocType {0} för fält {1} måste ha minst ett länk fält"
@@ -7793,10 +7878,6 @@ msgstr "DocType är Tabell/Formulär i app."
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "DocType måste kunna godkännas för vald DocType Händelse"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "DocType måste vara sträng"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "DocType måste ha minst ett fält"
@@ -7814,15 +7895,15 @@ msgstr "DocType Arbetsflöde kan tillämpas på."
msgid "DocType required"
msgstr "DocType erfordras"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "DocType {0} finns inte."
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "DocType {} hittades inte"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "DocType namn ska inte börja eller sluta med blanksteg"
@@ -7836,7 +7917,7 @@ msgstr "DocTypes kan inte ändras, använd {0} istället"
msgid "Doctype"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "Doctype namn är begränsad till {0} tecken ({1})"
@@ -7875,7 +7956,7 @@ msgstr "Dokument Åtgärder"
msgid "Document Follow"
msgstr "Följ Dokument"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "Följ Dokument Avisering"
@@ -7898,19 +7979,19 @@ msgstr "Dokument Länkning"
msgid "Document Links"
msgstr "Dokument Länkar"
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "Dokument Länkar Rad #{0}: Det gick inte att hitta fält {1} i {2} DocType"
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "Dokument Länkar Rad #{0}: Ogiltig doctype eller fältnamn."
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "Dokument Länkar Rad #{0}: Överordnad doctype erfordras för interna länkar"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr "Dokument Länkar Rad #{0}: Tabell Fält namn erfordras för interna länkar"
@@ -7929,9 +8010,9 @@ msgstr "Dokument Länkar Rad #{0}: Tabell Fält namn erfordras för interna län
msgid "Document Name"
msgstr "Dokument Namn"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "Dokument Namn måste vara sträng"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr "Dokument namn får inte vara tomt"
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7948,7 +8029,7 @@ msgstr "Dokument Namngivning Regel Villkor"
msgid "Document Naming Settings"
msgstr "Dokument Namngivning Inställningar"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "Dokument i Kö"
@@ -8052,7 +8133,7 @@ msgstr "Dokument Benämning"
#: 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:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8072,11 +8153,11 @@ msgstr "DocType"
msgid "Document Type and Function are required to create a number card"
msgstr "Dokument Typ och Funktion erfordras för att skapa nummerkort"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "DocType kan inte importeras"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "DocType kan inte godkännas"
@@ -8105,27 +8186,27 @@ msgid "Document Types and Permissions"
msgstr "Dokument Typer och Behörigheter"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "Dokument Upplåst"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr "Dokument kan inte användas som filtervärde"
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "Följ Dokument är inte aktiverad för denna användare."
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "Dokumentet är annullerad"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "Dokument är godkänd"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "Dokumentet är i utkast tillstånd"
@@ -8137,11 +8218,11 @@ msgstr "Dokument kan endast redigeras av användare med roll"
msgid "Document not Relinked"
msgstr "Dokumentet är inte länkad om"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "Dokument namn ändrad från {0} till {1}"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "Dokument namn ändring från {0} till {1} är i kö"
@@ -8157,10 +8238,6 @@ msgstr "Dokument {0} Redan Återställd"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "Dokument {0} är i tillstånd {1} efter {2}"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "Dokument {0} {1} finns inte"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8298,7 +8375,7 @@ msgstr "Nedladdning Länk"
msgid "Download PDF"
msgstr "Ladda ner PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "Ladda ner Rapport"
@@ -8382,7 +8459,7 @@ msgid "Due Date Based On"
msgstr "Förfallo Datum Baserad På"
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "Kopiera"
@@ -8390,19 +8467,15 @@ msgstr "Kopiera"
msgid "Duplicate Entry"
msgstr "Kopiera Post"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "Kopiera Filter Namn"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Kopiera Namn"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "Kopiera Rad"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "Kopiera Aktuell Rad"
@@ -8410,6 +8483,18 @@ msgstr "Kopiera Aktuell Rad"
msgid "Duplicate field"
msgstr "Kopiera fält"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr "Duplicera rad"
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr "Duplicera rader"
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr "Duplicera {0} rader"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8497,9 +8582,10 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8510,7 +8596,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Redigera"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Redigera"
@@ -8520,7 +8606,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Redigera"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Redigera"
@@ -8541,15 +8627,15 @@ msgstr "Redigera Diagram"
msgid "Edit Custom Block"
msgstr "Redigera Anpassad Avsnitt"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "Redigera Anpassad HTML"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "Redigera DocType"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "Redigera DocType"
@@ -8563,7 +8649,7 @@ msgstr "Redigera Befintlig"
msgid "Edit Filters"
msgstr "Redigera Filter"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "Redigera Filter"
@@ -8576,7 +8662,7 @@ msgstr "Redigera Sidfot"
msgid "Edit Format"
msgstr "Redigera Format"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr "Redigera i Full Formulär"
@@ -8634,7 +8720,7 @@ msgstr "Redigera Snabb Listor"
msgid "Edit Shortcut"
msgstr "Redigera Genväg"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr "Redigera Sidofält"
@@ -8657,11 +8743,11 @@ msgstr "Redigering Läge"
msgid "Edit the {0} Doctype"
msgstr "Redigera {0} Doctype"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "Redigera att Lägga till Innehåll"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "Redigera din respons"
@@ -8717,6 +8803,7 @@ msgstr "Element Väljare"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8732,12 +8819,14 @@ msgstr "Element Väljare"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8772,7 +8861,7 @@ msgstr "E-post Konto Inaktiverad"
msgid "Email Account Name"
msgstr "E-post Konto Namn"
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "E-post Konto lagt till flera gånger"
@@ -8970,7 +9059,7 @@ msgstr "E-post är flyttad till papperskorg"
msgid "Email is mandatory to create User Email"
msgstr "E-post erfordras för att skapa Användare E-post"
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "E-post inte skickad till {0} (avregistrerad / inaktiverad)"
@@ -9009,7 +9098,7 @@ msgstr "E-post skickas med nästa möjliga arbetsflöde åtgärd"
msgid "Embed code copied"
msgstr "Bädda in kopierad kod"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr "Tomt alias är inte tillåtet"
@@ -9017,7 +9106,7 @@ msgstr "Tomt alias är inte tillåtet"
msgid "Empty column"
msgstr "Tom kolumn"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr "Tomma strängargument är inte tillåtna"
@@ -9337,11 +9426,11 @@ msgstr "Se till att Användare och Grupp Sökvägar är korrekta."
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Ange Klient ID och Klient Hemlighet i Google Inställningar."
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "Ange kod som visad i OTP App."
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr "Ange e-post mottagare i fälten Till, CC eller BCC"
@@ -9368,6 +9457,10 @@ msgstr "Ange standard fält (nycklar) och värden. Om du lägger till flera vär
msgid "Enter folder name"
msgstr "Ange Mapp Namn"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr "Ange en lista med alternativ, varje på en ny rad."
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9398,7 +9491,7 @@ msgstr "Entitet Namn"
msgid "Entity Type"
msgstr "Entitet Typ"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Lika"
@@ -9432,7 +9525,7 @@ msgstr "Lika"
msgid "Error"
msgstr "Fel"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Fel"
@@ -9447,12 +9540,12 @@ msgstr "Fel Logg"
msgid "Error Logs"
msgstr "Fel Logg"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr "Felmeddelande"
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
msgstr "Fel vid anslutning till QZ Aktivitet Fält...
Du måste ha QZ Aktivitet Fält App installerad och igång för att kunna använda Direkt Utskrift funktion.
Klicka här för att ladda ner och installera QZ App .
Klicka här för att lära dig mer om Direkt Utskrift."
@@ -9490,15 +9583,15 @@ 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
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr "Fel i {0}.get_list: {1}"
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr "Fel vid parsning av nästlade filter: {0}. {1}"
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr "Fel vid validering av \"Ignorera användarbehörigheter\""
@@ -9514,15 +9607,15 @@ msgstr "Fel vid test av Avisering {0}. Fixa Mall."
msgid "Error {0}: {1}"
msgstr "Fel {0}: {1}"
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "Fel: Data saknas i tabell {0}"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "Fel: Värdet saknas för {0}: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Fel: {0} Rad #{1}: Värde saknas för: {2}"
@@ -9532,6 +9625,12 @@ msgstr "Fel: {0} Rad #{1}: Värde saknas för: {2}"
msgid "Errors"
msgstr "Fel "
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr "Bedöm som Uttryck"
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9550,6 +9649,11 @@ msgstr "Händelse Kategori"
msgid "Event Frequency"
msgstr "Händelse Intervall"
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr "Händelse Aviseringar"
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9575,11 +9679,11 @@ msgstr "Händelse Synkroniserad med Google Kalender."
msgid "Event Type"
msgstr "Händelse Typ"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "Händelser"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "Händelser i Dagens Kalender"
@@ -9601,6 +9705,7 @@ msgid "Exact Copies"
msgstr "Exakta kopior"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr "Exempel"
@@ -9671,7 +9776,7 @@ msgstr "Exekverar Kod"
msgid "Executing..."
msgstr "Kör..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "Exekvering Tid: {0} sek"
@@ -9692,21 +9797,21 @@ msgstr "Befintlig Roll"
msgid "Expand"
msgstr "Expandera"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandera"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandera Alla"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "Experimentell"
@@ -9758,20 +9863,21 @@ msgstr "Förfallo Tid för QR Kod Bild Sida"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Export"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Export"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "Exportera 1 Post"
@@ -9810,11 +9916,11 @@ msgstr "Exportera Rapport: {0}"
msgid "Export Type"
msgstr "Export Typ"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "Exportera alla matchande rader?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "Exportera alla {0} rader? "
@@ -9830,6 +9936,10 @@ msgstr "Exportera i Bakgrunden"
msgid "Export not allowed. You need {0} role to export."
msgstr "Export ej tillåtet.{0} roll erfordras för att exportera."
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr "Exportera endast anpassningar som är tilldelade vald modul.
Obs: Du måste anhe fält Modul (för export) på poster för anpassade fält och Egenskap Sättare innan tillämpning av detta filter. Varning: Anpassningar från andra moduler kommer att exkluderas.
"
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9842,7 +9952,7 @@ msgstr "Exportera data utan några rubrikanteckningar och kolumnbeskrivningar"
msgid "Export without main header"
msgstr "Exportera utan huvudrubrik"
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "Exportera {0} poster"
@@ -9882,7 +9992,7 @@ msgstr "Extern"
#. Label of the external_link (Data) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "Extern Länk"
@@ -9931,12 +10041,17 @@ msgstr "Misslyckade Jobb Antal "
msgid "Failed Jobs"
msgstr "Misslyckade Jobb"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr "Misslyckade Inloggning Försök"
+
#. 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 "Misslyckade Inloggningar (senaste 30 dagarna)"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "Misslyckade Transaktioner"
@@ -9999,7 +10114,7 @@ msgstr "Misslyckades att skapa förhandsvisning av serie"
msgid "Failed to get method for command {0} with {1}"
msgstr "Misslyckades att hämta sätt för kommando {0} med {1}"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "Misslyckades att hämta sätt {0} med {1}"
@@ -10011,7 +10126,7 @@ msgstr "Misslyckades med att hämta webbplats information"
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "Misslyckadesc att importera virtuell doctype {}, finns kontroll fil?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "Misslyckades att optimera bild: {0}"
@@ -10027,7 +10142,7 @@ msgstr "Misslyckades med att rendera ämne: {}"
msgid "Failed to request login to Frappe Cloud"
msgstr "Misslyckades med att begära inloggning till Frappe Cloud"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "Misslyckades att skicka e-post med ämne:"
@@ -10069,7 +10184,7 @@ msgstr "FavIkon"
msgid "Fax"
msgstr "Fax"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "Återkoppling "
@@ -10129,8 +10244,8 @@ msgstr "Hämtar fält från {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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10140,7 +10255,7 @@ msgstr "Fält"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "Fält \"\"sökväg\"\" erfordras för Webb Vyer"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "Fält \"benämning\" erfordras om \"Webbplats Sökfält\" är angiven."
@@ -10148,7 +10263,7 @@ msgstr "Fält \"benämning\" erfordras om \"Webbplats Sökfält\" är angiven."
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "Fält 'värde' erfordras. Ange värde som ska uppdateras"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr "Fält {0} hittades inte i {1}"
@@ -10157,7 +10272,7 @@ msgstr "Fält {0} hittades inte i {1}"
msgid "Field Description"
msgstr "Fält Beskrivning"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Fält Saknas"
@@ -10205,7 +10320,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:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "Fält {0} finns inte på {1}"
@@ -10213,11 +10328,11 @@ msgstr "Fält {0} finns inte på {1}"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Fält {0} hänvisar till icke-existerande doctype {1}."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "Fält {0} måste vara virtuellt fält för att stödja virtuell doctype."
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "Fält {0} hittades inte."
@@ -10239,7 +10354,7 @@ msgstr "Fält {0} på dokument {1} är varken mobil nummer fält, Kund eller Anv
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Fält Namn"
@@ -10248,7 +10363,7 @@ msgstr "Fält Namn"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "Fält Namn '{0}' är i konflikt med {1} av namn {2} i {3}"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Fält Namn {0} måste finnas för att aktivera automatisk namngivning"
@@ -10256,7 +10371,7 @@ msgstr "Fält Namn {0} måste finnas för att aktivera automatisk namngivning"
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Fält Namn är begränsad till 64 tecken ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Fält Namn inte angiven i Anpassad Fält"
@@ -10272,7 +10387,7 @@ msgstr "Fält Namn {0} visas flera gånger"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Fält Namn {0} kan inte ha special tecken som {1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "Fält Namn {0} i konflikt mot meta objekt"
@@ -10320,7 +10435,7 @@ msgstr "Fält `file_name` eller `file_url` måste anges för fil"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Filter måste vara lista eller tupel när as_list är aktiverad"
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
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"
@@ -10344,7 +10459,7 @@ msgstr "Fält separerade med komma tecken (,) kommer att ingå i 'Sök efter' li
msgid "Fieldtype"
msgstr "Fält Typ"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "Fält Typ kan inte ändras från {0} till {1}"
@@ -10420,12 +10535,12 @@ msgstr "Fil Namn får inte innehålla {0}"
msgid "File not attached"
msgstr "Fil inte bifogad"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Fil storlek överskred högsta tillåtna storlek på {0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Fil för stor"
@@ -10452,12 +10567,17 @@ msgstr "Filer"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filter"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr "Filter Område"
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10476,7 +10596,7 @@ msgstr "Filter Meta"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Filter Namn"
@@ -10485,11 +10605,11 @@ msgstr "Filter Namn"
msgid "Filter Values"
msgstr "Filtervärden"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "Filtervillkor saknas efter operator: {0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr "Filter fält har ogiltig returnotation: {0}"
@@ -10508,10 +10628,14 @@ msgid "Filtered Records"
msgstr "Filtrerade Poster"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "Filtrerad efter \"{0}\""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr "Filtrerad efter: {0}."
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10535,7 +10659,7 @@ msgstr "Filtrerad efter \"{0}\""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "Filter"
@@ -10566,10 +10690,6 @@ msgstr "Filter JSON"
msgid "Filters Section"
msgstr "Filter Sektion"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Filter tillämpade för {0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "Filter Sparade"
@@ -10587,14 +10707,14 @@ msgstr "Filter {0}"
msgid "Filters:"
msgstr "Filter:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "Hitta '{0}' i..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "Hitta {0} i {1}"
@@ -10682,11 +10802,11 @@ msgstr "Flyttal Precision"
msgid "Fold"
msgstr "Vika"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "Vikning kan inte vara i slutet av formulär"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "Vikning måste komma före Sektion Brytning"
@@ -10715,12 +10835,12 @@ msgstr "Mapp {0} är inte tom"
msgid "Folio"
msgstr "Folio"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Följ"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Följd av"
@@ -10728,7 +10848,7 @@ msgstr "Följd av"
msgid "Following Report Filters have missing values:"
msgstr "Följande Rapport Filter saknar värden:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "Följer dokument {0}"
@@ -10736,7 +10856,7 @@ msgstr "Följer dokument {0}"
msgid "Following fields are missing:"
msgstr "Följande fält saknas:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Följande fält har ogiltiga värden:"
@@ -10744,7 +10864,7 @@ msgstr "Följande fält har ogiltiga värden:"
msgid "Following fields have missing values"
msgstr "Följande fält saknar värde"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Följande fält saknar värde:"
@@ -10813,7 +10933,7 @@ msgstr "Sidfot Detaljer"
msgid "Footer HTML"
msgstr "Sidfot HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "Sidfot HTML angiven från bilaga {0}"
@@ -10850,7 +10970,7 @@ msgstr "Sidfot Mall"
msgid "Footer Template Values"
msgstr "Sidfot Mall Värde"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "Sidfot kanske inte visas eftersom alternativ {0} är inaktiverad"
@@ -10883,15 +11003,6 @@ msgstr "För Dokument Typ"
msgid "For Example: {} Open"
msgstr "Till exempel: {} Öppna"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "För Länkar, ange Dokument Typ som intervall. För Välj, ange lista med Alternativ, var och en på ny rad."
-
#. 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'
@@ -10915,20 +11026,16 @@ msgstr "För Värde"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "För dynamiskt ämne, använd Jinja taggar som denna: {{ doc.name }} Levererad"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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)."
-#: 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 "Om du till exempel annullerar och ändrar INV004 skapas ny dokument INV004-1. Detta hjälper med att hålla reda på varje ändring."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "Till exempel:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Till exempel: Om du vill inkludera Dokument ID, använd {0}"
@@ -10956,7 +11063,7 @@ msgstr "För flera adresser anger du adress på annan rad. t.ex. test@test.com
msgid "For updating, you can update only selective columns."
msgstr "För uppdatering, uppdateras endast selektiva kolumner."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "För {0} på nivå {1} i {2} på rad {3}"
@@ -11006,7 +11113,8 @@ msgstr "Glömt Lösenord?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Formulär"
@@ -11185,7 +11293,7 @@ msgstr "Fredag"
msgid "From"
msgstr "Från"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "Från"
@@ -11206,7 +11314,7 @@ msgstr "Från Datum"
msgid "From Date Field"
msgstr "Från Datum"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Från DocType"
@@ -11247,7 +11355,7 @@ msgstr "Full"
msgid "Full Name"
msgstr "Fullständig Namn"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Hel Sida"
@@ -11260,7 +11368,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funktion"
@@ -11269,11 +11377,11 @@ msgstr "Funktion"
msgid "Function Based On"
msgstr "Funktion Baserad på"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} är inte vitlistad."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "Funktion {0} erfordrar argument men inga angavs"
@@ -11338,11 +11446,11 @@ msgstr "Allmän"
msgid "Generate Keys"
msgstr "Skapa Nycklar"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Skapa Ny Rapport"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Skapa Slumpmässig Lösenord"
@@ -11352,8 +11460,8 @@ msgstr "Skapa Slumpmässig Lösenord"
msgid "Generate Separate Documents For Each Assignee"
msgstr "Skapa Separata Dokument för varje Tilldelad"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "Skapa Spårning URL"
@@ -11464,7 +11572,7 @@ msgstr "Globala Genvägar"
msgid "Global Unsubscribe"
msgstr "Globalt Avregistrering"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Gå"
@@ -11524,7 +11632,7 @@ msgstr "Gå till {0} Lista"
msgid "Go to {0} Page"
msgstr "Gå till {0} Sida"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Mål"
@@ -11750,7 +11858,7 @@ 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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "Gruppera Efter måste vara sträng"
@@ -11830,6 +11938,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "HTML Redigerare"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr "HTML Meddelande"
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11918,7 +12030,7 @@ msgstr "Huvud Rubrik"
msgid "Header HTML"
msgstr "Sidhuvud HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "HTML från bilaga {0}"
@@ -11954,7 +12066,7 @@ msgstr "Skript för Brevhuvud/Brevfot kan användas för att lägga till dynamis
msgid "Headers"
msgstr "Huvud Rubriker"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "Headers måste vara dictionary"
@@ -11991,7 +12103,7 @@ msgstr "Hej,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12046,7 +12158,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "Här är din spårning URL"
@@ -12082,9 +12194,9 @@ msgstr "Dold "
msgid "Hidden Fields"
msgstr "Dolda fält"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "Dolda kolumner inkluderar: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+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
@@ -12249,7 +12361,7 @@ msgstr "Tips: Inkludera symboler, siffror och stora bokstäver i lösenord"
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12332,18 +12444,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
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.
"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12394,7 +12506,6 @@ msgid "IP Address"
msgstr "IP Adress"
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12415,11 +12526,16 @@ msgstr "IP Adress"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Ikon"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr "Ikon Bild"
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12430,6 +12546,10 @@ msgstr "Ikon Stil"
msgid "Icon Type"
msgstr "Ikon Typ"
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+msgstr "Ikon är inte korrekt konfigurerad. Kontrollera arbetsytans sidofält"
+
#. 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"
@@ -12461,13 +12581,13 @@ msgstr "Om Använd Strikt Användar Behörighet är vald och Användar Behörigh
msgid "If Checked workflow status will not override status in list view"
msgstr "Om vald kommer arbetsflöde tillstånd inte åsidosätta tillstånd i list vy"
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Ägare"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "Om Roll inte har tillgång på Nivå 0, är högre nivåer meningslösa."
@@ -12594,12 +12714,20 @@ msgstr "Om inte angiven, kommer valuta precision att bero på nummer format"
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr "Om aktiverad kan endast användare med dessa roller komma åt detta diagram. Om inte angiven kommer DocType eller Report behörigheter att användas."
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr "Om användare aktiverar mask egenskap för telefonnummer fält visas värdet i ett maskerat format (t.ex. 811XXXXXXX)."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr "Om användare har åtkomst till Personal och Rapport och är aktiverad kan de visa Personal baserade rapporter."
+
#. 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 "Om användare har någon roll vald, blir Användare \"Systemanvändare\". \"Systemanvändare\" har tillgång till Skrivbord"
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "Om dessa instruktioner inte var till hjälp, lägg till dina förslag om GitHub problem."
@@ -12699,7 +12827,7 @@ msgstr "Ignorera bifogade filer över denna storlek"
msgid "Ignored Apps"
msgstr "Ignorerade Appar"
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "Ej Tillåten Dokument Status för {0}"
@@ -12765,11 +12893,11 @@ msgstr "Bild Vy"
msgid "Image Width"
msgstr "Bild Bredd"
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "Bild Fält måste vara giltig Fält Namn"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "Bild Fält måste vara av typ Bifoga Bild"
@@ -12803,7 +12931,7 @@ msgstr "Efterlikna som {0}"
msgid "Impersonated by {0}"
msgstr "Efterliknat av '{0}'"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "Efterliknar {0}"
@@ -12821,11 +12949,12 @@ msgstr "Implicit"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "Importera"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "Importera"
@@ -13048,15 +13177,15 @@ msgid "Include Web View Link in Email"
msgstr "Inkludera Länk till Webbvy i E-post"
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "Inkludera Filter"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr "Inkludera dolda kolumner"
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "Inkludera Fördjupning"
@@ -13123,11 +13252,11 @@ msgstr "Felaktig Användare eller Lösenord"
msgid "Incorrect Verification code"
msgstr "Felaktig Verifiering Kod"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "Felaktigt värde i rad {0}:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "Felaktigt värde:"
@@ -13179,7 +13308,7 @@ msgstr "Indikator"
msgid "Indicator Color"
msgstr "Indikator Färg"
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "Indikator Färg"
@@ -13226,15 +13355,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "Infoga Efter"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "Infoga Efter kan inte anges som {0}"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "Infoga Efter fält '{0}' som anges i Anpassad Fält '{1}', med Etikett '{2}', existerar inte"
@@ -13264,8 +13393,8 @@ msgstr "Infoga Stil"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "Installera {0} från Marknadsplats"
@@ -13291,15 +13420,15 @@ msgstr "Installerade Appar"
msgid "Instructions"
msgstr "Instruktioner"
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "Instruktioner skickade per E-post"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
@@ -13367,7 +13496,7 @@ msgstr "Intresse"
msgid "Intermediate"
msgstr "Mellan"
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "Intern Server Fel"
@@ -13376,6 +13505,11 @@ msgstr "Intern Server Fel"
msgid "Internal record of document shares"
msgstr "Internt register över dokument delningar"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+msgstr "Intervall"
+
#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Intro Video URL"
@@ -13415,13 +13549,13 @@ msgid "Invalid"
msgstr "Ogiltig"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "Ogiltig 'depends_on' uttryck"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "Ogiltig uttryck 'beroende på' i filter {0}"
@@ -13461,7 +13595,7 @@ msgstr "Ogiltigt Datum"
msgid "Invalid DocType"
msgstr "Ogiltig DocType"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "Ogiltig DocType: {0}"
@@ -13469,7 +13603,8 @@ msgstr "Ogiltig DocType: {0}"
msgid "Invalid Doctype"
msgstr "Ogiltig Doctype"
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "Ogiltigt Fält Namn"
@@ -13477,8 +13612,8 @@ msgstr "Ogiltigt Fält Namn"
msgid "Invalid File URL"
msgstr "Ogiltig Fil URL"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr "Ogiltigt Filter"
@@ -13502,7 +13637,7 @@ msgstr "Ogiltig Länk"
msgid "Invalid Login Token"
msgstr "Ogiltig Inloggning Token"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "Ogiltig Inloggning. Försök igen."
@@ -13510,7 +13645,7 @@ msgstr "Ogiltig Inloggning. Försök igen."
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Ogiltig E-post Server. Rätta till och försök igen."
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "Ogiltig Namngivning Serie: {}"
@@ -13521,8 +13656,8 @@ msgstr "Ogiltig Namngivning Serie: {}"
msgid "Invalid Operation"
msgstr "Ogiltig Åtgärd"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "Ogiltig Alternativ"
@@ -13534,7 +13669,7 @@ msgstr "Ogiltig Utgående E-Post Server eller Port: {0}"
msgid "Invalid Output Format"
msgstr "Ogiltig Utdata Format"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "Ogiltig Åsidosättning"
@@ -13547,11 +13682,11 @@ msgstr "Ogiltiga Parametrar"
msgid "Invalid Password"
msgstr "Ogiltigt Lösenord"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "Ogiltig Telefon Nummer"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Ogiltig Begäran"
@@ -13560,7 +13695,7 @@ msgstr "Ogiltig Begäran"
msgid "Invalid Search Field {0}"
msgstr "Ogiltig Sök Fält {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "Ogiltigt Tabell Fältnamn"
@@ -13579,7 +13714,7 @@ msgstr "Ogiltig URL"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Ogiltig Användar Namn eller Support Lösenord. Rätta till och försök igen."
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "Ogiltiga Värden"
@@ -13591,7 +13726,7 @@ msgstr "Ogiltig Webbhook Hemlighet"
msgid "Invalid aggregate function"
msgstr "Ogiltig aggregatfunktion"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare."
@@ -13599,19 +13734,19 @@ msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare."
msgid "Invalid app"
msgstr "Ogiltig app"
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
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:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr "Ogiltig argument typ: {0}. Endast strängar, siffror, dikter och None är tillåtna."
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
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:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr "Ogiltiga tecken i tabellnamn: {0}"
@@ -13619,18 +13754,22 @@ msgstr "Ogiltiga tecken i tabellnamn: {0}"
msgid "Invalid column"
msgstr "Ogiltig Kolumn"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr "Ogiltig villkorstyp i nästlade filter: {0}"
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
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:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "Ogiltig dokument status"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr "Ogiltigt uttryck i Arbetsflöde Uppdatering Värde: {0}"
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "Ogiltig uttryck angiven i filter {0}"
@@ -13639,11 +13778,11 @@ msgstr "Ogiltig uttryck angiven i filter {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Ogiltig uttryck angiven i sortering {0} ({1})"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
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:1184
+#: frappe/database/query.py:1227
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\"."
@@ -13651,11 +13790,11 @@ msgstr "Ogiltig fältformat i {0}: {1}. Använd \"field\", \"link_field.field\"
msgid "Invalid field name {0}"
msgstr "Ogiltig Fält Namn {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr "Ogiltig fälttyp: {0}"
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Ogiltig Fält Namn '{0}' i automatisk namn"
@@ -13663,11 +13802,11 @@ msgstr "Ogiltig Fält Namn '{0}' i automatisk namn"
msgid "Invalid file path: {0}"
msgstr "Ogiltig Sökväg: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "Ogiltig filtervillkor: {0}. Förväntade lista eller tupel."
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
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'."
@@ -13675,7 +13814,7 @@ msgstr "Ogiltig filter fältformat: {0}. Använd 'fieldname' eller 'link_fieldna
msgid "Invalid filter: {0}"
msgstr "Ogiltig Filter: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
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."
@@ -13692,19 +13831,19 @@ msgstr "Ogiltig JSON har lagts till i anpassade alternativ: {0}"
msgid "Invalid key"
msgstr "Ogiltig nyckel"
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "Ogiltig namn typ (heltal) för varchar namn kolumn"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "Ogiltig namngivning serie {}: punkt (.) saknas"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr "Ogiltig namngivningsserie {}: punkt (.) saknas före numeriska platshållare. Använd format som ABCD.#####.."
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr "Ogiltigt nästlat uttryck: dictionary måste representera funktion eller operator"
@@ -13728,11 +13867,11 @@ msgstr "Ogiltig begäran"
msgid "Invalid role"
msgstr "Ogiltig roll"
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr "Ogiltig enkelt filterformat: {0}"
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
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."
@@ -13749,24 +13888,24 @@ msgstr "Ogiltig token tillstånd! Kontrollera om token är skapad av OAuth anvä
msgid "Invalid username or password"
msgstr "Ogiltig användarnamn eller lösenord"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "Ogiltiga värden specifierade för UUID: {}"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "Ogiltiga värden för fält:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "Ogiltig wkhtmltopdf version"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "Ogiltig {0} villkor"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr "Ogiltigt {0} dictionary format"
@@ -13894,7 +14033,7 @@ msgstr "Är Dynamisk URL?"
msgid "Is Folder"
msgstr "Är Mapp"
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Är Global"
@@ -13965,7 +14104,7 @@ msgstr "Är Allmän"
msgid "Is Published Field"
msgstr "Är Publicerad Fält"
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "Är Publicerad Fält måste vara giltig Fält Namn"
@@ -14132,12 +14271,12 @@ msgstr "Okänd Person"
#. 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 Format: frappe.query_reports['REPORTNAME'] = {}"
+msgstr "JavaScript-format: frappe.query_reports['RAPPORTNAMN'] = {}"
#. Label of the javascript (Code) field in DocType 'Report'
#. Label of the javascript_section (Section Break) field in DocType 'Custom
@@ -14210,8 +14349,8 @@ msgstr "Jobb stoppades"
msgid "Join video conference with {0}"
msgstr "Anslut till Videokonferens med {0}"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "Hoppa till Fält"
@@ -14332,7 +14471,7 @@ msgstr "L"
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Auth"
-msgstr "LDAP Auth"
+msgstr "LDAP-auktorisering"
#. Label of the ldap_custom_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
@@ -14534,7 +14673,7 @@ msgstr "Etikett Hjälp"
msgid "Label and Type"
msgstr "Etikett och Typ"
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "Etikett erfordras"
@@ -14557,7 +14696,7 @@ msgstr "Landskap"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Språk"
@@ -14603,6 +14742,14 @@ msgstr "Senaste 90 Dagar"
msgid "Last Active"
msgstr "Senast Aktiv"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr "Senast redigerad av dig"
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+msgstr "Senast redigerad av {0}"
+
#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Last Execution"
@@ -14727,6 +14874,11 @@ msgstr "Förra Året"
msgid "Last synced {0}"
msgstr "Senast Synkroniserad {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "Upplägg"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "Återställ Layout"
@@ -14754,9 +14906,15 @@ msgstr "Lämna denna kommunikation"
msgid "Ledger"
msgstr "Register"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14850,7 +15008,7 @@ msgstr "Letter"
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14879,7 +15037,7 @@ msgstr "Brevhuvud Namn"
msgid "Letter Head Scripts"
msgstr "Brevhuvud Skript"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "Brevhuvud kan inte vara både Inaktiverad och Standard"
@@ -14901,7 +15059,7 @@ msgstr "Brevhuvud i HTML"
msgid "Level"
msgstr "Nivå"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "Nivå 0 är för behörigheter på dokument nivå, högre nivåer för behörigheter på fält nivå."
@@ -14942,7 +15100,7 @@ msgstr "Ljus Tema"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Gillar"
@@ -14966,7 +15124,7 @@ msgstr "Gillar"
msgid "Limit"
msgstr "Begränsa"
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr "Gränsvärde får inte vara negativt heltal"
@@ -15092,7 +15250,7 @@ msgstr "Länk Benämning"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -15110,7 +15268,7 @@ msgstr "Länk Till i Rad"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr "Länk Typ"
@@ -15153,6 +15311,7 @@ msgstr "LinkedIn"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15174,8 +15333,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr "Lista"
@@ -15205,7 +15364,7 @@ msgstr "Lista Filter"
msgid "List Settings"
msgstr "Lista Inställningar"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Lista Inställningar"
@@ -15219,7 +15378,7 @@ msgstr "List Vy"
msgid "List View Settings"
msgstr "Lista Vy Inställningar"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "Lista DocType"
@@ -15246,7 +15405,7 @@ msgstr "Lista av exekverade patchar"
msgid "List setting message"
msgstr "Listinställning Meddelande"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "Listor"
@@ -15255,7 +15414,7 @@ msgstr "Listor"
msgid "Load Balancing"
msgstr "Last Balansering"
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15273,10 +15432,10 @@ msgstr "Läs in mer"
#: 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "Laddar"
@@ -15293,8 +15452,8 @@ msgid "Loading versions..."
msgstr "Laddar versioner..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15304,7 +15463,8 @@ msgid "Loading..."
msgstr "Laddar..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr "Plats"
@@ -15377,6 +15537,11 @@ msgstr "Utloggad"
msgid "Login"
msgstr "Logga In"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr "Inloggning Aktivitet"
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15452,7 +15617,7 @@ msgstr "Logga in för att starta ny diskussion"
msgid "Login to {0}"
msgstr "{0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "Inloggning token erfordras"
@@ -15519,8 +15684,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr "Logga ut från alla enheter efter byte av Lösenord"
#. 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
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Loggar"
@@ -15551,7 +15715,7 @@ msgstr "Det verkar som att du inte ändrat värde"
msgid "Looks like you haven’t added any third party apps."
msgstr "Det verkar som att du inte har lagt till några tredjepart appar."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "Det verkar som att du inte har mottagit några aviseringar."
@@ -15701,7 +15865,7 @@ msgstr "Erfordrade fält som saknas i tabell {0}, Rad {1}"
msgid "Mandatory fields required in {0}"
msgstr "Erfodrade Fält saknas i {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "Erfodrade Fält saknas:"
@@ -15763,7 +15927,7 @@ msgstr "Marginal Överst"
msgid "MariaDB Variables"
msgstr "MariaDB Variabler"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "Markera alla som lästa"
@@ -15815,9 +15979,12 @@ msgstr "Marknadsföring Ansvarig"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "Mask"
@@ -15879,7 +16046,7 @@ msgstr "Maximal Antal Automatiska E-post Rapporter per Användare"
msgid "Max signups allowed per hour"
msgstr "Max antal tillåtna registreringar per timme"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "Maximum bredd för typ Valuta är 100px på rad {0}"
@@ -15900,20 +16067,27 @@ msgstr "Maxim bilaga gräns på {0} är uppnåd."
msgid "Maximum {0} rows allowed"
msgstr "Maximum {0} rader tillåtna"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr "Kanske"
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Jag"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "Innebörd av Godkänn, Annullera, Ändra"
+msgid "Meaning of Different Permission Types"
+msgstr "Betydelsen av olika typer av behörigheter"
#. 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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15957,12 +16131,12 @@ msgstr "Hänvisa"
msgid "Mentions"
msgstr "Hänvisningar"
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "Meny"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Slå samman med befintlig"
@@ -15996,13 +16170,13 @@ msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underord
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Meddelande"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Meddelande"
@@ -16033,7 +16207,7 @@ msgstr "Meddelande Skickad"
msgid "Message Type"
msgstr "Meddelande Typ"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Meddelande Urlippt"
@@ -16130,7 +16304,7 @@ msgstr "Metadata"
msgid "Method"
msgstr "Sätt"
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "Metod ej Tillåten"
@@ -16219,7 +16393,7 @@ msgstr "Fröken"
msgid "Missing DocType"
msgstr "Saknar DocType"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "Fält Värde saknas"
@@ -16239,7 +16413,7 @@ msgstr "Tillstånd Saknas"
msgid "Missing Value"
msgstr "Värde Saknas"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16304,7 +16478,7 @@ msgstr "Modal Utlösare"
#: 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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16351,9 +16525,8 @@ msgstr "Modul Introduktion"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "Modul Profil"
@@ -16370,7 +16543,7 @@ msgstr "Modul Introduktion förlopp återställning"
msgid "Module to Export"
msgstr "Modul att Exportera"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "Modul {} hittades inte"
@@ -16485,7 +16658,7 @@ msgstr "Fler Artiklar om {0}"
msgid "More content for the bottom of the page."
msgstr "Mer innehåll för sidfot."
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "Mest Använd"
@@ -16500,7 +16673,7 @@ msgstr "Troligtvis är lösenord för lång."
msgid "Move"
msgstr "Flytta"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Flytta till"
@@ -16512,19 +16685,19 @@ msgstr "Flytta till Papperskorg"
msgid "Move current and all subsequent sections to a new tab"
msgstr "Flytta aktuellt och alla efterföljande sektioner till ny flik"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "Flytta Markören till Rad Ovan"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "Flytta Markören till Rad Nedan"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "Flytta Markören till Nästa Kolumn"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "Flytta Markören till Föregående Kolumn"
@@ -16536,7 +16709,7 @@ msgstr "Flytta sektioner till ny flik"
msgid "Move the current field and the following fields to a new column"
msgstr "Flytta aktuell fält och följande fält till ny kolumn"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Flytta till Rad Nummer"
@@ -16654,7 +16827,7 @@ msgstr "Namn(Doctyope Namn)"
msgid "Name already taken, please set a new name"
msgstr "Namn redan tagen, ange ny namn"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "Namn kan inte innehålla special tecken som {0}"
@@ -16666,7 +16839,7 @@ msgstr "Namn på DocType du vill att fält ska kopplas till. t.ex. Kund"
msgid "Name of the new Print Format"
msgstr "Namn på ny Utskrift Format"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "Namn på {0} kan inte vara {1}"
@@ -16707,7 +16880,7 @@ msgstr "Namngivining Regel"
msgid "Naming Series"
msgstr "Namngivning Serie"
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Namngivning Serie erfordras"
@@ -16731,11 +16904,6 @@ msgstr "Toppfält Post"
msgid "Navbar Settings"
msgstr "Toppfält Inställningar"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-msgstr "Navigeringsfält Stil"
-
#. Label of the navbar_template (Link) field in DocType 'Website Settings'
#. Label of the navbar_template_section (Section Break) field in DocType
#. 'Website Settings'
@@ -16749,39 +16917,44 @@ msgstr "Toppfält Mall"
msgid "Navbar Template Values"
msgstr "Toppfält Mall Värden"
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Navigera lista ner"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Navigera lista upp"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "Navigera till huvud innehåll"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr "Navigering Knappar"
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr "Navigation Inställningar"
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "Behövs hjälp?"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
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:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Negativ Värde"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr "Nästlade filter måste anges som lista eller tupel."
@@ -16803,6 +16976,7 @@ msgstr "Aldrig"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16819,7 +16993,7 @@ msgstr "Ny Aktivitet"
#: 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "Ny Adress"
@@ -16835,8 +17009,8 @@ msgstr "Ny Kontakt"
msgid "New Custom Block"
msgstr "Ny Anpassad Avsnitt"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "Ny Anpassad Utskrift Mall"
@@ -16885,7 +17059,7 @@ msgstr "Ny Meddelande från Webbplats Kontakt Sida"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Ny Namn"
@@ -16906,8 +17080,8 @@ msgstr "Ny Introduktion"
msgid "New Password"
msgstr "Ny Lösenord"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Ny Utskrift Format Namn"
@@ -16934,8 +17108,8 @@ msgstr "Ny Genväg"
msgid "New Users (Last 30 days)"
msgstr "Nya Användare (Senaste 30 dagar)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "Ny Värde"
@@ -16943,7 +17117,7 @@ msgstr "Ny Värde"
msgid "New Workflow Name"
msgstr "Ny Arbetsflöde Namn"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "Ny Arbetsyta"
@@ -16988,32 +17162,32 @@ msgstr "Om vald kommer nya användare att registreras manuellt av Systemansvarig
msgid "New value to be set"
msgstr "Ny värde att ange"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Ny {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Ny {0} skapad"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
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:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "Ny {0} {1} skapad"
@@ -17025,7 +17199,7 @@ msgstr "Ny {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Nya {} versioner för följande appar finns tillgängliga"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "Nyskapad användare {0} har inga roller aktiverade."
@@ -17046,7 +17220,7 @@ msgstr "Nyhetsbrev Ansvarig"
msgid "Next"
msgstr "Nästa"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "Nästa "
@@ -17073,12 +17247,16 @@ msgstr "Nästa 7 Dagar"
msgid "Next Action Email Template"
msgstr "Nästa Åtgärd E-post Mall"
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+msgstr "Nästa Åtgärder"
+
#. 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 "Nästa Åtgärd HTML"
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr "Nästa Dokument"
@@ -17145,20 +17323,24 @@ msgstr "Nästa på Klick"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nej"
@@ -17228,7 +17410,7 @@ msgstr "Inga Filter Angivna"
msgid "No Google Calendar Event to sync."
msgstr "Ingen Google Kalender Händelse att synkronisera."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "Inga Bilder"
@@ -17247,23 +17429,23 @@ msgstr "Ingen LDAP Användare hittades för E-post: {0}"
msgid "No Label"
msgstr "Ingen Etikett"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: 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 "Inget Brevhuvud"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "Inget Namn angiven för {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "Inga nya Aviseringar"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "Inga Behörigheter Angivna"
@@ -17283,11 +17465,11 @@ msgstr "Inga tillåtna Diagram på denna Översikt Panel"
msgid "No Preview"
msgstr "Ingen Förhandsgranskning"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "Ingen Förhandsgranskning Tillgänglig."
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "Ingen Skrivare är Tillgänglig."
@@ -17295,7 +17477,7 @@ msgstr "Ingen Skrivare är Tillgänglig."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "Inga RQ Workers kopplade.Prova starta om bench."
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "Inga Träffar"
@@ -17303,7 +17485,7 @@ msgstr "Inga Träffar"
msgid "No Results found"
msgstr "Inga Träffar"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "Inga Roller Specificerade"
@@ -17319,7 +17501,7 @@ msgstr "Inga Förslag"
msgid "No Tags"
msgstr "Inga Taggar"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "Inga Kommande Händelser"
@@ -17339,7 +17521,7 @@ msgstr "Ingen automatisk optimering förslag tillgänglig."
msgid "No changes in document"
msgstr "Inga Ändringar"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "Inga ändringar gjorda"
@@ -17403,7 +17585,7 @@ msgstr "Inga fält hittades som kan användas som Anslagstavla kolumn. Använd A
msgid "No file attached"
msgstr "Ingen Fil bifogad"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "Inga filter hittades"
@@ -17451,11 +17633,11 @@ msgstr "Antal Rader (Max 500)"
msgid "No of Sent SMS"
msgstr "Antal Skickade SMS"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "Ingen Behörighet för {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Behörigheter saknas att '{0}' {1}"
@@ -17464,7 +17646,7 @@ msgstr "Behörigheter saknas att '{0}' {1}"
msgid "No permission to read {0}"
msgstr "Behörigheter saknas att läsa {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "Behörigheter saknas att {0} {1} {2}"
@@ -17480,7 +17662,7 @@ msgstr "Inga poster finns i {0}"
msgid "No records tagged."
msgstr "Inga taggade poster"
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "Inga poster kommer att exporteras"
@@ -17488,7 +17670,7 @@ msgstr "Inga poster kommer att exporteras"
msgid "No rows"
msgstr "Inga rader"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr "Inga rader valda"
@@ -17500,11 +17682,12 @@ msgstr "Inget Ämne"
msgid "No template found at path: {0}"
msgstr "Ingen mall finns på sökväg: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr "Ingen användare har {0} roll"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "Ingen värde att visa"
@@ -17516,7 +17699,7 @@ msgstr "Ingen {0}"
msgid "No {0} found"
msgstr "Ingen {0} Hittades"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "{0} hittades med vald filter. Rensa filter för att se alla {0}."
@@ -17525,7 +17708,7 @@ msgid "No {0} mail"
msgstr "Ingen {0} E-post"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Antal. "
@@ -17568,12 +17751,12 @@ msgstr "Normaliserade Kopior"
msgid "Normalized Query"
msgstr "Normaliserad Fråga"
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "Ej Tillåtet"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "Ej Tillåtet: Inaktiverad Användare"
@@ -17615,7 +17798,7 @@ msgstr "Ej Länkad till någon post"
msgid "Not Nullable"
msgstr "Ej Nollställbar"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17624,7 +17807,7 @@ msgstr "Ej Nollställbar"
msgid "Not Permitted"
msgstr "Inte Tillåtet"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "Ej Tillåtet att läsa {0}"
@@ -17633,8 +17816,8 @@ msgstr "Ej Tillåtet att läsa {0}"
msgid "Not Published"
msgstr "Ej Publicerad"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17654,7 +17837,7 @@ msgstr "Ej Visad"
msgid "Not Sent"
msgstr "Ej Skickad"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "Ej Angiven"
@@ -17668,15 +17851,15 @@ 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:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "Ej giltig Användare Bild."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "Ej giltig Arbetsflöde Åtgärd"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "Ej giltig Användare"
@@ -17684,7 +17867,7 @@ msgstr "Ej giltig Användare"
msgid "Not active"
msgstr "Inte Aktiv"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "Ej tillåtet för {0}: {1}"
@@ -17704,11 +17887,11 @@ msgstr "Ej Tillåtet att skriva ut annullerade dokument"
msgid "Not allowed to print draft documents"
msgstr "Ej Tillåtet att skriva ut utkast av dokument"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "Ej Tillåtet via kontroll behörighet koll"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Hittade inte"
@@ -17721,11 +17904,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Ej i Utvecklar Läge! Ändra site_config.json eller skapa 'Anpassad' DocType."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Ej Tillåtet"
@@ -17753,7 +17936,7 @@ msgstr "Avisering Visad Av"
msgid "Note:"
msgstr "Anteckning:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Obs: Om du ändrar sidnamn bryts tidigare URL till den här sidan."
@@ -17785,7 +17968,7 @@ msgstr "Obs: Begäran om borttagning av konto kommer att behandlas inom {0} timm
msgid "Notes:"
msgstr "Anteckningar:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "Inget nytt"
@@ -17797,8 +17980,8 @@ msgstr "Inget mer att göra om"
msgid "Nothing left to undo"
msgstr "Inget mer att ångra"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17809,11 +17992,13 @@ msgid "Nothing to update"
msgstr "Inget att uppdatera"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "Aviseringar"
@@ -17829,7 +18014,7 @@ msgstr "Avisering Mottagare"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "Avisering Inställningar"
@@ -17838,11 +18023,6 @@ msgstr "Avisering Inställningar"
msgid "Notification Subscribed Document"
msgstr "Avisering Prenumererad Dokument"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr "Avisering Sammanfattning"
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "Avisering skickad till"
@@ -17860,13 +18040,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "Meddelande: användare {0} har inget mobil nummer angivet"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Aviseringar"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "Aviseringar Inaktiverade"
@@ -18102,7 +18284,7 @@ msgstr "OTP Hemlighet är återställd. Registrering erfordras vid nästa inlogg
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr "OTP platshållare ska definieras som {{ otp }} "
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "OTP Konfiguration med OTP App slutfördes inte. Kontakta Administratör."
@@ -18142,7 +18324,7 @@ msgstr "Förskjutning X"
msgid "Offset Y"
msgstr "Förskjutning Y"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "Förskjutning får inte vara negativt heltal"
@@ -18150,7 +18332,7 @@ msgstr "Förskjutning får inte vara negativt heltal"
msgid "Old Password"
msgstr "Gammalt Lösenord"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Gamla och nya fältnamn är samma."
@@ -18217,7 +18399,7 @@ msgstr "På eller efter"
msgid "On or Before"
msgstr "På eller före"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "{0}, {1} skrev"
@@ -18261,7 +18443,7 @@ msgstr "Introduktion Klar"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "När de godkänts kan inte godkännda dokument ändras, De kan bara annulleras och sen ändras."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "När du har angivit detta kommer användarna bara att kunna få åtkomst till dokument (t.ex. Blogg Inlägg) där länk finns (t.ex. Bloggare)."
@@ -18277,11 +18459,11 @@ msgstr "En Gång Lösenord (OTP) Registrering Kod från {}"
msgid "One of"
msgstr "En av"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Endast 200 infogningar tillåts per begäran"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "Endast Administratör kan ta bort E-post Kö"
@@ -18302,7 +18484,7 @@ msgstr "Endast Administratör får använda Inspelare"
msgid "Only Allow Edit For"
msgstr "Tillåt Redigering Endast för"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Endast alternativ som är tillåtna för Data Fält är:"
@@ -18325,11 +18507,11 @@ msgstr "Endast Workspace Manager kan redigera offentliga arbetsytor"
msgid "Only allow System Managers to upload public files"
msgstr "Tillåt endast System Ansvariga att ladda upp offentliga filer"
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "Endast tillåtet att exportera anpassningar i utvecklarläge"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "Endast utkast dokument kan ångras"
@@ -18372,7 +18554,7 @@ msgstr "Endast den som tilldelats kan slutföra denna Att Göra."
msgid "Only {0} emailed reports are allowed per user."
msgstr "Endast {0} e-post rapporter är tillåtna per Användare."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Obs! Något gick fel."
@@ -18395,8 +18577,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Öppen"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18432,6 +18614,10 @@ msgstr "Öppna Referens Dokument"
msgid "Open Settings"
msgstr "Öppna Inställningar"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr "Öppna Sidofält"
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Öppen Källkod Applikationer för Webb"
@@ -18446,7 +18632,7 @@ msgstr "Öppna URL i ny Flik"
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 "Öppna dialogruta med erfordrade fält för att snabbt skapa ny post. Det måste finnas minst ett erfordrad fält för att det ska visas i dialog."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Öppna modul eller verktyg"
@@ -18458,11 +18644,11 @@ msgstr "Öppna konsol"
msgid "Open in a new tab"
msgstr "Öppna i ny flik"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr "Öppna i ny flik"
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Öppna List Post"
@@ -18477,16 +18663,16 @@ msgstr "Öppna Autentisering App på Mobil Telefon."
#: 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:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "Öppna {0}"
@@ -18518,7 +18704,7 @@ msgstr "Åtgärd"
msgid "Operator must be one of {0}"
msgstr "Operatören måste vara en av {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr "Operatorn {0} kräver exakt 2 argument (vänster och höger operand)"
@@ -18544,7 +18730,7 @@ msgstr "Alternativ 2"
msgid "Option 3"
msgstr "Alternativ 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "Alternativ {0} för fält {1} är inte underordnad tabell"
@@ -18578,7 +18764,7 @@ msgstr "Tillval: Avisering kommer att skickas om detta uttryck är sant"
msgid "Options"
msgstr "Alternativ "
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Alternativ 'Dynamisk Länk' typ av fält måste peka på annan länk fält med alternativ som 'DocType'"
@@ -18587,7 +18773,7 @@ msgstr "Alternativ 'Dynamisk Länk' typ av fält måste peka på annan länk fä
msgid "Options Help"
msgstr "Alternativ Hjälp"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Alternativen för betygsfältet kan variera från 3 till 10"
@@ -18595,7 +18781,7 @@ msgstr "Alternativen för betygsfältet kan variera från 3 till 10"
msgid "Options for select. Each option on a new line."
msgstr "Alternativ att välja. Varje Alternativ på ny rad."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Alternativ för {0} måste anges före man anger standard värde."
@@ -18603,7 +18789,7 @@ msgstr "Alternativ för {0} måste anges före man anger standard värde."
msgid "Options is required for field {0} of type {1}"
msgstr "Alternativ erfodras för fält {0} av typ {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "Alternativ inte angiven för länk fält {0}"
@@ -18619,7 +18805,7 @@ msgstr "Orange"
msgid "Order"
msgstr "Order"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "Sortera Efter måste vara sträng"
@@ -18639,8 +18825,12 @@ msgstr "Bolag Historik Huvud Rubrik"
msgid "Orientation"
msgstr "Orientering"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr "Original"
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Ursprung Värde"
@@ -18715,18 +18905,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF skapande pågår"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF Generator"
@@ -18750,7 +18942,7 @@ msgstr "PDF Sida Bredd (i mm)"
msgid "PDF Settings"
msgstr "PDF Inställningar"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "PDF skapande misslyckades"
@@ -18758,11 +18950,11 @@ msgstr "PDF skapande misslyckades"
msgid "PDF generation failed because of broken image links"
msgstr "PDF skapande misslyckades på grund av fel bildlänkar"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "PDF skapande kanske inte fungerar som förväntat."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "PDF utskrift via \"Direkt Utskrift\" stöds inte."
@@ -18921,7 +19113,7 @@ msgstr "Sida Bredd (i mm)"
msgid "Page has expired!"
msgstr "Sida är förfallen!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Sida höjd och bredd får inte vara noll"
@@ -18937,7 +19129,7 @@ msgstr "Sida som ska visas på webbplats\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:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "Sida {0} av {1}"
@@ -18948,7 +19140,7 @@ msgid "Parameter"
msgstr "Parameter"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Överordnad"
@@ -18981,11 +19173,11 @@ msgstr "Överordnad Fält"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "Överordnad Fält (Träd)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "Överordnad Fält måste vara giltigt fält namn"
@@ -18999,7 +19191,7 @@ msgstr "Överordnad Ikon"
msgid "Parent Label"
msgstr "Överordnad Etikett"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "Överordnad Saknas"
@@ -19024,11 +19216,11 @@ msgstr "Överordnad är namn på dokument som data kommer att läggas till."
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:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "Överordnad fält är inte specificerad i {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "Överordnad typ, Överordnad och Överordnad fält erfordras för att infoga underordnad post"
@@ -19047,7 +19239,7 @@ msgstr "Delvis Klar"
msgid "Partially Sent"
msgstr "Delvis Skickad"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Deltagare"
@@ -19084,11 +19276,11 @@ msgstr "Passiv"
msgid "Password"
msgstr "Lösenord"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "Lösenord skickat via E-post"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Lösenord Återställning"
@@ -19097,7 +19289,7 @@ msgstr "Lösenord Återställning"
msgid "Password Reset Link Generation Limit"
msgstr "Maximal Antal Lösenord Återställning Länkar per timme"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "Lösenord kan inte filtreras"
@@ -19126,11 +19318,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:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr "Lösenordskrav inte uppfyllda"
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
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"
@@ -19142,7 +19334,7 @@ msgstr "Lösenord angiven"
msgid "Password size exceeded the maximum allowed size"
msgstr "Lösenord längd överskred maximum tillåten längd."
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "Lösenord längd överskred maximum tillåten längd."
@@ -19204,7 +19396,7 @@ msgstr "Sökväg till Server Certifikat"
msgid "Path to private Key File"
msgstr "Sökväg till Privat Nyckel Fil"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr "Sökväg {0} är inte inom modul {1}"
@@ -19289,15 +19481,15 @@ msgstr "Behörighet Nivå"
msgid "Permanent"
msgstr "Permanent"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "Avbryt {0}?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "Annullera {0}? "
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "Godkänn {0}?"
@@ -19305,7 +19497,11 @@ msgstr "Godkänn {0}?"
msgid "Permanently delete {0}?"
msgstr "Permanent ta bort {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr "Behörighet"
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "Behörighet Fel"
@@ -19315,12 +19511,12 @@ msgid "Permission Inspector"
msgstr "Behörighet Granskare"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Behörighet Nivå"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Behörighet Nivå "
@@ -19329,11 +19525,6 @@ msgstr "Behörighet Nivå "
msgid "Permission Log"
msgstr "Behörighetslogg"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "Behörighet Ansvarig"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19364,7 +19555,6 @@ msgstr "Behörighet Typ '{0}' är reserverad. Välj ett annat namn."
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19375,13 +19565,12 @@ msgstr "Behörighet Typ '{0}' är reserverad. Välj ett annat namn."
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "Behörigheter"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "Behörighet Fel"
@@ -19393,11 +19582,11 @@ msgstr "Behörigheter tillämpas automatiskt på standard rapporter och sökning
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 "Behörigheter anges för roller och dokument typer (kallade DocTypes) genom att ange rättigheter som Läs, Skriv, Skapa, Ta bort, Godkänn, Annulera, Ändra, Rapportera, Importera, Exportera, Skriv ut, E-post och Ange Användarbehörigheter."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "Behörigheter på högre nivåer är fältnivå behörigheter. Alla fält har behörighetsnivå angiven mot dem och reglerna som definieras vid dessa behörigheter gäller för fält. Detta är användbart för att dölja eller göra vissa fält skrivskyddade för vissa roller."
-#: frappe/core/page/permission_manager/permission_manager_help.html:24
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "Behörigheter på nivå 0 är behörigheter på dokumentnivå, det vill säga de är primära för åtkomst till dokument."
@@ -19467,13 +19656,13 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon Nummer."
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
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:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Välj Kolumner"
@@ -19531,7 +19720,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Skapa Diagram"
@@ -19547,7 +19736,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:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Be Administratör att verifiera din registrering"
@@ -19555,11 +19744,11 @@ msgstr "Be Administratör att verifiera din registrering"
msgid "Please attach a file first."
msgstr "Bifoga fil först."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "Bifoga bild för att ange HTML för sidfot."
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "Bifoga bild för att ange HTML för Brevhuvud."
@@ -19571,11 +19760,11 @@ msgstr "Lägg till App"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Kontrollera filter värden angivna för Översikt Panel Diagram: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
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:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Kontrollera din E-post för verifiering"
@@ -19607,7 +19796,7 @@ msgstr "Klicka på följande länk för att ange ny lösenord"
msgid "Please confirm your action to {0} this document."
msgstr "Bekräfta åtgärd till {0} detta dokument."
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Kontakta System Ansvarig för att installera rätt version."
@@ -19637,10 +19826,10 @@ msgstr "Aktivera minst en social inloggning nyckel eller LDAP eller Logga in med
#: 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Aktivera PopUp"
@@ -19653,7 +19842,7 @@ msgstr "Aktivera popup fönster i webbläsare"
msgid "Please enable {} before continuing."
msgstr "Aktivera {} innan du fortsätter."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Se till att din profil har E-post"
@@ -19727,15 +19916,15 @@ msgstr "Logga in för att lämna kommentar."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Kontrollera att Kommunikation Referens Dokument inte är cirkulärt länkade."
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "Uppdatera för att se senaste dokument."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Ta bort skrivare mappning i Skrivare Inställningar och försök igen."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Spara före bifoga."
@@ -19751,7 +19940,7 @@ msgstr "Spara dokument före radering av tilldelning"
msgid "Please save the form before previewing the message"
msgstr "Spara formulär innan förhandsgranskning av meddelande"
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Spara Rapport"
@@ -19771,7 +19960,7 @@ 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:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Välj X och Y fält"
@@ -19779,7 +19968,7 @@ msgstr "Välj X och Y fält"
msgid "Please select a DocType in options before setting filters"
msgstr "Välj DocType i alternativ innan du väljer filter"
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Välj landskod för fält {1}."
@@ -19829,11 +20018,11 @@ msgstr "Välj {0}"
msgid "Please set Email Address"
msgstr "Ange E-postadress"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
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:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Ange Filter"
@@ -19841,7 +20030,7 @@ msgstr "Ange Filter"
msgid "Please set filters value in Report Filter table."
msgstr "Ange filter värde i Rapport Sortering Tabell."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Vänligen ange dokument namn"
@@ -19861,7 +20050,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:462
+#: frappe/core/doctype/user/user.py:465
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"
@@ -19873,7 +20062,7 @@ msgstr "Ange standard utgående e-postkonto från Verktyg > E-postkonto"
msgid "Please specify"
msgstr "Specificera"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Ange giltig överordnad DocType för {0}"
@@ -19901,7 +20090,7 @@ msgstr "Ange vilket datum och tid fält som måste bli vald"
msgid "Please specify which value field must be checked"
msgstr "Ange Värde Fält som måste kontrolleras"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Försök igen"
@@ -20022,11 +20211,11 @@ msgstr "Registrering Tid"
msgid "Precision"
msgstr "Precision"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "Precision ({0}) för {1} kan inte vara längre än dess längd ({2})."
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "Precision ska vara mellan 1 och 6"
@@ -20078,11 +20267,11 @@ msgstr "Förberedd Rapport Användare"
msgid "Prepared report render failed"
msgstr "Förberedd Rapport Misslyckad"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Förbereder Rapport"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Lägg mall före e-post meddelande"
@@ -20090,7 +20279,7 @@ msgstr "Lägg mall före e-post meddelande"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Tryck på Alt tangent för att visa ytterligare genvägar på Meny och Sidofält"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Tryck på Enter att Spara"
@@ -20108,7 +20297,7 @@ msgstr "Tryck på Enter att Spara"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Förhandsgranska"
@@ -20152,16 +20341,16 @@ msgstr "Förhandsgranska:"
msgid "Previous"
msgstr "Föregående"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Föregående "
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Föregående Dokument"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Föregående Godkännande"
@@ -20214,19 +20403,19 @@ msgstr "Primär nyckel för doctype {0} kan inte ändras eftersom det finns befi
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Utskrift"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Utskrift"
@@ -20244,8 +20433,9 @@ msgstr "Skriv ut Dokument"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20289,7 +20479,7 @@ msgstr "Utskrift Format Hjälp"
msgid "Print Format Type"
msgstr "Utskrift Format Typ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "Utskriftsformat hittades inte"
@@ -20322,11 +20512,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:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Utskrift Språk"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "Utskrift Skickad till skrivare!"
@@ -20339,8 +20529,8 @@ msgstr "Skrivar Server"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Utskrift Inställningar"
@@ -20379,7 +20569,7 @@ msgstr "Utskrift Bredd"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "Utskrift Bredd för fält, om fält är kolumn i tabell"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Dokument Utskrift"
@@ -20388,11 +20578,11 @@ msgstr "Dokument Utskrift"
msgid "Print with letterhead"
msgstr "Utskrift med Brevhuvud"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Skrivare"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Skrivare Mappning"
@@ -20402,15 +20592,15 @@ msgstr "Skrivare Mappning"
msgid "Printer Name"
msgstr "Skrivare Namn"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Skrivare Inställningar"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Skrivare Mappning inte angiven"
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Utskrift Misslyckades"
@@ -20459,7 +20649,7 @@ msgstr "Tips: Lägg Referens: {{ reference_doctype }} {{ reference_name }}
msgid "Proceed"
msgstr "Fortsätt"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Fortsätt Ändå"
@@ -20499,9 +20689,9 @@ msgid "Project"
msgstr "Projekt"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "Egenskap"
@@ -20571,7 +20761,7 @@ msgstr "Leverantör Namn"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Allmän"
@@ -20721,7 +20911,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:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ Tray Misslyckades:"
@@ -20783,7 +20973,7 @@ msgstr "Dataförfråga måste vara av typen SELECT eller skrivskyddad WITH."
msgid "Queue"
msgstr "Kö"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "Kö Överbelastad"
@@ -20804,7 +20994,7 @@ msgstr "Kö Typ(er)"
msgid "Queue in Background (BETA)"
msgstr "Kö i Bakgrund (Beta)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "Kö ska vara en av {0}"
@@ -20845,7 +21035,7 @@ msgstr "I Kö för Säkerhetskopiering. Du kommer att få E-post meddelande med
msgid "Queues"
msgstr "Kö "
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "I Kö {0} för Godkännade"
@@ -20937,6 +21127,15 @@ msgstr "Rå Kommand"
msgid "Raw Email"
msgstr "Rå E-post"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr "HTML kan endast användas med E-post Mallar där \"Använd HTML\" är vald. Fortsätter med vanlig text i e-post meddelandet."
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr "HTML E-post meddelanden renderas som kompletta Jinja mallar. Annars paketeras e-post meddelanden i e-post mall standard.html, som infogar brand_logo, sidhuvud och sidfot."
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20945,7 +21144,7 @@ msgstr "Rå E-post"
msgid "Raw Printing"
msgstr "Direkt Utskrift"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "Direkt Utskrift Inställningar"
@@ -20963,7 +21162,7 @@ msgstr "Sv:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Sv: {0}"
@@ -20974,11 +21173,12 @@ msgstr "Sv: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21015,7 +21215,7 @@ msgstr "Skrivskyddat Beroende På"
msgid "Read Only Depends On (JS)"
msgstr "Skrivskyddat Beroende På (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Skrivskyddat Läge"
@@ -21055,7 +21255,7 @@ msgstr "Realtid (SocketIO)"
msgid "Reason"
msgstr "Anledning"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Uppdatera"
@@ -21097,7 +21297,7 @@ msgstr "Mottagare Parameter"
msgid "Recent years are easy to guess."
msgstr "De senaste åren är lätta att gissa sig till."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Senaste"
@@ -21148,7 +21348,7 @@ msgstr "Inspelning Föreslagna Index"
msgid "Records for following doctypes will be filtered"
msgstr "Poster för följande doctypes kommer att filtreras"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "Rekursiv Hämta Från"
@@ -21214,12 +21414,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:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "Återskapa"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Återskapa senaste åtgärd"
@@ -21435,12 +21635,12 @@ msgstr "Referens: {0} {1}"
msgid "Referrer"
msgstr "Referens"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21457,7 +21657,7 @@ msgstr "Uppdatera Alla"
msgid "Refresh Google Sheet"
msgstr "Uppdatera Google Sheet"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "Uppdatera Utskrift Förhandsgranskning"
@@ -21472,7 +21672,7 @@ msgstr "Uppdatera Utskrift Förhandsgranskning"
msgid "Refresh Token"
msgstr "Uppdatera Token"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Uppdaterar"
@@ -21483,7 +21683,7 @@ msgstr "Uppdaterar"
msgid "Refreshing..."
msgstr "Uppdaterar..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Registrerad men inaktiverad"
@@ -21529,10 +21729,8 @@ msgstr "Länka om Kommunikation"
msgid "Relinked"
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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Ladda om"
@@ -21544,7 +21742,7 @@ msgstr "Ladda om Fil"
msgid "Reload List"
msgstr "Ladda om Lista"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Ladda om Rapport"
@@ -21563,7 +21761,7 @@ msgstr "Kom ihåg Senast Valda Värde"
msgid "Remind At"
msgstr "Påminn Mig"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Påminn mig"
@@ -21643,9 +21841,9 @@ msgid "Removed"
msgstr "Borttagen"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21673,7 +21871,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:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Upprepa"
@@ -21720,7 +21918,7 @@ msgstr "Upprepningar som 'AAA' är lätt att gissa"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Upprepningar som 'abcabcabc' är endast något svårare att gissa än 'abc'"
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Upprepas {0}"
@@ -21783,6 +21981,7 @@ msgstr "Svara Alla"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21797,10 +21996,9 @@ msgstr "Svara Alla"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Rapport"
@@ -21869,7 +22067,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Rapport Namn"
@@ -21903,14 +22101,10 @@ msgstr "Rapport Typ"
msgid "Report View"
msgstr "Rapport Vy"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Rapportera Fel"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Rapport kan inte anges för Enskilda Typer"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21921,7 +22115,7 @@ msgstr "Rapport har ingen data, ändra filter eller ändra rapport namn"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Rapport har inga numeriska fält, ändra rapport namn"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Rapport initierad, klicka för att se status"
@@ -21933,7 +22127,7 @@ msgstr "Rapport gräns nådd"
msgid "Report timed out."
msgstr "Rapport förföll."
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Rapport är uppdaterad"
@@ -21941,12 +22135,12 @@ 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:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
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."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "Rapport {0}"
@@ -21969,7 +22163,7 @@ msgstr "Rapport:"
#. 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Rapporter"
@@ -21977,7 +22171,7 @@ msgstr "Rapporter"
msgid "Reports & Masters"
msgstr "Rapporter & Inställningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Rapporter redan i Kö"
@@ -22036,13 +22230,13 @@ msgstr "Begäran Sätt"
msgid "Request Structure"
msgstr "Begäran Struktur"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "Begäran tog för lång tid"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "Begäran förfaller om"
@@ -22158,7 +22352,7 @@ msgstr "Återställ Till Standard"
msgid "Reset sorting"
msgstr "Återställ Sortering"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Återställ Standard"
@@ -22216,7 +22410,7 @@ msgstr "Svarsrubriker"
msgid "Response Type"
msgstr "Svar Typ"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Resten av dagen"
@@ -22225,7 +22419,7 @@ msgstr "Resten av dagen"
msgid "Restore"
msgstr "Återställ"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Återställ Standard Behörigheter"
@@ -22247,6 +22441,11 @@ msgstr "Återställer Raderad Dokument"
msgid "Restrict IP"
msgstr "Begränsa till IP"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr "Begränsa Borttagning"
+
#. 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'
@@ -22274,8 +22473,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Begränsningar"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Resultat"
@@ -22322,9 +22521,15 @@ msgstr "Återkallad"
msgid "Rich Text"
msgstr "Rich Text "
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22359,8 +22564,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22375,8 +22578,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22420,7 +22622,7 @@ msgstr "Roll Behörigheter"
msgid "Role Permissions Manager"
msgstr "Roll Behörigheter Hanterare"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Roll Behörigheter Hanterare"
@@ -22428,11 +22630,9 @@ msgstr "Roll Behörigheter Hanterare"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Roll Profil"
@@ -22454,7 +22654,7 @@ msgstr "Rollreplikering"
msgid "Role and Level"
msgstr "Roll och Nivå"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Rollen angiven enligt användare typ {0}"
@@ -22573,20 +22773,20 @@ msgstr "Sökväg Omdirigeringar"
msgid "Route: Example \"/app\""
msgstr "Sökväg: Exempel \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Rad"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "Rad #"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Rad # {0}: Användare som inte är administratör kan inte ange roll {1} till anpassad Dokument Typ"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr "Rad # {0}: Användare som inte är administratörer kan inte lägga till roll {1} i en anpassad DocType."
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Rad # {0}:"
@@ -22613,7 +22813,7 @@ msgstr "Rad Namn"
msgid "Row Number"
msgstr "Rad Nummer"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Rad Värde Ändrad"
@@ -22632,14 +22832,14 @@ msgstr "Rad {0}: Ej Tillåtet att aktivera Tillåt vid Godkännande för standar
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Rader Tillagda "
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Rader Borttagna "
@@ -22662,7 +22862,7 @@ msgstr "Regel"
msgid "Rule Conditions"
msgstr "Regel Villkor"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
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."
@@ -22742,7 +22942,7 @@ msgstr "SMS Inställningar"
msgid "SMS sent successfully"
msgstr "SMS skickad"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS inte skickad. Kontakta Administratör."
@@ -22776,7 +22976,7 @@ msgstr "SQL Resultat"
msgid "SQL Queries"
msgstr "SQL Frågor"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr "SQL funktioner är inte tillåtna som strängar i SELECT: {0}. Använd dict syntax som {{'COUNT': '*'}} istället."
@@ -22848,22 +23048,23 @@ msgstr "Lördag"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22876,7 +23077,7 @@ msgid "Save Anyway"
msgstr "Spara Ändå"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Spara Som"
@@ -22884,7 +23085,7 @@ msgstr "Spara Som"
msgid "Save Customizations"
msgstr "Spara Anpassningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Spara Rapport"
@@ -22902,20 +23103,20 @@ msgid "Save the document."
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:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Sparad"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Sparade Filter"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Sparar"
@@ -22924,11 +23125,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Sparar"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr "Sparar Ändringar..."
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Sparar Anpassning..."
@@ -23132,7 +23333,7 @@ msgstr "Skript "
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23152,7 +23353,7 @@ msgstr "Sökfält"
msgid "Search Fields"
msgstr "Sökfält"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Sök i Hjälp"
@@ -23170,7 +23371,7 @@ msgstr "Sök Resultat"
msgid "Search by filename or extension"
msgstr "Sök efter fil namn eller fil tillägg"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Sökfält {0} är inte giltigt"
@@ -23187,12 +23388,12 @@ msgstr "Sök fälttyper..."
msgid "Search for anything"
msgstr "Sök efter något"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "Sök efter {0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "Sök i DocType"
@@ -23264,15 +23465,15 @@ msgstr "Sektion måste ha minst en kolumn"
msgid "Security Settings"
msgstr "Säkerhet Inställningar"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Visa All Aktivitet"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Visa alla tidigare rapporter."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Visapå Webbplats"
@@ -23322,24 +23523,26 @@ msgstr "Visning Tabell"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Välj i Listan"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Välj Alla"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23355,7 +23558,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Välj Kolumner"
@@ -23399,13 +23602,13 @@ msgstr "Välj DocType"
msgid "Select Document Type or Role to start."
msgstr "Välj DocType eller Roll att starta."
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
msgstr "Välj Dokument Typer för att ange vilka användarbehörigheter som används för att begränsa åtkomst."
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Välj Fält"
@@ -23414,7 +23617,7 @@ msgstr "Välj Fält"
msgid "Select Field..."
msgstr "Välj Fält..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Välj Fält"
@@ -23423,19 +23626,19 @@ msgstr "Välj Fält"
msgid "Select Fields (Up to {0})"
msgstr "Välj Fält (upp till {0})"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Välj Fält att Infoga"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Välj Fält att Uppdatera"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Välj Filter"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Välj Google Kalender till vilken händelse ska synkroniseras."
@@ -23460,16 +23663,16 @@ msgstr "Välj Språk"
msgid "Select List View"
msgstr "Välj List Vy"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "Välj Erfordrad"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Välj Modul"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Välj Nätverksskrivare"
@@ -23479,7 +23682,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Välj Utskrift Mall"
@@ -23515,12 +23718,6 @@ msgstr "Välj Arbetsflöde"
msgid "Select Workspace"
msgstr "Välj Arbetsyta"
-#. 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 "Välj Arbetsytor"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "Välj Märke Bild."
@@ -23537,11 +23734,11 @@ msgstr "Välj fält för att redigera dess egenskaper."
msgid "Select a group {0} first."
msgstr "Välj grupp {0}."
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "Välj giltig Avsändar Fält att skapa dokument från E-post"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "Välj giltig Ämne Fält att skapa dokument från E-post"
@@ -23567,13 +23764,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:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Välj List Artikel"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Välj flera List Artiklar"
@@ -23607,7 +23804,7 @@ msgstr "Välj två versioner för att se skillnader."
msgid "Select {0}"
msgstr "Välj {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Ej Tillåtet att godkänna själv "
@@ -23637,6 +23834,11 @@ msgstr "Skicka Efter"
msgid "Send Alert On"
msgstr "Skicka Avisering"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr "Skicka som HTML"
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23689,7 +23891,7 @@ msgstr "Skicka Nu"
msgid "Send Print as PDF"
msgstr "Skicka Utskrift som PDF"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Skicka Läskvitto"
@@ -23752,7 +23954,7 @@ 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:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Skicka Kopia till mig"
@@ -23791,7 +23993,7 @@ msgstr "Avsändare E-post"
msgid "Sender Email Field"
msgstr "Avsändare E-post Fält"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "Avsändare Fält ska ha E-post i Alternativ"
@@ -23885,7 +24087,7 @@ msgstr "Namngivning Serie uppdaterad för {}"
msgid "Series counter for {} updated to {} successfully"
msgstr "Namngivning Serie räknare för {} är uppdaterad till {}"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Namngivning Serie {0} används redan i {1}"
@@ -23895,7 +24097,7 @@ msgstr "Namngivning Serie {0} används redan i {1}"
msgid "Server Action"
msgstr "Server Åtgärd"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Server Fel"
@@ -23922,11 +24124,15 @@ msgstr "Server Skript är inaktiverad. Aktivera Server Skript från bench."
msgid "Server Scripts feature is not available on this site."
msgstr "Server Skript funktion är inte tillgänglig på denna webbplats."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr "Serverfel under uppladdning. Filen kan vara skadad."
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "Servern kunde inte behandla denna begäran på grund av en samtidig motstridig begäran. Försök igen."
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "Servern var för upptagen för att behandla denna begäran. Var god försök igen."
@@ -23954,16 +24160,14 @@ msgstr "Session Standard"
msgid "Session Default Settings"
msgstr "Session Standard Inställningar"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Session Inställningar"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Session Inställningar Sparade"
@@ -24004,7 +24208,7 @@ msgstr "Ange"
msgid "Set Banner from Image"
msgstr "Ange Banderoll från Bild"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Skapa Diagram"
@@ -24030,7 +24234,7 @@ msgstr "Ange Filter"
msgid "Set Filters for {0}"
msgstr "Ange Filter för {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Ange Nivå"
@@ -24073,8 +24277,8 @@ msgstr "Ange Egenskaper"
msgid "Set Property After Alert"
msgstr "Ange Egenskap efter Avisering"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "Bekräfta"
@@ -24094,12 +24298,12 @@ msgstr "Ange Användar Behörigheter"
msgid "Set Value"
msgstr "Ange Värde"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Ange som Privat"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Ange som Allmän"
@@ -24227,8 +24431,8 @@ msgstr "Konfigurerar System"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24251,11 +24455,11 @@ msgstr "Inställningar för Kontakta Oss Sida"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Inställning"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Inställningar > Anpassa Formulär"
@@ -24263,12 +24467,12 @@ msgstr "Inställningar > Anpassa Formulär"
msgid "Setup > User"
msgstr "Inställningar > Användare"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Inställningar > Användar Behörigheter"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Automatisk E-post Rapport"
@@ -24297,13 +24501,14 @@ msgstr "Installation misslyckades"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Dela "
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Dela Med"
@@ -24311,7 +24516,7 @@ msgstr "Dela Med"
msgid "Share this document with"
msgstr "Dela detta dokument med"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "Dela {0} med"
@@ -24371,16 +24576,10 @@ msgstr "Visa Absolut Datum och Tid i Tidslinjen"
msgid "Show Absolute Values"
msgstr "Visa Absoluta Värden"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Visa Alla"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr "Visa App Ikoner som Mapp"
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24426,7 +24625,7 @@ msgstr "Visa Fel"
msgid "Show External Link Warning"
msgstr "Visa Extern Länk Varning"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "Visa Fältnamn (klicka för att kopiera till urklipp)"
@@ -24478,7 +24677,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:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Visa Länkar"
@@ -24598,7 +24797,7 @@ msgstr "Visa Helger"
msgid "Show account deletion link in My Account page"
msgstr "Visa konto borttagning länk på Mitt Konto sida"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Visa alla versioner"
@@ -24740,7 +24939,7 @@ msgstr "Logga Ut"
msgid "Sign Up and Confirmation"
msgstr "Registrering och Bekräftelse"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Registrering är inaktiverad"
@@ -24863,7 +25062,7 @@ msgstr "Hoppar över Namnlös Kolumn"
msgid "Skipping column {0}"
msgstr "Hoppar över Kolumn {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "Hoppar över fixture synkronisering för doctype {0} från fil {1}"
@@ -25038,15 +25237,15 @@ msgstr "Något gick fel"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Något gick fel under token skapande. Klicka på {0} att skapa ny."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Något gick fel."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Kunde inte hitta det du söker efter."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Det är inte tillåten att visa denna sida."
@@ -25077,13 +25276,13 @@ msgstr "Sortering Alternativ"
msgid "Sort Order"
msgstr "Sortering Order"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "Sortering Fält {0} måste vara giltig fält namn"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25115,7 +25314,7 @@ msgstr "Mellanrum"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr "Spam"
+msgstr "Skräppost"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -25132,7 +25331,7 @@ msgstr "Startar åtgärder i bakgrundsjobb"
msgid "Special Characters are not allowed"
msgstr "Special tecken är inte tillåtna"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "Specialtecken (förutom '-'), '#', '.', '/', '{{' och '}}' är otillåtna i namngivningsserier {0}"
@@ -25171,6 +25370,7 @@ msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25178,6 +25378,7 @@ msgstr "Stack Trace"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25245,8 +25446,8 @@ msgstr "Standard Användare Typ {0} kan inte tas bort."
#: 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:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Start"
@@ -25418,7 +25619,7 @@ msgstr "Statistik Tid Intervall"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25456,7 +25657,7 @@ msgstr "Steg för att verifiera din inloggning"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "Klistrad"
@@ -25570,7 +25771,7 @@ msgstr "Underdomän"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Ämne"
@@ -25584,7 +25785,7 @@ msgstr "Ämne"
msgid "Subject Field"
msgstr "Ämne Fält"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "Ämne Fält Typ ska vara Data, Text, Lång Text, Liten Text, Text Redigerare"
@@ -25605,14 +25806,14 @@ msgstr "Godkännande Kö"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Godkänn"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Godkänn"
@@ -25642,7 +25843,7 @@ msgstr "Bekräfta"
msgid "Submit After Import"
msgstr "Godkänn efter Import"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Anmäl Ärende"
@@ -25666,11 +25867,11 @@ msgstr "Godkänn vid Skapande"
msgid "Submit this document to complete this step."
msgstr "Godkänn detta dokument för att slutföra detta steg."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
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:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "Godkänn {0} dokument?"
@@ -25696,7 +25897,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Godkänner"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "Godkänner {0}"
@@ -25731,12 +25932,12 @@ msgstr "Subtilt"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25778,7 +25979,7 @@ msgstr "Klart Benämning"
msgid "Successful Job Count"
msgstr "Antal Klara Jobb "
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Klara Transaktioner"
@@ -25803,7 +26004,7 @@ msgstr "Importerade {0} av {1} poster."
msgid "Successfully reset onboarding status for all users."
msgstr "Introduktion återställd för alla användare."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr "Utloggad"
@@ -25828,7 +26029,7 @@ msgstr "Föreslå Optimeringar"
msgid "Suggested Indexes"
msgstr "Föreslagen Indexering"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Föreslagen Användarnamn: {0}"
@@ -25869,7 +26070,7 @@ msgstr "Söndag"
msgid "Suspend Sending"
msgstr "Suspendera Utskick"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Ändra Kamera"
@@ -25882,7 +26083,7 @@ msgstr "Ändra Tema"
msgid "Switch To Desk"
msgstr "Växla till Skrivbord"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Ändrar Kamera"
@@ -25951,9 +26152,7 @@ msgid "Syntax Error"
msgstr "Syntaxfel"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "System"
@@ -25963,7 +26162,7 @@ msgstr "System"
msgid "System Console"
msgstr "System Konsol"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "System skapade fält kan inte döpas om"
@@ -26090,6 +26289,7 @@ msgstr "System Logg"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26104,7 +26304,6 @@ msgstr "System Logg"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26180,6 +26379,11 @@ msgstr "System Sida"
msgid "System Settings"
msgstr "System Inställningar"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr "System Användare"
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26196,6 +26400,12 @@ msgstr "T"
msgid "TOS URI"
msgstr "TOS URI"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+msgstr "Flik"
+
#. 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'
@@ -26231,7 +26441,7 @@ msgstr "Tabell"
msgid "Table Break"
msgstr "Tabell Brytning"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Tabell Fält"
@@ -26240,7 +26450,7 @@ msgstr "Tabell Fält"
msgid "Table Fieldname"
msgstr "Tabell Fältnamn"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Tabell Fältnamn saknas"
@@ -26258,7 +26468,7 @@ msgstr "Tabell HTML"
msgid "Table MultiSelect"
msgstr "Tabell FlerVal"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr "Tabell MultiSelect kräver en tabell med minst ett länkfält, men inget hittades i {0}"
@@ -26266,11 +26476,11 @@ msgstr "Tabell MultiSelect kräver en tabell med minst ett länkfält, men inget
msgid "Table Trimmed"
msgstr "Tabell Optimerad"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Tabell Uppdaterad"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Tabell {0} kan inte vara tom"
@@ -26290,17 +26500,17 @@ msgid "Tag Link"
msgstr "Tagg Länk"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Taggar"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Ta Foto"
@@ -26384,7 +26594,7 @@ msgstr "Mall Varningar"
msgid "Templates"
msgstr "Mallar"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Tillfälligt Inaktiverad"
@@ -26482,7 +26692,7 @@ msgstr "Tack"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Återkommande för detta dokument är inaktiverad."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "CSV format är skiftläge känslig"
@@ -26534,7 +26744,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:481
msgid "The changes have been reverted."
msgstr "Ändringarna är återställda."
@@ -26550,7 +26760,7 @@ msgstr "Kommentar kan inte vara tom"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "Innehållet i detta e-post meddelande är strikt konfidentiellt. Vänligen vidarebefordra inte detta e-post meddelande till någon."
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Antal som visas är uppskattat antal. Klicka här för att se exakt antal."
@@ -26576,11 +26786,15 @@ msgstr "Dokument är tilldelad till {0}"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "Vald Dokument Typ är underordnad tabell, så överordnad Dokument Typ erfordras."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr "E-post knapp är aktiverad för användare i dokument."
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr "Fält {0} i {1} tillåter inte att användarbehörigheter ignoreras"
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr "Fält {0} i {1} länkar till {2} och inte {3}"
@@ -26647,6 +26861,10 @@ msgstr "Antal sekunder tills begäran upphör att gälla"
msgid "The password of your account has expired."
msgstr "Ditt Konto Lösenord har gått ut."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+msgstr "Utskrift knapp är aktiverad för användare i dokument."
+
#: 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 "Process för att radera {0} data kopplade till {1} är påbörjad."
@@ -26664,15 +26882,15 @@ msgstr "Projekt Nummer erhålln från Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "Rapport som begärdes är skapad.
Klicka här för att ladda ner:
{0}
Denna länk löper ut om {1} timmar."
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
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:1049
+#: frappe/core/doctype/user/user.py:1052
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:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Resurs är inte tillgänglig"
@@ -26684,7 +26902,7 @@ msgstr "Roll {0} ska vara anpassad roll."
msgid "The selected document {0} is not a {1}."
msgstr "Vald dokument {0} är inte {1}."
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
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."
@@ -26696,6 +26914,42 @@ msgstr "System har många fördefinierade roller. Du kan lägga till nya roller
msgid "The total number of user document types limit has been crossed."
msgstr "Totalt antal användar dokument typer är passerad."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr "Användare kan skapa ny Artikel men kan inte redigera befintliga artiklar."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr "Användare kan ta bort Utkast / Anullerade dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr "Användare kan exportera rapport data."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr "Användare kan importera nya poster eller uppdatera befintlig data för dokument."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr "Användare kan välja Kund i Försäljning Order men kan inte öppna Kund registret."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr "Användare kan dela dokument åtkomst med en annan användare."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr "Användare kan uppdatera kund eller andra fält i befintlig Försäljning Order men kan inte skapa ny Försäljning Order."
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr "Användare kan visa Försäljning Fakturor men kan inte ändra några fältvärde."
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+msgstr "Värde för fält {0} är för lång i dokument {1}. För att lösa problem, minska värde längd eller ändra fälttyp {0} till lång text med hjälp av ett anpassad formulär och försök sedan igen."
+
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr "Antal tecken som klistrades in var {0}. Max tillåtet antal är {1}."
@@ -26737,7 +26991,7 @@ msgstr "Tema URL"
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 "Det finns dokument som har arbetsflöde tillstånd som inte finns i detta arbetsflöde. Det rekommenderas att du lägger till dessa tillstånd i arbetsflöde och ändrar deras tillstånd innan du tar bort dessa tillstånd."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Det finns inga kommande händelser för dig."
@@ -26745,7 +26999,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "Det finns {0} med samma filter redan i kö:"
@@ -26754,7 +27008,7 @@ msgstr "Det finns {0} med samma filter redan i kö:"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "Det kan bara finnas nio sidbrytning fält i webbformulär"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "Det kan bara finnas en vikning per formulär"
@@ -26766,11 +27020,11 @@ msgstr "Det finns fel i adress mall {0}"
msgid "There is no data to be exported"
msgstr "Det finns ingen data att exportera"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "Det finns ingen aktivitet som heter \"{}\""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Det finns inget nytt att visa dig just nu."
@@ -26778,7 +27032,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:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "Det finns {0} med samma filter som redan finns i kö:"
@@ -26794,7 +27048,7 @@ msgstr "Det uppstod fel när denna sida skulle skapas"
msgid "There was an error saving filters"
msgstr "Det uppstod fel när filter skulle sparas"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Det fanns fel"
@@ -26802,11 +27056,11 @@ 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:834
+#: frappe/public/js/frappe/views/communication.js:903
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:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Det uppstod några fel vid namngivning, kontakta administratör"
@@ -26875,11 +27129,11 @@ 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:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Åtgärd är endast tillåten för {}"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Detta kan inte ångras"
@@ -26903,7 +27157,7 @@ msgstr "Detta diagram kommer att vara tillgängligt för alla användare om dett
msgid "This doctype has no orphan fields to trim"
msgstr "Denna doctype har inga övergivna fält att trimma"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
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."
@@ -26919,15 +27173,15 @@ msgstr "Detta dokument har redan placerats i kö för godkännade. Du kan följa
msgid "This document has been modified after the email was sent."
msgstr "Dokument har ändrats efter att e-post meddelande skickades."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "Detta dokument har osparade ändringar som kanske inte visas i slutlig PDF fil.
Spara dokument innan utskrift."
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
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:509
+#: frappe/model/document.py:508
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."
@@ -26941,7 +27195,7 @@ msgid "This feature can not be used as dependencies are missing.\n"
msgstr "Denna funktion kan inte användas eftersom beroenden saknas.\n"
"\t\t\t\tKontakta System Ansvarig för att aktivera detta genom att installera pycups!"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "Den här funktionen är helt ny och fortfarande experimentell"
@@ -26968,11 +27222,11 @@ msgstr "Den här filen är offentlig och kan nås av vem som helst, även utan a
msgid "This file is public. It can be accessed without authentication."
msgstr "Denna fil är allmän fil. Den kan nås utan autentisering."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Denna form har ändrats efter öppnande"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "Detta formulär är inte redigerbart på grund av ett arbetsflöde."
@@ -26991,7 +27245,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:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
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."
@@ -27033,15 +27287,15 @@ msgstr "Länk är redan aktiverad för verifiering."
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Denna länk är ogiltig eller har uphört. Se till att du har klistrat in på rätt sätt."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "Detta kan skrivas ut på flera sidor"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Nuvarande Månad"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
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."
@@ -27049,7 +27303,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:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Denna rapport skapades {0}."
@@ -27073,7 +27327,7 @@ msgstr "Denna programvara är byggd ovanpå många andra öppen källkod program
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "Denna benämning kommer att användas som benämning på hemsida såväl som i meta taggar"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "Detta värde hämtas från {0} fält {1}"
@@ -27117,7 +27371,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 kommer att avsluta jobbet omedelbart och kan vara farligt, är du säker?"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "Strypt"
@@ -27148,6 +27402,7 @@ msgstr "Torsdag"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27155,6 +27410,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Tid"
@@ -27237,11 +27493,6 @@ msgstr "Tid {0} måste vara i format: {1}"
msgid "Timed Out"
msgstr "Tidsgräns"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr "Timeless Launchpad"
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Timeless Night"
@@ -27273,11 +27524,11 @@ msgstr "Tidslinje Länkar"
msgid "Timeline Name"
msgstr "Tidslinje Namn"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "Tidslinje Fält måste vara Länk eller Dynamisk Länk"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "Tidslinje Fält måste vara giltig fält namn"
@@ -27348,7 +27599,7 @@ msgstr "Tips: Testa ny konsol med"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27371,7 +27622,7 @@ msgstr "Benämning Fält"
msgid "Title Prefix"
msgstr "Benämning Prefix"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "Benämning Fält måste vara giltig fält namn"
@@ -27461,7 +27712,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:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "Klicka på {0} att hämta uppdaterad rapport."
@@ -27514,31 +27765,14 @@ msgstr "Att Göra"
msgid "Today"
msgstr "Idag"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Växla Diagram"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Växla Full Bredd"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Växla Rutnät Vy"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Växla Sidofält"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Växla Tema"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27574,7 +27808,7 @@ msgid "Tomorrow"
msgstr "I morgon"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "För Många Dokument"
@@ -27582,15 +27816,19 @@ 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:480
msgid "Too many changes to database in single action."
msgstr "För många ändringar i databas i en enda åtgärd."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
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:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr "För många förfrågningar. Försök igen senare."
+
+#: frappe/core/doctype/user/user.py:1093
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"
@@ -27646,10 +27884,10 @@ msgstr "Topp Höger"
msgid "Topic"
msgstr "Ämne"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Totalt"
@@ -27664,7 +27902,7 @@ msgstr "Totalt Antal Bakgrund Tjänster"
msgid "Total Errors (last 1 day)"
msgstr "Totalt Antal Fel (Senaste dag)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Totalt Antal Bilder"
@@ -27766,7 +28004,7 @@ msgstr "Spåra om E-post är öppnad av mottagare.\n"
msgid "Track milestones for any document"
msgstr "Spåra milstolpar för alla dokument"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "Spårning URL skapad och kopierad till urklipp"
@@ -27802,7 +28040,7 @@ msgstr "Övergångar"
msgid "Translatable"
msgstr "Översättningbar"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "Översätt Data"
@@ -27813,7 +28051,7 @@ msgstr "Översätt Data"
msgid "Translate Link Fields"
msgstr "Översätt Länk Fält"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Översätt värden"
@@ -27849,7 +28087,7 @@ msgstr "Skräp"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "Träd Vy"
@@ -27898,8 +28136,8 @@ msgstr "Försök igen"
msgid "Try a Naming Series"
msgstr "Prova Namngivning Serie"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Prova ny Urskrift Format Redigerare"
@@ -27945,6 +28183,7 @@ msgstr "Två Faktor Autentisering Sätt"
#. 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 'Event Notifications'
#. 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'
@@ -27958,6 +28197,7 @@ msgstr "Två Faktor Autentisering Sätt"
#: 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/event_notifications/event_notifications.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
@@ -27966,7 +28206,7 @@ msgstr "Två Faktor Autentisering Sätt"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28134,7 +28374,7 @@ msgstr "UTM Källa"
msgid "UUID"
msgstr "UUID"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "Slutar följa dokument {0}"
@@ -28142,7 +28382,7 @@ msgstr "Slutar följa dokument {0}"
msgid "Unable to find DocType {0}"
msgstr "Kan inte hitta DocType {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Kan inte ladda kamera."
@@ -28158,7 +28398,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:180
+#: frappe/core/doctype/communication/email.py:204
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"
@@ -28179,20 +28419,20 @@ msgstr "Inaktivera Villkor"
msgid "Uncaught Exception"
msgstr "Ofångat Undantag"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Oförändrad"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Ångra"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Ångra Senaste Åtgärd"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Sluta Följa"
@@ -28268,9 +28508,10 @@ msgstr "Oläst Avisering Skickad"
msgid "Unsafe SQL query"
msgstr "Osäker SQL Fråga"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "Avmarkera Alla"
@@ -28303,11 +28544,11 @@ msgstr "Avregistrering Parameter"
msgid "Unsubscribed"
msgstr "Avregistrerad"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr "Funktion eller operatorn stöds ej: {0}"
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr "Utan stöd {0}: {1}"
@@ -28327,7 +28568,7 @@ msgstr "Packade upp {0} filer"
msgid "Unzipping files..."
msgstr "Packar upp filer..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Uppkommande Händelser för Idag"
@@ -28335,13 +28576,13 @@ msgstr "Uppkommande Händelser för Idag"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Uppdatera"
@@ -28412,7 +28653,7 @@ msgstr "Uppdatera Värde"
msgid "Update from Frappe Cloud"
msgstr "Uppdatera från Frappe Cloud"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "Uppdatera {0} poster"
@@ -28420,8 +28661,7 @@ msgstr "Uppdatera {0} poster"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Uppdaterad"
@@ -28433,11 +28673,11 @@ msgstr "Uppdaterad"
msgid "Updated To A New Version 🎉"
msgstr "Uppdaterad till ny Version 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Uppdaterad"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Uppdaterar"
@@ -28462,11 +28702,11 @@ msgstr "Uppdaterar Standard Inställningar"
msgid "Updating naming series options"
msgstr "Uppdaterar Namngivning Serie Alternativ"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "Uppdaterar relaterade fält..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "Uppdaterar {0}"
@@ -28474,12 +28714,12 @@ msgstr "Uppdaterar {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "Uppdaterar {0} av {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "Uppgradera plan"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28527,6 +28767,7 @@ msgstr "Veckans Första Arbetsdag "
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "Använd HTML"
@@ -28598,7 +28839,7 @@ msgstr "Använd om standard inställningar inte kan identifiera din data korrekt
msgid "Use of sub-query or function is restricted"
msgstr "Användning av underfråga eller funktion är begränsad"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Använd ny Urskrift Format Redigerare"
@@ -28632,9 +28873,8 @@ msgstr "Använd OAuth"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28661,11 +28901,11 @@ msgstr "Använd OAuth"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28801,7 +29041,7 @@ msgstr "Användare Bild"
msgid "User Invitation"
msgstr "Användare Inbjudan"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Användare Meny"
@@ -28817,19 +29057,19 @@ msgid "User Permission"
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/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Användare Behörigheter"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Användare Behörigheter"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "Användarbehörigheter används för att begränsa användare till specifika poster."
@@ -28902,7 +29142,7 @@ msgstr "Användare kan logga in med E-post eller Mobil Nummer"
msgid "User can login using Email id or User Name"
msgstr "Användare kan logga in med E-post eller Användare Namn"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "Användare finns inte "
@@ -28936,27 +29176,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Användare {0} kan inte tas bort"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Användare {0} kan inte inaktiveras"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Användare {0} kan inte byta namn"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "Användare {0} har inte tillgång till detta dokument"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Användare {0} har inte tillgång till DocType via roll tillstånd för dokument {1}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "Användare {0} har inte behörighet att skapa Arbetsyta."
@@ -28965,11 +29205,11 @@ 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:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "Användare {0} efterliknade som {1}"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Användare {0} är inaktiverad"
@@ -28994,18 +29234,17 @@ msgstr "Användare Info URI"
msgid "Username"
msgstr "Användarnamn"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Användare Namn {0} finns redan"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29076,7 +29315,7 @@ msgstr "Validera Frappe Mail Inställningar"
msgid "Validate SSL Certificate"
msgstr "Validera SSL Certifikat"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Validering Fel"
@@ -29105,7 +29344,7 @@ msgstr "Giltighet"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29132,15 +29371,19 @@ msgstr "Värde Ändrad"
msgid "Value To Be Set"
msgstr "Värde som ska Anges"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr "Värde för Lång"
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "Värde kan inte ändras för {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Värde kan inte vara negativ för"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "Värde kan inte vara negativ för {0}: {1}"
@@ -29152,7 +29395,7 @@ msgstr "Värde för ett kontroll fält kan vara antingen 0 eller 1"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "Värde för fält {0} är för lång i {1}. Längd ska vara mindre än {2} tecken"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "Värde för {0} kan inte vara en lista"
@@ -29177,7 +29420,13 @@ msgstr "Värdet \"None\" innebär allmän klient. I ett sådant fall ges inte Kl
msgid "Value to Validate"
msgstr "Värde att Validera"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr "Värde som ska anges när detta arbetsflöde tillstånd tillämpas. Använd vanlig text (t.ex. Godkänd) eller ett uttryck om \"Bedöm som Uttryck\" är aktiverad."
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Värde för hög"
@@ -29194,7 +29443,7 @@ msgstr "Värde {0} måste ha giltig varaktighet format: d h m s"
msgid "Value {0} must in {1} format"
msgstr "Värde {0} måste vara i {1} format"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Värde Ändrad "
@@ -29203,11 +29452,11 @@ msgstr "Värde Ändrad "
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Verifiering"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Verifiering Kod"
@@ -29215,7 +29464,7 @@ msgstr "Verifiering Kod"
msgid "Verification Link"
msgstr "Verifiering Länk"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "Verifieringskod e-post inte skickad. Kontakta Administratör."
@@ -29229,7 +29478,7 @@ msgid "Verified"
msgstr "Verifierad"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Verifiera"
@@ -29265,7 +29514,7 @@ msgstr "Visa"
msgid "View All"
msgstr "Visa Alla"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "Visa Audit Spår"
@@ -29277,7 +29526,7 @@ msgstr "Visa Doctype Behörigheter"
msgid "View File"
msgstr "Visa Fil"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Visa Full Logg"
@@ -29314,7 +29563,7 @@ msgstr "Visa Rapport"
msgid "View Settings"
msgstr "Visa Inställningar"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr "Visa Sidofält"
@@ -29323,14 +29572,11 @@ msgstr "Visa Sidofält"
msgid "View Switcher"
msgstr "Visa Omkopplare"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "Visa Webbplats"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr "Visa alla {0} användare"
@@ -29346,7 +29592,7 @@ msgstr "Visa rapport i Webbläsare"
msgid "View this in your browser"
msgstr "Visa detta i Webbläsare"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Visa din respons"
@@ -29382,7 +29628,7 @@ msgstr "Virtual DocType {} erfodrar statisk metod som heter {} hittade {}"
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "Virtual DocType {} erfodrar åsidosättande av instans metod som heter {} hittade {}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr "Virtuella tabeller måste vara virtuella fält"
@@ -29430,7 +29676,7 @@ msgstr "Lager"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "Varning"
@@ -29439,7 +29685,7 @@ msgstr "Varning"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "Varning: DATAFÖRLUST ÖVERHÄNGANDE! Om du fortsätter kommer följande databaskolumner att raderas permanent från doctype {0}:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Varning: Namngivning är inte angiven"
@@ -29523,7 +29769,7 @@ msgstr "Webbsida"
msgid "Web Page Block"
msgstr "Webbsida Avsnitt"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "Webbsida URL"
@@ -29620,7 +29866,7 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29675,7 +29921,7 @@ msgstr "Webbplats Skript"
msgid "Website Search Field"
msgstr "Webbplats Sökfält"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Webbplats Sökfält måste vara giltigt fältnamn"
@@ -29740,6 +29986,11 @@ msgstr "Webbplats Tema bild länk"
msgid "Website Themes Available"
msgstr "Tillgängliga Webbplatsteman"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr "Webbplats Användare"
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29827,15 +30078,15 @@ msgstr "Välkommen URL"
msgid "Welcome Workspace"
msgstr "Välkommen Arbetsyta"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "Välkomst E-post skickad"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Välkommen till {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Vad är Nytt"
@@ -29857,10 +30108,6 @@ msgstr "När dokument skickas med e-post, lagra det som PDF. Varning: Detta kan
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 "När filer laddas upp, tvinga fram användning av den webbaserade bildtagning. Om detta är avmarkerat är standard beteende att använda inbyggd mobilkamera när användning från en mobil upptäcks."
-#: 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 "När dokument Ändras efter Annullering och sparas får det ny nummer som är en version av det gamla numret."
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29878,7 +30125,7 @@ msgstr "Vilken Vy av tillhörande DocType ska denna genväg ta dig till?"
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Bredd"
@@ -29999,6 +30246,10 @@ msgstr "Arbetsflöde Detaljer"
msgid "Workflow Document State"
msgstr "Arbetsflöde Dokument Tillstånd"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr "Arbetsflöde Bedömning Fel"
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -30016,11 +30267,11 @@ msgstr "Arbetsflöde Tillstånd"
msgid "Workflow State Field"
msgstr "Arbetsflöde Tillstånd Fält"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "Arbetsflöde Tillstånd inte angiven"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "Arbetsflöde Tillstånd Övergång inte tillåten från {0} till {1}"
@@ -30028,7 +30279,7 @@ msgstr "Arbetsflöde Tillstånd Övergång inte tillåten från {0} till {1}"
msgid "Workflow States Don't Exist"
msgstr "Arbetsflödestillstånd existerar inte"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "Arbetsflöde Status"
@@ -30063,18 +30314,15 @@ msgstr "Arbetsflöde är uppdaterad"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Arbetsyta"
@@ -30101,7 +30349,6 @@ msgstr "Arbetsyta Länk"
#. 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 "Arbetsyta Ansvarig"
@@ -30115,27 +30362,15 @@ msgstr "Arbetsyta Nummer Kort"
msgid "Workspace Quick List"
msgstr "Arbetsyta Snabb Lista"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "Arbetsyta Inställningar"
-
-#. 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 "Arbetsyta Konfiguration Klar"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Arbetsyta Genväg"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr "Arbetsyta Sidofält"
@@ -30145,13 +30380,7 @@ msgstr "Arbetsyta Sidofält"
msgid "Workspace Sidebar Item"
msgstr "Arbetsyta Sidofält Artikel"
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr "Arbetsyta Synlighet"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "Arbetsyta {0} skapad"
@@ -30180,11 +30409,12 @@ msgstr "Slutför"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "Skriva"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "Fel Hämtning Från Värde"
@@ -30202,7 +30432,7 @@ msgstr "X Fält"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr "XMLHttpRequest Fel"
@@ -30217,7 +30447,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y Fält"
@@ -30265,10 +30495,14 @@ msgstr "Gul"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30277,10 +30511,10 @@ msgstr "Gul"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -30316,7 +30550,7 @@ msgstr "Du lade till 1 rad till {0}"
msgid "You added {0} rows to {1}"
msgstr "Du lade till {0} rader till {1}"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "Du är på väg att öppna extern länk. Klicka på länk igen för att bekräfta."
@@ -30324,7 +30558,7 @@ msgstr "Du är på väg att öppna extern länk. Klicka på länk igen för att
msgid "You are connected to internet."
msgstr "Ansluten till Nätverk."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "Du efterliknar som en annan användare."
@@ -30332,11 +30566,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:437
+#: frappe/permissions.py:443
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:426
+#: frappe/permissions.py:432
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}"
@@ -30359,7 +30593,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:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "Du har inte behörighet att exportera {} doctype"
@@ -30367,10 +30601,14 @@ 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:778
+#: frappe/public/js/frappe/views/communication.js:845
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/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr "Du har inte tillåtelse att uppdatera status för denna händelse."
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Du har inte behörighet att uppdatera denna Webb Formulär Dokument"
@@ -30387,7 +30625,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:464
+#: frappe/__init__.py:462
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"
@@ -30395,7 +30633,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
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."
@@ -30408,7 +30646,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "Du {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Du kan lägga till dynamiska egenskaper från dokumentet med Jinja mall."
@@ -30432,10 +30670,6 @@ msgstr "Du kan kopiera och klistra in {0} i webbläsare"
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "Du kan be ditt team att skicka inbjudan igen om ni fortfarande vill gå med."
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "Du kan ändra godkännda dokument genom att avbryta dem och sedan ändra dem."
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "Ändra lagring regel från {0}."
@@ -30490,7 +30724,7 @@ msgstr "Ange ett högt värde här om flera användare kommer att logga in från
msgid "You can try changing the filters of your report."
msgstr "Du kan försöka ändra Filter i Rapport."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Använd Anpassa Formulär för att ange nivåer på fält."
@@ -30520,6 +30754,10 @@ msgstr "Du annullerade detta dokument {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Du kan inte skapa Översikt Panel Diagram från Enskilda DocTypes"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr "Du kan inte dela `{0}` på {1} `{2}` eftersom du inte har `{0}` behörighet på `{1}`"
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "Du kan inte ändra 'Skrivskyddad' för fält {0}"
@@ -30546,7 +30784,6 @@ msgid "You changed {0} to {1}"
msgstr "Du ändrade {0} till {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "Du skapade detta"
@@ -30555,11 +30792,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "Du skapade detta dokument {0}"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "Du har inte Läs eller Val Behörigheter för {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
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 ."
@@ -30571,15 +30804,19 @@ msgstr "Du har inte behörighet att slutföra åtgärd"
msgid "You do not have import permission for {0}"
msgstr "Du har inte import behörighet för {0}"
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr "Du har inte behörighet att komma åt underordnad tabell fält: {0}"
+
+#: frappe/database/query.py:953
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:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "Du har inte behörighet att komma åt {0}: {1}."
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Du har inte behörighet att annullera alla länkade dokument."
@@ -30615,7 +30852,7 @@ msgstr "Du är utloggad nu."
msgid "You have hit the row size limit on database table: {0}"
msgstr "Du har nått gräns för radstorlek i databas tabell: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Du har inte anget någon värde. Fält kommer att vara tom."
@@ -30635,7 +30872,7 @@ msgstr "Visa {0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Du har inte lagt till några Översiktpanel Diagram eller Nummerkort än."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "Ingen {0} skapad än"
@@ -30644,7 +30881,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Du nådde gräns på grund av för många förfrågningar. Försök igen senare."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Du ändrade detta"
@@ -30660,12 +30896,12 @@ msgstr "Du måste vara inloggad för att använda detta formulär."
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:391
+#: frappe/model/document.py:390
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:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Du måste vara Arbetsyta Ansvarig för att ta bort allmän arbetsyta."
@@ -30673,7 +30909,7 @@ msgstr "Du måste vara Arbetsyta Ansvarig för att ta bort allmän arbetsyta."
msgid "You need to be Workspace Manager to edit this document"
msgstr "Du måste vara Arbetsyta Ansvarig för att redigera detta dokument"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Du måste vara systemanvändare för att komma åt denna sida."
@@ -30705,7 +30941,7 @@ msgstr "Du måste aktivera JavaScript för att App ska fungera."
msgid "You need to have \"Share\" permission"
msgstr "Du måste ha 'Delning' behörighet"
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Du måste installera pycups för att använda denna funktion!"
@@ -30725,7 +30961,7 @@ msgstr "Du behöver skrivbehörighet på {0} {1} för att slå samman"
msgid "You need write permission on {0} {1} to rename"
msgstr "Du behöver skrivbehörighet på {0} {1} för att ändra namn"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "Du behöver {0} behörighet för att hämta värden från {1} {2}"
@@ -30772,7 +31008,7 @@ msgstr "Du slutade följa detta dokument"
msgid "You viewed this"
msgstr "Du visade detta"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "Du kommer att omdirigeras till:"
@@ -30849,7 +31085,7 @@ msgstr "Din e-postadress"
msgid "Your exported report: {0}"
msgstr "Din exporterade rapport: {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Ditt formulär är uppdaterad"
@@ -30891,7 +31127,7 @@ msgstr "Din rapport håller på att skapas i bakgrunden. Du kommer att få e-pos
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."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "Webbplats genomgår underhåll eller uppdateras."
@@ -30913,7 +31149,7 @@ msgstr "Nollan innebär att skicka poster som uppdaterades närsomhelst"
msgid "[Action taken by {0}]"
msgstr "[Åtgärd vidtagen av {0}]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
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\""
@@ -30932,7 +31168,7 @@ msgstr "efter_infoga"
msgid "amend"
msgstr "ändra"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "och"
@@ -30955,7 +31191,7 @@ msgstr "Roll "
msgid "cProfile Output"
msgstr "cProfil Utdata"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "kalender"
@@ -30971,7 +31207,9 @@ msgid "canceled"
msgstr "annullerad"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "Chrome"
@@ -30995,7 +31233,7 @@ msgid "cyan"
msgstr "cyan"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "d"
@@ -31053,7 +31291,7 @@ msgstr "ta bort"
msgid "descending"
msgstr "fallande"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "dokument typ..., t.ex. kund"
@@ -31063,7 +31301,7 @@ msgstr "dokument typ..., t.ex. kund"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "t.ex. 'Hjälp', 'Försäljning', 'Anders Svensson'"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "t.ex. (55 + 434) / 4 eller = Math.sin (Math.PI / 2)..."
@@ -31105,12 +31343,16 @@ msgstr "emacs"
msgid "email"
msgstr "E-post"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "e-post inkorg"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "tom"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "tom"
@@ -31166,12 +31408,12 @@ 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:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "h"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "hub"
@@ -31186,6 +31428,20 @@ msgstr "ikon"
msgid "import"
msgstr "import"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr "är inaktiverad"
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr "är aktiverad"
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "användare@bolag"
@@ -31225,16 +31481,11 @@ msgid "long"
msgstr "lång"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "m"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr "macOS Launchpad"
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "sammanslog {0} in i {1}"
@@ -31253,15 +31504,15 @@ msgstr "mm-dd-yyyy"
msgid "mm/dd/yyyy"
msgstr "mm/dd/yyyy"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "modul namn..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "ny"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "ny typ av dokument"
@@ -31323,7 +31574,7 @@ msgstr "på_uppdatering"
msgid "on_update_after_submit"
msgstr "på_uppdatering_efter_godkänn"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "eller"
@@ -31396,7 +31647,7 @@ msgid "restored {0} as {1}"
msgstr "återställde {0} som {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -31480,11 +31731,11 @@ msgstr "sträng värde, dvs. {0} eller uid={0},ou=users,dc=example,dc=com"
msgid "submit"
msgstr "godkänn"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "tagg namn... t.ex. #tagg"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "text i doctype"
@@ -31582,11 +31833,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "när du klickar på element fokuserar det popover om det finns."
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (med patchad qt)."
@@ -31622,11 +31875,11 @@ msgstr "yyyy-mm-dd"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : type}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31643,8 +31896,8 @@ msgstr "{0} ({1}) (1 rad erfordras)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31657,13 +31910,13 @@ msgid "{0} Chart"
msgstr "{0} Diagram"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} Översikt Panel"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31697,11 +31950,11 @@ msgstr "{0} M"
msgid "{0} Map"
msgstr "{0} Karta"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} Namn"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} Ej Tillåtet att ändra {1} efter godkännande från {2} till {3}"
@@ -31709,7 +31962,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:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} Rapporter"
@@ -31722,11 +31975,11 @@ msgid "{0} Tree"
msgstr "{0} Träd Vy"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} Webbsida Visningar"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} tillagd"
@@ -31788,7 +32041,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} annullerade detta dokument {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
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."
@@ -31817,16 +32070,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} ändrade {1} till {2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0} innehåller ogiltigt Hämta Från uttryck, Hämta från kan inte vara självrefererande."
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr "{0} innehåller {1}"
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} skapades"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "{0} skapade detta"
@@ -31843,11 +32099,19 @@ msgstr "{0} d"
msgid "{0} days ago"
msgstr "{0} dagar sedan"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr "{0} innehåller inte {1}"
+
#: 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} finns inte på rad {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr "{0} är lika med {1}"
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
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"
@@ -31872,7 +32136,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/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr "{0} har ogiltig retur anteckning: {1}"
@@ -31893,7 +32157,11 @@ msgstr "{0} om du inte omdirigeras inom {1} sekunder"
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} på rad {1} inte kan ha både URL och under artiklar"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr "{0} är underordnad till {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} är erfordrad fält"
@@ -31901,7 +32169,15 @@ msgstr "{0} är erfordrad fält"
msgid "{0} is a not a valid zip file"
msgstr "{0} är inte giltig zip fil"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr "{0} är efter {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr "{0} är överordnad till {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} är ogiltig Data Fält."
@@ -31909,6 +32185,15 @@ msgstr "{0} är ogiltig Data Fält."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} är ogiltig E-post i 'Mottagare'"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr "{0} är före {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr "{0} är mellan {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} är mellan {1} och {2}"
@@ -31918,22 +32203,36 @@ msgstr "{0} är mellan {1} och {2}"
msgid "{0} is currently {1}"
msgstr "{0} är för närvarande {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr "{0} är inaktiverad"
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr "{0} är aktiverad"
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} är lika med {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} är större än eller lika med {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} är större än {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} är mindre än eller lika med {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} är mindre än {1}"
@@ -31946,10 +32245,14 @@ msgstr "{0} är som {1}"
msgid "{0} is mandatory"
msgstr "{0} är erfodrad"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "{0} är inte undertabell till {1}"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr "{0} är inte underordnad 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}"
@@ -31966,12 +32269,12 @@ msgstr "{0} är inte giltig Kalender. Omdirigerar till standard Kalender."
msgid "{0} is not a valid Cron expression."
msgstr "{0} är inte giltigt Cron uttryck"
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} är inte en giltig DocType för Dynamisk Länk"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} är inte giltig E-post"
@@ -31979,23 +32282,23 @@ 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:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} är inte giltigt Namn"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} är inte giltigt Telefon Nummer"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
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:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} är inte en giltig överordnad DocType för {1}"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} är inte ett giltigt överordnat fält för {1}"
@@ -32011,6 +32314,11 @@ msgstr "{0} är inte en zip-fil"
msgid "{0} is not an allowed role for {1}"
msgstr "{0} är inte en tillåten roll för {1}"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr "{0} är inte överordnad till {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} är inte lika med {1}"
@@ -32019,10 +32327,12 @@ msgstr "{0} är inte lika med {1}"
msgid "{0} is not like {1}"
msgstr "{0} är inte som {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} är inte en av {1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} är inte angiven"
@@ -32031,36 +32341,50 @@ msgstr "{0} är inte angiven"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} är nu standard utskrift format för {1} DocType"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr "{0} är på eller efter {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr "{0} är på eller före {1}"
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} är en av {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} erfordras"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} är angiven"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} är inom {1}"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr "{0} är {1}"
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} artiklar valda"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} efterliknade som du. De gav detta skäl: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} redigerade detta"
@@ -32088,35 +32412,35 @@ msgstr "{0} minuter sedan"
msgid "{0} months ago"
msgstr "{0} månader sedan"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} måste vara efter {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} måste börja med '{1}'"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} måste vara lika med '{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} måste inte vara någon av {1}"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} måste vara en av {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} måste anges först"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} måste vara unik"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} måste vara {1} {2}"
@@ -32133,11 +32457,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} Ej Tillåtet att ändra namn på"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} av {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} av {1} ({2} rader med underordnade)"
@@ -32166,7 +32490,7 @@ msgstr "{0} poster sparas i {1} dagar."
msgid "{0} records deleted"
msgstr "{0} poster borttagna"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} poster kommer att exporteras"
@@ -32191,7 +32515,7 @@ msgstr "{0} tog bort {1} rader från {2}"
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:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} rad #{1}:"
@@ -32205,7 +32529,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0} rader till {1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} sparad"
@@ -32213,7 +32537,7 @@ msgstr "{0} sparad"
msgid "{0} self assigned this task: {1}"
msgstr "{0} självtilldelade denna uppgift: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} delade ett dokument {1} {2} med dig"
@@ -32281,7 +32605,7 @@ msgstr "{0} w"
msgid "{0} weeks ago"
msgstr "{0} veckor sedan"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr "{0} med {1} roll"
@@ -32293,7 +32617,7 @@ msgstr "{0} y"
msgid "{0} years ago"
msgstr "{0} år sedan"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} lagd till"
@@ -32301,11 +32625,11 @@ msgstr "{0} {1} lagd till"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} är lagd till i Översikt Panel {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} finns redan"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} kan inte vara \"{2}\". Det kan vara en av följande: \"{3}\""
@@ -32317,11 +32641,11 @@ msgstr "{0} {1} kan inte vara undernod då den har undernoder"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} finns inte, välj ett nytt mål för att slå samman"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
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:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} hittades inte"
@@ -32329,87 +32653,59 @@ msgstr "{0} {1} hittades inte"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Godkänd Post kan inte tas bort. Du måste {2} Annullera {3} det först."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, Rad {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} komplett | Lämna denna flik öppen tills den är klar."
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) kommer att avkortas, eftersom max tillåtna tecken är {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Kan inte Ändra utan att Annullera"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Kan inte tilldela Ändra om den inte kan Godkännas"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Kan inte tilldela Godkänd om inte kan Godkännas"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Kan inte ange Annullerad utan att Godkänna"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Kan inte ange Import utan att Skapa"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Kan inte ange Godkänd, Annullerad eller Ändrad utan att Skriva"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Kan inte ange import eftersom {1} inte kan importeras"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Kunde inte bifoga ny återkommande dokument. Aktivera {1} i Utskrift Inställningar för att aktivera bifogning av dokument i E-post meddelande för återkommande dokument"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: Fält '{1}' kan inte anges som unikt eftersom det inte har unika värden"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: Fält {1} på rad {2} kan inte döljas och erfordras utan standard"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: Fält {1} av typ {2} kan inte erfordras"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: Fältnamn {1} visas flera gånger i rader {2}"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: Fälttyp {1} för {2} kan inte vara unik"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Inga grundläggande behörigheter angivna"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Endast en regel tillåten med samma Roll, Nivå och {1}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Alternativ måste vara giltig DocType för Fält {1} på rad {2}"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: Alternativ som erfordras för Länk eller Tabell Typ {1} på rad {2}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Alternativ {1} måste vara lika som doctype namn {2} för fält {3}"
@@ -32417,15 +32713,59 @@ msgstr "{0}: Alternativ {1} måste vara lika som doctype namn {2} för fält {3}
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Andra behörighet regler kan också gälla"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Behörighet på nivå 0 måste anges före högre nivåer anges"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: 'Ändra' behörighet kan inte beviljas för ej godkännbar DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: \"Ändra\" behörighet kan inte beviljas utan \"Skapa\" behörighet."
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr "{0}: \"Annullera\" behörighet kan inte beviljas utan \"Godkänn\" behörighet."
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: 'Export' behörighet har tagits bort eftersom den inte kan beviljas för 'singel' DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr "{0}: 'Import' behörighet kan inte beviljas för ej importerbar DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr "{0}: 'Import' behörighet kan inte beviljas utan 'Skapa' behörighet."
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: 'Import' behörighet har tagits bort eftersom den inte kan beviljas för 'singel' DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr "{0}: 'Rapport' behörighet har tagits bort eftersom den inte kan beviljas för 'singel' DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr "{0}: \"Godkänn\" behörighet kan inte beviljas för ej godkännbar DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr "{0}: \"Godkänn\", \"Annullera\" och \"Ändra\" behörigheter kan inte beviljas utan \"Skriv\" behörighet."
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: Öka gräns för fältet vid behov via {1}"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr "{0}: fält namn kan inte anges som reserverad fält {1} i DocType"
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: fältnamn kan inte anges för reserverad sökord {1}"
@@ -32438,15 +32778,15 @@ 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:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} mot {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}: Fält typ {1} för {2} kan inte indexeras"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} sparad"
@@ -32466,11 +32806,11 @@ msgstr "{count} rad vald"
msgid "{count} rows selected"
msgstr "{count} rader valda"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} är inte giltigt fältnamn mönster. Det borde vara {{field_name}}."
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Klar"
diff --git a/frappe/locale/th.po b/frappe/locale/th.po
index 57e97c7777..78df550c84 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:24\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:51\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr ""
msgid "\"Team Members\" or \"Management\""
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr ""
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. และผู้ร่วมพ
msgid "<head> HTML"
msgstr ""
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "ในการค้นหาระดับโลก ไม่อนุญาตสำหรับฟิลด์ {0} ของประเภท {1}"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "ในการค้นหาระดับโลก ไม่อนุญาตสำหรับประเภท {0} ในแถว {1}"
@@ -90,19 +90,19 @@ msgstr "ในมุมมองรายการ ไม่อนุญาต
msgid "'Recipients' not specified"
msgstr "ผู้รับ ไม่ได้ระบุ"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' ไม่ใช่ URL ที่ถูกต้อง"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' ไม่อนุญาตสำหรับประเภท {1} ในแถว {2}"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(จำเป็น)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0 คือสูงสุด"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = จริง & 0 = เท็จ"
@@ -158,7 +158,7 @@ msgstr "1 วัน"
msgid "1 Google Calendar Event synced."
msgstr "1 เหตุการณ์ Google Calendar ซิงค์แล้ว"
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 รายงาน"
@@ -189,7 +189,7 @@ msgstr "1 เดือนที่แล้ว"
msgid "1 of 2"
msgstr "1 จาก 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 รายการจะถูกส่งออก"
@@ -587,7 +587,7 @@ msgstr ""
msgid ">="
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
@@ -601,7 +601,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr ""
@@ -920,7 +920,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr ""
@@ -969,13 +969,13 @@ msgstr ""
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr ""
@@ -1032,20 +1032,20 @@ msgstr ""
msgid "Activity Log"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr ""
@@ -1053,11 +1053,11 @@ msgstr ""
msgid "Add / Update"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1077,11 +1077,15 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1090,8 +1094,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1135,11 +1139,7 @@ msgstr ""
msgid "Add Indexes"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr ""
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr ""
@@ -1152,17 +1152,13 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr ""
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr ""
@@ -1181,16 +1177,16 @@ msgstr ""
msgid "Add Subscribers"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr ""
@@ -1240,19 +1236,19 @@ msgstr ""
msgid "Add a new section"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr ""
@@ -1270,6 +1266,10 @@ msgstr ""
msgid "Add field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1283,6 +1283,10 @@ msgstr ""
msgid "Add page break"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr ""
@@ -1301,7 +1305,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr ""
@@ -1341,8 +1345,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr ""
@@ -1432,7 +1436,7 @@ msgstr ""
msgid "Adds a custom field to a DocType"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr ""
@@ -1459,15 +1463,15 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr ""
@@ -1484,8 +1488,8 @@ msgstr ""
msgid "Advanced Control"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr ""
@@ -1566,7 +1570,7 @@ msgstr ""
msgid "Alert"
msgstr ""
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1590,6 +1594,15 @@ msgstr ""
msgid "Align Value"
msgstr ""
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1622,7 +1635,7 @@ msgstr ""
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr ""
@@ -1634,11 +1647,11 @@ msgstr ""
msgid "All Records"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr ""
@@ -1949,7 +1962,7 @@ msgstr ""
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -1983,13 +1996,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr ""
@@ -2084,7 +2145,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr ""
@@ -2097,7 +2158,7 @@ msgstr ""
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2148,7 +2209,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr ""
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr ""
@@ -2161,7 +2222,7 @@ msgstr ""
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2211,11 +2272,11 @@ msgstr ""
msgid "App Name (Client Name)"
msgstr ""
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr ""
@@ -2289,7 +2350,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2298,6 +2359,10 @@ msgstr ""
msgid "Apply Filters"
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2337,7 +2402,7 @@ msgstr ""
msgid "Apply to all Documents Types"
msgstr ""
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr ""
@@ -2345,18 +2410,11 @@ msgstr ""
msgid "Approval Required"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2379,16 +2437,16 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr ""
@@ -2407,19 +2465,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr "คุณแน่ใจหรือไม่ว่าต้องการละทิ้งการเปลี่ยนแปลง?"
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "คุณแน่ใจหรือไม่ว่าต้องการสร้างรายงานใหม่?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "คุณแน่ใจหรือไม่ว่าต้องการรวม {0} กับ {1}?"
@@ -2439,7 +2497,7 @@ msgstr "คุณแน่ใจหรือไม่ว่าต้องกา
msgid "Are you sure you want to remove all failed jobs?"
msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบงานที่ล้มเหลวทั้งหมด?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบตัวกรอง {0}?"
@@ -2488,7 +2546,7 @@ msgstr "ตามคำขอของคุณ บัญชีและข้
msgid "Ask"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr ""
@@ -2501,7 +2559,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2551,7 +2609,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2640,7 +2698,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2665,7 +2723,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr ""
@@ -2763,19 +2821,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr ""
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr ""
@@ -3100,11 +3165,6 @@ msgstr ""
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3210,17 +3270,12 @@ msgstr ""
msgid "Background Image"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr ""
@@ -3333,8 +3388,8 @@ msgstr ""
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr ""
@@ -3358,6 +3413,8 @@ msgstr ""
msgid "Basic Info"
msgstr ""
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3427,7 +3484,7 @@ msgstr ""
msgid "Beta"
msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr ""
@@ -3555,18 +3612,11 @@ msgstr ""
msgid "Brand Image"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr ""
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
@@ -3637,7 +3687,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr ""
@@ -3658,7 +3708,7 @@ msgstr ""
msgid "Bulk Update"
msgstr ""
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3670,7 +3720,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -3819,7 +3869,7 @@ msgstr "แคช"
msgid "Cache Cleared"
msgstr "ล้างแคชแล้ว"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "คำนวณ"
@@ -3869,12 +3919,12 @@ msgid "Callback Title"
msgstr "ชื่อการเรียกกลับ"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "กล้อง"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3886,11 +3936,11 @@ msgstr "แคมเปญ"
msgid "Campaign Description (Optional)"
msgstr "คำอธิบายแคมเปญ (ไม่บังคับ)"
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -3900,7 +3950,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -3922,7 +3972,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3932,11 +3982,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr ""
@@ -3948,7 +3998,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3981,7 +4031,7 @@ msgstr ""
msgid "Cancelling documents"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr ""
@@ -3989,7 +4039,7 @@ msgstr ""
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -3997,7 +4047,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4017,11 +4067,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4033,7 +4083,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4041,10 +4091,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr ""
@@ -4053,15 +4107,15 @@ msgstr ""
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4072,11 +4126,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4104,7 +4158,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4117,7 +4171,7 @@ msgstr ""
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr ""
@@ -4133,15 +4187,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4153,7 +4207,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr ""
@@ -4178,7 +4232,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr ""
@@ -4198,7 +4252,7 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
@@ -4212,7 +4266,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr ""
@@ -4241,17 +4295,19 @@ msgstr ""
msgid "Category Name"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4339,7 +4395,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4404,6 +4460,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr ""
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr ""
@@ -4455,7 +4517,7 @@ msgstr ""
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4465,7 +4527,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4473,7 +4535,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4493,10 +4555,6 @@ msgstr ""
msgid "Choose authentication method to be used by all users"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr ""
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4513,11 +4571,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr ""
@@ -4525,7 +4583,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4551,7 +4609,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4619,7 +4677,7 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
@@ -4727,7 +4785,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr ""
@@ -4737,7 +4795,7 @@ msgstr ""
msgid "Close Condition"
msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4793,12 +4851,12 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4855,7 +4913,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4866,7 +4924,7 @@ msgstr ""
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
-#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4911,11 +4969,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -4958,7 +5016,7 @@ msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5105,12 +5163,12 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5125,7 +5183,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr ""
@@ -5216,7 +5274,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5305,8 +5363,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5424,7 +5482,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5493,11 +5551,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "คัดลอกไปยังคลิปบอร์ดแล้ว"
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5509,12 +5567,12 @@ msgstr "คัดลอกลิงก์"
msgid "Copy embed code"
msgstr "คัดลอกรหัสฝัง"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "คัดลอกข้อผิดพลาดไปยังคลิปบอร์ด"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "คัดลอกไปยังคลิปบอร์ด"
@@ -5535,7 +5593,7 @@ msgstr "ไม่สามารถปรับแต่ง DocTypes หลั
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "โมดูลหลัก {0} ไม่สามารถค้นหาใน Global Search ได้"
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "เวอร์ชันที่ถูกต้อง:"
@@ -5543,7 +5601,7 @@ msgstr "เวอร์ชันที่ถูกต้อง:"
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr ""
@@ -5551,11 +5609,11 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5563,7 +5621,7 @@ msgstr ""
msgid "Could not start up:"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr ""
@@ -5615,7 +5673,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
@@ -5642,15 +5700,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
@@ -5663,13 +5722,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr ""
@@ -5703,7 +5762,7 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
@@ -5716,7 +5775,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5732,18 +5791,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5760,7 +5819,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr ""
@@ -5779,13 +5838,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr ""
@@ -5979,7 +6046,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr ""
@@ -5990,15 +6057,15 @@ msgstr ""
msgid "Custom Field"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr ""
@@ -6024,7 +6091,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr ""
@@ -6070,7 +6137,7 @@ msgstr ""
msgid "Custom Report"
msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr ""
@@ -6095,11 +6162,11 @@ msgstr ""
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6122,26 +6189,26 @@ msgstr ""
msgid "Customization"
msgstr "การปรับแต่ง"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "การปรับแต่งถูกละทิ้ง"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "รีเซ็ตการปรับแต่ง"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "การปรับแต่งสำหรับ {0} ถูกส่งออกไปยัง:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "ปรับแต่ง"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "ปรับแต่ง"
@@ -6238,7 +6305,7 @@ msgstr "รายวัน"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "ส่งสรุปเหตุการณ์รายวันสำหรับกิจกรรมในปฏิทินที่ตั้งค่าการเตือน"
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "กิจกรรมรายวันควรเสร็จสิ้นในวันเดียวกัน"
@@ -6295,8 +6362,8 @@ msgstr "ธีมมืด"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "แดชบอร์ด"
@@ -6546,7 +6613,7 @@ msgstr "วันก่อน"
msgid "Days Before or After"
msgstr "วันก่อนหรือหลัง"
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "เกิดการล็อกตาย"
@@ -6743,11 +6810,11 @@ msgstr "พื้นที่ทำงานเริ่มต้น"
msgid "Default display currency"
msgstr "สกุลเงินแสดงผลเริ่มต้น"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "ค่าเริ่มต้นสำหรับฟิลด์ประเภท 'Check' {0} ต้องเป็น '0' หรือ '1'"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "ค่าดีฟอลต์สำหรับ {0} ต้องอยู่ในรายการตัวเลือก"
@@ -6804,11 +6871,12 @@ msgstr "ล่าช้า"
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6816,7 +6884,7 @@ msgstr "ล่าช้า"
msgid "Delete"
msgstr "ลบ"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "ลบ"
@@ -6830,10 +6898,6 @@ msgstr "ลบ"
msgid "Delete Account"
msgstr "ลบบัญชี"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "ลบทั้งหมด"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6863,7 +6927,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "ลบแท็บ"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "ลบและสร้างใหม่"
@@ -6891,6 +6963,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "ลบทั้งแท็บพร้อมฟิลด์"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6905,16 +6981,20 @@ msgstr "ลบแท็บ"
msgid "Delete this record to allow sending to this email address"
msgstr "ลบบันทึกนี้เพื่ออนุญาตให้ส่งไปยังที่อยู่อีเมลนี้"
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "ลบ {0} รายการอย่างถาวร?"
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "ลบ {0} รายการอย่างถาวร?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6945,7 +7025,7 @@ msgstr "ลบชื่อแล้ว"
msgid "Deleted all documents successfully"
msgstr "ลบเอกสารทั้งหมดสำเร็จแล้ว"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "ลบแล้ว!"
@@ -7052,6 +7132,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7134,16 +7215,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7173,11 +7259,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr ""
@@ -7325,10 +7411,11 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr ""
@@ -7342,11 +7429,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "ยกเลิก"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7420,11 +7507,11 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7432,7 +7519,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7487,7 +7574,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7510,7 +7596,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7523,7 +7608,7 @@ msgstr ""
msgid "DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr ""
@@ -7591,10 +7676,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr ""
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7612,15 +7693,15 @@ msgstr ""
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr ""
@@ -7634,7 +7715,7 @@ msgstr ""
msgid "Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7673,7 +7754,7 @@ msgstr ""
msgid "Document Follow"
msgstr ""
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr ""
@@ -7696,19 +7777,19 @@ msgstr ""
msgid "Document Links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7727,8 +7808,8 @@ msgstr ""
msgid "Document Name"
msgstr ""
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7746,7 +7827,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr ""
@@ -7850,7 +7931,7 @@ msgstr ""
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7870,11 +7951,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr "ต้องการประเภทเอกสารและฟังก์ชันเพื่อสร้างการ์ดตัวเลข"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "ประเภทเอกสารไม่สามารถนำเข้าได้"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "ประเภทเอกสารไม่สามารถส่งได้"
@@ -7903,27 +7984,27 @@ msgid "Document Types and Permissions"
msgstr "ประเภทเอกสารและสิทธิ์"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "เอกสารถูกปลดล็อก"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "การติดตามเอกสารไม่ได้เปิดใช้งานสำหรับผู้ใช้นี้"
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "เอกสารถูกยกเลิกแล้ว"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "เอกสารถูกส่งแล้ว"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "เอกสารอยู่ในสถานะร่าง"
@@ -7935,11 +8016,11 @@ msgstr "เอกสารสามารถแก้ไขได้เฉพา
msgid "Document not Relinked"
msgstr "เอกสารไม่ได้เชื่อมโยงใหม่"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "เอกสารถูกเปลี่ยนชื่อจาก {0} เป็น {1}"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "การเปลี่ยนชื่อเอกสารจาก {0} เป็น {1} ถูกจัดคิวแล้ว"
@@ -7955,10 +8036,6 @@ msgstr "เอกสาร {0} ถูกกู้คืนแล้ว"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "เอกสาร {0} ถูกตั้งค่าเป็นสถานะ {1} โดย {2}"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "เอกสาร {0} {1} ไม่มีอยู่"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8096,7 +8173,7 @@ msgstr "ดาวน์โหลดลิงก์"
msgid "Download PDF"
msgstr "ดาวน์โหลด PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "ดาวน์โหลดรายงาน"
@@ -8180,7 +8257,7 @@ msgid "Due Date Based On"
msgstr "วันที่ครบกำหนดตาม"
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "ซ้ำ"
@@ -8188,19 +8265,15 @@ msgstr "ซ้ำ"
msgid "Duplicate Entry"
msgstr "รายการซ้ำ"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "ชื่อฟิลเตอร์ซ้ำ"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "ชื่อซ้ำ"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "แถวซ้ำ"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "แถวปัจจุบันซ้ำ"
@@ -8208,6 +8281,18 @@ msgstr "แถวปัจจุบันซ้ำ"
msgid "Duplicate field"
msgstr "ฟิลด์ซ้ำ"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8295,9 +8380,10 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8308,7 +8394,7 @@ msgstr ""
msgid "Edit"
msgstr "แก้ไข"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "แก้ไข"
@@ -8318,7 +8404,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "แก้ไข"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "แก้ไข"
@@ -8339,15 +8425,15 @@ msgstr "แก้ไขแผนภูมิ"
msgid "Edit Custom Block"
msgstr "แก้ไขบล็อกที่กำหนดเอง"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "แก้ไข HTML ที่กำหนดเอง"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "แก้ไข DocType"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "แก้ไข DocType"
@@ -8361,7 +8447,7 @@ msgstr "แก้ไขที่มีอยู่"
msgid "Edit Filters"
msgstr "แก้ไขฟิลเตอร์"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "แก้ไขฟิลเตอร์"
@@ -8374,7 +8460,7 @@ msgstr "แก้ไขส่วนท้าย"
msgid "Edit Format"
msgstr "แก้ไขรูปแบบ"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr "แก้ไขฟอร์มเต็ม"
@@ -8432,7 +8518,7 @@ msgstr "แก้ไขรายการด่วน"
msgid "Edit Shortcut"
msgstr "แก้ไขทางลัด"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8455,11 +8541,11 @@ msgstr "โหมดแก้ไข"
msgid "Edit the {0} Doctype"
msgstr "แก้ไข Doctype {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "แก้ไขเพื่อเพิ่มเนื้อหา"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "แก้ไขคำตอบของคุณ"
@@ -8515,6 +8601,7 @@ msgstr "ตัวเลือกองค์ประกอบ"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8530,12 +8617,14 @@ msgstr "ตัวเลือกองค์ประกอบ"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8570,7 +8659,7 @@ msgstr "บัญชีอีเมลถูกปิดใช้งาน"
msgid "Email Account Name"
msgstr "ชื่อบัญชีอีเมล"
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "เพิ่มบัญชีอีเมลหลายครั้ง"
@@ -8768,7 +8857,7 @@ msgstr "อีเมลถูกย้ายไปที่ถังขยะ"
msgid "Email is mandatory to create User Email"
msgstr "อีเมลเป็นสิ่งจำเป็นในการสร้างอีเมลผู้ใช้"
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "ไม่ได้ส่งอีเมลถึง {0} (ยกเลิกการสมัคร / ปิดใช้งาน)"
@@ -8807,7 +8896,7 @@ msgstr "อีเมลจะถูกส่งพร้อมกับการ
msgid "Embed code copied"
msgstr "คัดลอกรหัสฝังแล้ว"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -8815,7 +8904,7 @@ msgstr ""
msgid "Empty column"
msgstr "คอลัมน์ว่างเปล่า"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9134,11 +9223,11 @@ msgstr "ตรวจสอบให้แน่ใจว่าเส้นทา
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "ป้อน Client Id และ Client Secret ในการตั้งค่า Google"
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "ป้อนรหัสที่แสดงในแอป OTP"
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9165,6 +9254,10 @@ msgstr ""
msgid "Enter folder name"
msgstr "ป้อนชื่อโฟลเดอร์"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9195,7 +9288,7 @@ msgstr "ชื่อเอนทิตี"
msgid "Entity Type"
msgstr "ประเภทเอนทิตี"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "เท่ากับ"
@@ -9229,7 +9322,7 @@ msgstr "เท่ากับ"
msgid "Error"
msgstr "ข้อผิดพลาด"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "ข้อผิดพลาด"
@@ -9244,12 +9337,12 @@ msgstr "บันทึกข้อผิดพลาด"
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr "ข้อความข้อผิดพลาด"
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ""
@@ -9287,15 +9380,15 @@ msgstr "ข้อผิดพลาดในการแจ้งเตือน
msgid "Error in print format on line {0}: {1}"
msgstr "ข้อผิดพลาดในรูปแบบการพิมพ์ในบรรทัด {0}: {1}"
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9311,15 +9404,15 @@ msgstr "ข้อผิดพลาดขณะประเมินการแ
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "ข้อผิดพลาด: ข้อมูลหายไปในตาราง {0}"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "ข้อผิดพลาด: ค่าหายไปสำหรับ {0}: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "ข้อผิดพลาด: {0} แถว #{1}: ค่าหายไปสำหรับ: {2}"
@@ -9329,6 +9422,12 @@ msgstr "ข้อผิดพลาด: {0} แถว #{1}: ค่าหาย
msgid "Errors"
msgstr "ข้อผิดพลาด"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9347,6 +9446,11 @@ msgstr "หมวดหมู่เหตุการณ์"
msgid "Event Frequency"
msgstr "ความถี่ของเหตุการณ์"
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9372,11 +9476,11 @@ msgstr "เหตุการณ์ซิงค์กับ Google Calendar แ
msgid "Event Type"
msgstr "ประเภทเหตุการณ์"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "เหตุการณ์"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "เหตุการณ์ในปฏิทินวันนี้"
@@ -9398,6 +9502,7 @@ msgid "Exact Copies"
msgstr "สำเนาที่เหมือนกัน"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr "ตัวอย่าง"
@@ -9468,7 +9573,7 @@ msgstr "กำลังดำเนินการโค้ด"
msgid "Executing..."
msgstr "กำลังดำเนินการ..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "เวลาการดำเนินการ: {0} วินาที"
@@ -9489,21 +9594,21 @@ msgstr "บทบาทที่มีอยู่"
msgid "Expand"
msgstr "ขยาย"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "ขยาย"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "ขยายทั้งหมด"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "การทดลอง"
@@ -9555,20 +9660,21 @@ msgstr "เวลาหมดอายุของหน้าภาพ QR Code"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "ส่งออก"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "ส่งออก"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "ส่งออก 1 รายการ"
@@ -9607,11 +9713,11 @@ msgstr "ส่งออกรายงาน: {0}"
msgid "Export Type"
msgstr "ประเภทการส่งออก"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "ส่งออกแถวที่ตรงกันทั้งหมดหรือไม่?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "ส่งออกแถว {0} ทั้งหมดหรือไม่?"
@@ -9627,6 +9733,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr "ไม่อนุญาตให้ส่งออก คุณต้องมีบทบาท {0} เพื่อส่งออก"
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9639,7 +9749,7 @@ msgstr "ส่งออกข้อมูลโดยไม่มีบันท
msgid "Export without main header"
msgstr "ส่งออกโดยไม่มีส่วนหัวหลัก"
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "ส่งออก {0} รายการ"
@@ -9679,7 +9789,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "ลิงก์ภายนอก"
@@ -9728,12 +9838,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr ""
@@ -9796,7 +9911,7 @@ msgstr "ล้มเหลวในการสร้างตัวอย่า
msgid "Failed to get method for command {0} with {1}"
msgstr "ล้มเหลวในการดึงวิธีการสำหรับคำสั่ง {0} ด้วย {1}"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "ล้มเหลวในการดึงวิธีการ {0} ด้วย {1}"
@@ -9808,7 +9923,7 @@ msgstr "ล้มเหลวในการดึงข้อมูลไซต
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "ล้มเหลวในการนำเข้า virtual doctype {}, มีไฟล์ตัวควบคุมอยู่หรือไม่?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "ล้มเหลวในการปรับแต่งภาพ: {0}"
@@ -9824,7 +9939,7 @@ msgstr "ล้มเหลวในการแสดงหัวเรื่อ
msgid "Failed to request login to Frappe Cloud"
msgstr "ล้มเหลวในการร้องขอเข้าสู่ระบบ Frappe Cloud"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "ล้มเหลวในการส่งอีเมลที่มีหัวเรื่อง:"
@@ -9866,7 +9981,7 @@ msgstr "ไอคอนโปรด"
msgid "Fax"
msgstr "แฟกซ์"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "ข้อเสนอแนะ"
@@ -9926,8 +10041,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9937,7 +10052,7 @@ msgstr ""
msgid "Field \"route\" is mandatory for Web Views"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -9945,7 +10060,7 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr ""
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -9954,7 +10069,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10002,7 +10117,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10010,11 +10125,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10036,7 +10151,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10045,7 +10160,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10053,7 +10168,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10069,7 +10184,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10117,7 +10232,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10141,7 +10256,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10217,12 +10332,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10249,12 +10364,17 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10273,7 +10393,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr ""
@@ -10282,11 +10402,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10305,10 +10425,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10332,7 +10456,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10363,10 +10487,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10384,14 +10504,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10479,11 +10599,11 @@ msgstr "ความแม่นยำของการลอยตัว"
msgid "Fold"
msgstr "พับ"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "การพับไม่สามารถอยู่ที่ส่วนท้ายของฟอร์มได้"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "การพับต้องมาก่อนการแบ่งส่วน"
@@ -10512,12 +10632,12 @@ msgstr "โฟลเดอร์ {0} ไม่ว่างเปล่า"
msgid "Folio"
msgstr "โฟลิโอ"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "ติดตาม"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "ตามด้วย"
@@ -10525,7 +10645,7 @@ msgstr "ตามด้วย"
msgid "Following Report Filters have missing values:"
msgstr "ตัวกรองรายงานต่อไปนี้มีค่าที่ขาดหายไป:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "เอกสารต่อไปนี้ {0}"
@@ -10533,7 +10653,7 @@ msgstr "เอกสารต่อไปนี้ {0}"
msgid "Following fields are missing:"
msgstr "ฟิลด์ต่อไปนี้ขาดหายไป:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "ฟิลด์ต่อไปนี้มีค่าที่ไม่ถูกต้อง:"
@@ -10541,7 +10661,7 @@ msgstr "ฟิลด์ต่อไปนี้มีค่าที่ไม่
msgid "Following fields have missing values"
msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป:"
@@ -10610,7 +10730,7 @@ msgstr "รายละเอียดส่วนท้าย"
msgid "Footer HTML"
msgstr "HTML ส่วนท้าย"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "HTML ส่วนท้ายตั้งค่าจากไฟล์แนบ {0}"
@@ -10647,7 +10767,7 @@ msgstr "แม่แบบส่วนท้าย"
msgid "Footer Template Values"
msgstr "ค่าแม่แบบส่วนท้าย"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "ส่วนท้ายอาจมองไม่เห็นเนื่องจากตัวเลือก {0} ถูกปิดใช้งาน"
@@ -10680,15 +10800,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10712,20 +10823,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10753,7 +10860,7 @@ msgstr "สำหรับที่อยู่หลายรายการ
msgid "For updating, you can update only selective columns."
msgstr "สำหรับการอัปเดต คุณสามารถอัปเดตเฉพาะคอลัมน์ที่เลือกได้"
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "สำหรับ {0} ที่ระดับ {1} ใน {2} ในแถว {3}"
@@ -10803,7 +10910,8 @@ msgstr "ลืมรหัสผ่าน?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "ฟอร์ม"
@@ -10982,7 +11090,7 @@ msgstr "วันศุกร์"
msgid "From"
msgstr "จาก"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "จาก"
@@ -11003,7 +11111,7 @@ msgstr "จากวันที่"
msgid "From Date Field"
msgstr "ฟิลด์จากวันที่"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "จากประเภทเอกสาร"
@@ -11044,7 +11152,7 @@ msgstr "เต็ม"
msgid "Full Name"
msgstr "ชื่อเต็ม"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "เต็มหน้า"
@@ -11057,7 +11165,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "ฟังก์ชัน"
@@ -11066,11 +11174,11 @@ msgstr "ฟังก์ชัน"
msgid "Function Based On"
msgstr "ฟังก์ชันตาม"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "ฟังก์ชัน {0} ไม่ได้อยู่ในรายการที่อนุญาต"
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11135,11 +11243,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11149,8 +11257,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11261,7 +11369,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11321,7 +11429,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11547,7 +11655,7 @@ msgstr "จัดกลุ่มตามประเภท"
msgid "Group By field is required to create a dashboard chart"
msgstr "ฟิลด์จัดกลุ่มตามเป็นสิ่งจำเป็นในการสร้างแผนภูมิแดชบอร์ด"
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11627,6 +11735,10 @@ msgstr ""
msgid "HTML Editor"
msgstr "ตัวแก้ไข HTML"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11715,7 +11827,7 @@ msgstr "ส่วนหัว"
msgid "Header HTML"
msgstr "HTML ส่วนหัว"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "HTML ส่วนหัวตั้งค่าจากไฟล์แนบ {0}"
@@ -11751,7 +11863,7 @@ msgstr "สคริปต์ส่วนหัว/ส่วนท้ายส
msgid "Headers"
msgstr "ส่วนหัว"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11788,7 +11900,7 @@ msgstr "สวัสดี,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11843,7 +11955,7 @@ msgstr "เฮลเวติกา"
msgid "Helvetica Neue"
msgstr "เฮลเวติกา นอย"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "นี่คือลิงก์ติดตามของคุณ"
@@ -11879,8 +11991,8 @@ msgstr "ซ่อน"
msgid "Hidden Fields"
msgstr "ฟิลด์ที่ซ่อนอยู่"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12046,7 +12158,7 @@ msgstr "คำแนะนำ: รวมสัญลักษณ์ ตัวเ
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12129,18 +12241,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12191,7 +12303,6 @@ msgid "IP Address"
msgstr "ที่อยู่ IP"
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12212,11 +12323,16 @@ msgstr "ที่อยู่ IP"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "ไอคอน"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12227,6 +12343,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12258,13 +12378,13 @@ msgstr "หากเลือกใช้การอนุญาตผู้ใ
msgid "If Checked workflow status will not override status in list view"
msgstr "หากเลือก สถานะเวิร์กโฟลว์จะไม่เขียนทับสถานะในมุมมองรายการ"
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "หากเป็นเจ้าของ"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "หากบทบาทไม่มีสิทธิ์เข้าถึงที่ระดับ 0 ระดับที่สูงกว่าจะไม่มีความหมาย"
@@ -12391,12 +12511,20 @@ msgstr "หากไม่ได้ตั้งค่า ความแม่
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr "หากตั้งค่าไว้ เฉพาะผู้ใช้ที่มีบทบาทเหล่านี้เท่านั้นที่สามารถเข้าถึงแผนภูมินี้ได้ หากไม่ได้ตั้งค่า จะใช้สิทธิ์ DocType หรือรายงาน"
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "หากคำแนะนำเหล่านี้ไม่เป็นประโยชน์ โปรดเพิ่มข้อเสนอแนะของคุณใน GitHub Issues"
@@ -12496,7 +12624,7 @@ msgstr "ละเว้นไฟล์แนบที่มีขนาดเก
msgid "Ignored Apps"
msgstr "แอปที่ถูกละเว้น"
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "สถานะเอกสารไม่ถูกต้องสำหรับ {0}"
@@ -12562,11 +12690,11 @@ msgstr "มุมมองภาพ"
msgid "Image Width"
msgstr "ความกว้างของภาพ"
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "ฟิลด์ภาพต้องเป็นชื่อฟิลด์ที่ถูกต้อง"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "ฟิลด์ภาพต้องเป็นประเภทแนบภาพ"
@@ -12600,7 +12728,7 @@ msgstr "แอบอ้างเป็น {0}"
msgid "Impersonated by {0}"
msgstr "ถูกแอบอ้างโดย {0}"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "กำลังแอบอ้างเป็น {0}"
@@ -12618,11 +12746,12 @@ msgstr "โดยนัย"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "นำเข้า"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "นำเข้า"
@@ -12845,15 +12974,15 @@ msgid "Include Web View Link in Email"
msgstr "รวมลิงก์มุมมองเว็บในอีเมล"
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "รวมตัวกรอง"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "รวมการเยื้อง"
@@ -12920,11 +13049,11 @@ msgstr "ผู้ใช้หรือรหัสผ่านไม่ถูก
msgid "Incorrect Verification code"
msgstr "รหัสยืนยันไม่ถูกต้อง"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "ค่าที่ไม่ถูกต้องในแถว {0}:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "ค่าที่ไม่ถูกต้อง:"
@@ -12976,7 +13105,7 @@ msgstr "ตัวบ่งชี้"
msgid "Indicator Color"
msgstr "สีตัวบ่งชี้"
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "สีตัวบ่งชี้"
@@ -13023,15 +13152,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "แทรกหลังจาก"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "ไม่สามารถตั้งค่าแทรกหลังจากเป็น {0}"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "ฟิลด์แทรกหลังจาก '{0}' ที่กล่าวถึงในฟิลด์ที่กำหนดเอง '{1}' พร้อมป้ายกำกับ '{2}' ไม่มีอยู่"
@@ -13061,8 +13190,8 @@ msgstr "แทรกสไตล์"
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "ติดตั้ง {0} จาก Marketplace"
@@ -13088,15 +13217,15 @@ msgstr "แอปที่ติดตั้ง"
msgid "Instructions"
msgstr "คำแนะนำ"
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "ส่งคำแนะนำทางอีเมลแล้ว"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "ระดับสิทธิ์ไม่เพียงพอสำหรับ {0}"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "สิทธิ์ไม่เพียงพอสำหรับ {0}"
@@ -13164,7 +13293,7 @@ msgstr "ความสนใจ"
msgid "Intermediate"
msgstr "ระดับกลาง"
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "ข้อผิดพลาดของเซิร์ฟเวอร์ภายใน"
@@ -13173,6 +13302,11 @@ msgstr "ข้อผิดพลาดของเซิร์ฟเวอร์
msgid "Internal record of document shares"
msgstr "บันทึกภายในของการแชร์เอกสาร"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13212,13 +13346,13 @@ msgid "Invalid"
msgstr "ไม่ถูกต้อง"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13258,7 +13392,7 @@ msgstr "วันที่ไม่ถูกต้อง"
msgid "Invalid DocType"
msgstr "DocType ไม่ถูกต้อง"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "DocType ไม่ถูกต้อง: {0}"
@@ -13266,7 +13400,8 @@ msgstr "DocType ไม่ถูกต้อง: {0}"
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "ชื่อฟิลด์ไม่ถูกต้อง"
@@ -13274,8 +13409,8 @@ msgstr "ชื่อฟิลด์ไม่ถูกต้อง"
msgid "Invalid File URL"
msgstr "URL ไฟล์ไม่ถูกต้อง"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13299,7 +13434,7 @@ msgstr "ลิงก์ไม่ถูกต้อง"
msgid "Invalid Login Token"
msgstr "โทเค็นการเข้าสู่ระบบไม่ถูกต้อง"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "การเข้าสู่ระบบไม่ถูกต้อง โปรดลองอีกครั้ง"
@@ -13307,7 +13442,7 @@ msgstr "การเข้าสู่ระบบไม่ถูกต้อง
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "เซิร์ฟเวอร์เมลไม่ถูกต้อง โปรดแก้ไขและลองอีกครั้ง"
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "ชุดการตั้งชื่อไม่ถูกต้อง: {}"
@@ -13318,8 +13453,8 @@ msgstr "ชุดการตั้งชื่อไม่ถูกต้อง
msgid "Invalid Operation"
msgstr "การดำเนินการไม่ถูกต้อง"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "ตัวเลือกไม่ถูกต้อง"
@@ -13331,7 +13466,7 @@ msgstr "เซิร์ฟเวอร์เมลขาออกหรือพ
msgid "Invalid Output Format"
msgstr "รูปแบบผลลัพธ์ไม่ถูกต้อง"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "การแทนที่ไม่ถูกต้อง"
@@ -13344,11 +13479,11 @@ msgstr "พารามิเตอร์ไม่ถูกต้อง"
msgid "Invalid Password"
msgstr "รหัสผ่านไม่ถูกต้อง"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "หมายเลขโทรศัพท์ไม่ถูกต้อง"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "คำขอไม่ถูกต้อง"
@@ -13357,7 +13492,7 @@ msgstr "คำขอไม่ถูกต้อง"
msgid "Invalid Search Field {0}"
msgstr "ฟิลด์การค้นหาไม่ถูกต้อง {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "ชื่อฟิลด์ตารางไม่ถูกต้อง"
@@ -13376,7 +13511,7 @@ msgstr "URL ไม่ถูกต้อง"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "ชื่อผู้ใช้หรือรหัสผ่านสนับสนุนไม่ถูกต้อง โปรดแก้ไขและลองอีกครั้ง"
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "ค่าที่ไม่ถูกต้อง"
@@ -13388,7 +13523,7 @@ msgstr "Webhook Secret ไม่ถูกต้อง"
msgid "Invalid aggregate function"
msgstr "ฟังก์ชันการรวมไม่ถูกต้อง"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13396,19 +13531,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13416,18 +13551,22 @@ msgstr ""
msgid "Invalid column"
msgstr "คอลัมน์ไม่ถูกต้อง"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "สถานะเอกสารไม่ถูกต้อง"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ไม่ถูกต้อง"
@@ -13436,11 +13575,11 @@ msgstr "นิพจน์ที่ตั้งค่าในตัวกรอ
msgid "Invalid expression set in filter {0} ({1})"
msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ({1}) ไม่ถูกต้อง"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13448,11 +13587,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr "ชื่อฟิลด์ไม่ถูกต้อง {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน autoname"
@@ -13460,11 +13599,11 @@ msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน a
msgid "Invalid file path: {0}"
msgstr "เส้นทางไฟล์ไม่ถูกต้อง: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13472,7 +13611,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "ตัวกรองไม่ถูกต้อง: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13489,19 +13628,19 @@ msgstr "เพิ่ม json ไม่ถูกต้องในตัวเล
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "ประเภทชื่อไม่ถูกต้อง (จำนวนเต็ม) สำหรับคอลัมน์ชื่อ varchar"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "ชุดการตั้งชื่อไม่ถูกต้อง {}: จุด (.) หายไป"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13525,11 +13664,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13546,24 +13685,24 @@ msgstr "สถานะโทเค็นไม่ถูกต้อง! ตร
msgid "Invalid username or password"
msgstr "ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "ค่าที่ระบุสำหรับ UUID ไม่ถูกต้อง: {}"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "ค่าที่ไม่ถูกต้องสำหรับฟิลด์:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "เวอร์ชัน wkhtmltopdf ไม่ถูกต้อง"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "เงื่อนไข {0} ไม่ถูกต้อง"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13691,7 +13830,7 @@ msgstr ""
msgid "Is Folder"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "เป็นสากล"
@@ -13762,7 +13901,7 @@ msgstr "เป็นสาธารณะ"
msgid "Is Published Field"
msgstr "เป็นฟิลด์ที่เผยแพร่"
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "ฟิลด์ที่เผยแพร่ต้องเป็นชื่อฟิลด์ที่ถูกต้อง"
@@ -14007,8 +14146,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr ""
@@ -14331,7 +14470,7 @@ msgstr "ความช่วยเหลือป้ายกำกับ"
msgid "Label and Type"
msgstr "ป้ายกำกับและประเภท"
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "ป้ายกำกับเป็นสิ่งจำเป็น"
@@ -14354,7 +14493,7 @@ msgstr "แนวนอน"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "ภาษา"
@@ -14400,6 +14539,14 @@ msgstr "90 วันที่ผ่านมา"
msgid "Last Active"
msgstr "ใช้งานล่าสุด"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14524,6 +14671,11 @@ msgstr "ปีที่แล้ว"
msgid "Last synced {0}"
msgstr "ซิงค์ครั้งล่าสุด {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "รีเซ็ตเลย์เอาต์"
@@ -14551,9 +14703,15 @@ msgstr "ออกจากการสนทนานี้"
msgid "Ledger"
msgstr "บัญชีแยกประเภท"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14647,7 +14805,7 @@ msgstr "จดหมาย"
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14676,7 +14834,7 @@ msgstr "ชื่อหัวจดหมาย"
msgid "Letter Head Scripts"
msgstr "สคริปต์หัวจดหมาย"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "หัวจดหมายไม่สามารถปิดใช้งานและเป็นค่าเริ่มต้นได้"
@@ -14698,7 +14856,7 @@ msgstr "หัวจดหมายใน HTML"
msgid "Level"
msgstr "ระดับ"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "ระดับ 0 สำหรับสิทธิ์ระดับเอกสาร ระดับที่สูงกว่าสำหรับสิทธิ์ระดับฟิลด์"
@@ -14739,7 +14897,7 @@ msgstr "ธีมสีอ่อน"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "ถูกใจ"
@@ -14763,7 +14921,7 @@ msgstr "การถูกใจ"
msgid "Limit"
msgstr "ขีดจำกัด"
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr ""
@@ -14889,7 +15047,7 @@ msgstr "ชื่อเรื่องลิงก์"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -14907,7 +15065,7 @@ msgstr "ลิงก์ไปยังในแถว"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr "ประเภทลิงก์"
@@ -14950,6 +15108,7 @@ msgstr ""
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14971,8 +15130,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr ""
@@ -15002,7 +15161,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -15016,7 +15175,7 @@ msgstr ""
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr ""
@@ -15043,7 +15202,7 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
@@ -15052,7 +15211,7 @@ msgstr ""
msgid "Load Balancing"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15070,10 +15229,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr ""
@@ -15090,8 +15249,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15101,7 +15260,8 @@ msgid "Loading..."
msgstr ""
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
@@ -15174,6 +15334,11 @@ msgstr "ออกจากระบบแล้ว"
msgid "Login"
msgstr "เข้าสู่ระบบ"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15249,7 +15414,7 @@ msgstr "เข้าสู่ระบบเพื่อเริ่มการ
msgid "Login to {0}"
msgstr "เข้าสู่ระบบไปยัง {0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "ต้องการโทเค็นเข้าสู่ระบบ"
@@ -15316,8 +15481,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr "ออกจากระบบจากทุกอุปกรณ์หลังจากเปลี่ยนรหัสผ่าน"
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr ""
@@ -15348,7 +15512,7 @@ msgstr "ดูเหมือนว่าคุณไม่ได้เปลี
msgid "Looks like you haven’t added any third party apps."
msgstr "ดูเหมือนว่าคุณยังไม่ได้เพิ่มแอปของบุคคลที่สามใด ๆ"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "ดูเหมือนว่าคุณยังไม่ได้รับการแจ้งเตือนใด ๆ"
@@ -15498,7 +15662,7 @@ msgstr "ฟิลด์ที่จำเป็นในตาราง {0}, แ
msgid "Mandatory fields required in {0}"
msgstr "ฟิลด์ที่จำเป็นใน {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "ฟิลด์ที่จำเป็น:"
@@ -15560,7 +15724,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15612,9 +15776,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15676,7 +15843,7 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "ความกว้างสูงสุดสำหรับประเภทสกุลเงินคือ 100px ในแถว {0}"
@@ -15697,20 +15864,27 @@ msgstr "ถึงขีดจำกัดไฟล์แนบสูงสุด
msgid "Maximum {0} rows allowed"
msgstr "อนุญาตสูงสุด {0} แถว"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "ฉัน"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "ความหมายของการส่ง ยกเลิก แก้ไข"
+msgid "Meaning of Different Permission Types"
+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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15754,12 +15928,12 @@ msgstr "กล่าวถึง"
msgid "Mentions"
msgstr "การกล่าวถึง"
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "เมนู"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "รวมกับที่มีอยู่"
@@ -15793,13 +15967,13 @@ msgstr "การรวมสามารถทำได้เฉพาะระ
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "ข้อความ"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "ข้อความ"
@@ -15830,7 +16004,7 @@ msgstr "ส่งข้อความแล้ว"
msgid "Message Type"
msgstr "ประเภทข้อความ"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "ข้อความถูกตัด"
@@ -15927,7 +16101,7 @@ msgstr ""
msgid "Method"
msgstr "วิธีการ"
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "ไม่อนุญาตวิธีการ"
@@ -16016,7 +16190,7 @@ msgstr "พลาด"
msgid "Missing DocType"
msgstr "DocType ที่หายไป"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "ฟิลด์ที่หายไป"
@@ -16036,7 +16210,7 @@ msgstr "สิทธิ์ที่หายไป"
msgid "Missing Value"
msgstr "ค่าที่หายไป"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16101,7 +16275,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16148,9 +16322,8 @@ msgstr "การเริ่มต้นใช้งานโมดูล"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "โปรไฟล์โมดูล"
@@ -16167,7 +16340,7 @@ msgstr "รีเซ็ตความคืบหน้าการเริ่
msgid "Module to Export"
msgstr "โมดูลที่จะส่งออก"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "ไม่พบโมดูล {}"
@@ -16282,7 +16455,7 @@ msgstr "บทความเพิ่มเติมเกี่ยวกับ
msgid "More content for the bottom of the page."
msgstr "เนื้อหาเพิ่มเติมสำหรับด้านล่างของหน้า"
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "ใช้บ่อยที่สุด"
@@ -16297,7 +16470,7 @@ msgstr "รหัสผ่านของคุณอาจยาวเกิน
msgid "Move"
msgstr "ย้าย"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "ย้ายไปยัง"
@@ -16309,19 +16482,19 @@ msgstr "ย้ายไปยังถังขยะ"
msgid "Move current and all subsequent sections to a new tab"
msgstr "ย้ายส่วนปัจจุบันและส่วนถัดไปทั้งหมดไปยังแท็บใหม่"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "ย้ายเคอร์เซอร์ไปยังแถวด้านบน"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "ย้ายเคอร์เซอร์ไปยังแถวด้านล่าง"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "ย้ายเคอร์เซอร์ไปยังคอลัมน์ถัดไป"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "ย้ายเคอร์เซอร์ไปยังคอลัมน์ก่อนหน้า"
@@ -16333,7 +16506,7 @@ msgstr "ย้ายส่วนไปยังแท็บใหม่"
msgid "Move the current field and the following fields to a new column"
msgstr "ย้ายฟิลด์ปัจจุบันและฟิลด์ถัดไปไปยังคอลัมน์ใหม่"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "ย้ายไปยังหมายเลขแถว"
@@ -16451,7 +16624,7 @@ msgstr "ชื่อ (ชื่อเอกสาร)"
msgid "Name already taken, please set a new name"
msgstr "ชื่อนี้ถูกใช้แล้ว โปรดตั้งชื่อใหม่"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "ชื่อไม่สามารถมีอักขระพิเศษเช่น {0}"
@@ -16463,7 +16636,7 @@ msgstr "ชื่อประเภทเอกสาร (DocType) ที่ค
msgid "Name of the new Print Format"
msgstr "ชื่อรูปแบบการพิมพ์ใหม่"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "ชื่อของ {0} ไม่สามารถเป็น {1}"
@@ -16502,7 +16675,7 @@ msgstr "กฎการตั้งชื่อ"
msgid "Naming Series"
msgstr "ชุดการตั้งชื่อ"
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "ชุดการตั้งชื่อเป็นสิ่งจำเป็น"
@@ -16526,11 +16699,6 @@ msgstr "รายการแถบนำทาง"
msgid "Navbar Settings"
msgstr "การตั้งค่าแถบนำทาง"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16544,39 +16712,44 @@ msgstr "แม่แบบแถบนำทาง"
msgid "Navbar Template Values"
msgstr "ค่าของแม่แบบแถบนำทาง"
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "เลื่อนรายการลง"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "เลื่อนรายการขึ้น"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "ไปยังเนื้อหาหลัก"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr "การตั้งค่าการนำทาง"
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "ต้องการบทบาทผู้จัดการพื้นที่ทำงานเพื่อแก้ไขพื้นที่ทำงานส่วนตัวของผู้ใช้อื่น"
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "ค่าติดลบ"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16598,6 +16771,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16614,7 +16788,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "ที่อยู่ใหม่"
@@ -16630,8 +16804,8 @@ msgstr "ผู้ติดต่อใหม่"
msgid "New Custom Block"
msgstr "บล็อกที่กำหนดเองใหม่"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "รูปแบบการพิมพ์ที่กำหนดเองใหม่"
@@ -16680,7 +16854,7 @@ msgstr "ข้อความใหม่จากหน้าติดต่อ
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "ชื่อใหม่"
@@ -16701,8 +16875,8 @@ msgstr "การเริ่มต้นใช้งานใหม่"
msgid "New Password"
msgstr "รหัสผ่านใหม่"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "ชื่อรูปแบบการพิมพ์ใหม่"
@@ -16729,8 +16903,8 @@ msgstr "ทางลัดใหม่"
msgid "New Users (Last 30 days)"
msgstr "ผู้ใช้ใหม่ (30 วันที่ผ่านมา)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "ค่าใหม่"
@@ -16738,7 +16912,7 @@ msgstr "ค่าใหม่"
msgid "New Workflow Name"
msgstr "ชื่อเวิร์กโฟลว์ใหม่"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "พื้นที่ทำงานใหม่"
@@ -16781,32 +16955,32 @@ msgstr "ผู้ใช้ใหม่จะต้องลงทะเบีย
msgid "New value to be set"
msgstr "ค่าที่จะตั้งใหม่"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "{0} ใหม่"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "สร้าง {0} ใหม่"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr "เพิ่ม {0} {1} ใหม่ในแดชบอร์ด {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "สร้าง {0} {1} ใหม่"
@@ -16818,7 +16992,7 @@ msgstr "{0} ใหม่: {1}"
msgid "New {} releases for the following apps are available"
msgstr "มีการเผยแพร่ {} ใหม่สำหรับแอปต่อไปนี้"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "ผู้ใช้ที่สร้างใหม่ {0} ไม่มีบทบาทที่เปิดใช้งาน"
@@ -16839,7 +17013,7 @@ msgstr "ผู้จัดการจดหมายข่าว"
msgid "Next"
msgstr "ถัดไป"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "ถัดไป"
@@ -16866,12 +17040,16 @@ msgstr "7 วันถัดไป"
msgid "Next Action Email Template"
msgstr "แม่แบบอีเมลการดำเนินการถัดไป"
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+msgstr ""
+
#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Next Actions HTML"
msgstr "HTML การดำเนินการถัดไป"
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -16938,20 +17116,24 @@ msgstr "ถัดไปเมื่อคลิก"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -17021,7 +17203,7 @@ msgstr ""
msgid "No Google Calendar Event to sync."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17040,23 +17222,23 @@ msgstr ""
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr ""
@@ -17076,11 +17258,11 @@ msgstr ""
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr ""
@@ -17088,7 +17270,7 @@ msgstr ""
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17096,7 +17278,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17112,7 +17294,7 @@ msgstr ""
msgid "No Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17132,7 +17314,7 @@ msgstr ""
msgid "No changes in document"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17196,7 +17378,7 @@ msgstr ""
msgid "No file attached"
msgstr "ไม่มีไฟล์แนบ"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "ไม่พบตัวกรอง"
@@ -17244,11 +17426,11 @@ msgstr "จำนวนแถว (สูงสุด 500)"
msgid "No of Sent SMS"
msgstr "จำนวน SMS ที่ส่ง"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "ไม่มีสิทธิ์สำหรับ {0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "ไม่มีสิทธิ์ในการ '{0}' {1}"
@@ -17257,7 +17439,7 @@ msgstr "ไม่มีสิทธิ์ในการ '{0}' {1}"
msgid "No permission to read {0}"
msgstr "ไม่มีสิทธิ์ในการอ่าน {0}"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "ไม่มีสิทธิ์ในการ {0} {1} {2}"
@@ -17273,7 +17455,7 @@ msgstr "ไม่มีบันทึกใน {0}"
msgid "No records tagged."
msgstr "ไม่มีบันทึกที่ติดแท็ก"
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "จะไม่มีการส่งออกบันทึก"
@@ -17281,7 +17463,7 @@ msgstr "จะไม่มีการส่งออกบันทึก"
msgid "No rows"
msgstr "ไม่มีแถว"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17293,11 +17475,12 @@ msgstr "ไม่มีหัวข้อ"
msgid "No template found at path: {0}"
msgstr "ไม่พบแม่แบบที่เส้นทาง: {0}"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "ไม่มีค่าที่จะแสดง"
@@ -17309,7 +17492,7 @@ msgstr "ไม่มี {0}"
msgid "No {0} found"
msgstr "ไม่พบ {0}"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "ไม่พบ {0} ที่ตรงกับตัวกรอง ล้างตัวกรองเพื่อดู {0} ทั้งหมด"
@@ -17318,7 +17501,7 @@ msgid "No {0} mail"
msgstr "ไม่มีจดหมาย {0}"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "เลขที่"
@@ -17361,12 +17544,12 @@ msgstr "สำเนาที่ทำให้เป็นมาตรฐาน
msgid "Normalized Query"
msgstr "คำสั่งที่ทำให้เป็นมาตรฐาน"
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "ไม่อนุญาต"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "ไม่อนุญาต: ผู้ใช้ที่ถูกปิดใช้งาน"
@@ -17408,7 +17591,7 @@ msgstr "ไม่ได้ลิงก์กับบันทึกใด ๆ"
msgid "Not Nullable"
msgstr "ไม่สามารถเป็นค่าว่างได้"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17417,7 +17600,7 @@ msgstr "ไม่สามารถเป็นค่าว่างได้"
msgid "Not Permitted"
msgstr "ไม่ได้รับอนุญาต"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "ไม่ได้รับอนุญาตให้อ่าน {0}"
@@ -17426,8 +17609,8 @@ msgstr "ไม่ได้รับอนุญาตให้อ่าน {0}"
msgid "Not Published"
msgstr "ไม่ได้เผยแพร่"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17447,7 +17630,7 @@ msgstr "ไม่ได้เห็น"
msgid "Not Sent"
msgstr "ไม่ได้ส่ง"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "ไม่ได้ตั้งค่า"
@@ -17461,15 +17644,15 @@ msgstr "ไม่ได้ตั้งค่า"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "ไม่ใช่ค่า CSV (ไฟล์ CSV) ที่ถูกต้อง"
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "ไม่ใช่ภาพผู้ใช้ที่ถูกต้อง"
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "ไม่ใช่การกระทำเวิร์กโฟลว์ที่ถูกต้อง"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "ไม่ใช่ผู้ใช้ที่ถูกต้อง"
@@ -17477,7 +17660,7 @@ msgstr "ไม่ใช่ผู้ใช้ที่ถูกต้อง"
msgid "Not active"
msgstr "ไม่ใช้งาน"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "ไม่อนุญาตสำหรับ {0}: {1}"
@@ -17497,11 +17680,11 @@ msgstr "ไม่อนุญาตให้พิมพ์เอกสารท
msgid "Not allowed to print draft documents"
msgstr "ไม่อนุญาตให้พิมพ์เอกสารร่าง"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "ไม่อนุญาตผ่านการตรวจสอบสิทธิ์ของตัวควบคุม"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "ไม่พบ"
@@ -17514,11 +17697,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "ไม่ได้อยู่ในโหมดนักพัฒนา! ตั้งค่าใน site_config.json หรือสร้าง DocType 'Custom'"
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "ไม่ได้รับอนุญาต"
@@ -17546,7 +17729,7 @@ msgstr "หมายเหตุที่เห็นโดย"
msgid "Note:"
msgstr "หมายเหตุ:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "หมายเหตุ: การเปลี่ยนชื่อหน้าจะทำให้ URL ก่อนหน้านี้ไปยังหน้านี้เสีย"
@@ -17578,7 +17761,7 @@ msgstr "หมายเหตุ: คำขอลบบัญชีของค
msgid "Notes:"
msgstr "บันทึก:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "ไม่มีอะไรใหม่"
@@ -17590,8 +17773,8 @@ msgstr "ไม่มีอะไรเหลือให้ทำซ้ำ"
msgid "Nothing left to undo"
msgstr "ไม่มีอะไรเหลือให้ยกเลิก"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17602,11 +17785,13 @@ msgid "Nothing to update"
msgstr "ไม่มีอะไรให้อัปเดต"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "การแจ้งเตือน"
@@ -17622,7 +17807,7 @@ msgstr "ผู้รับการแจ้งเตือน"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "การตั้งค่าการแจ้งเตือน"
@@ -17631,11 +17816,6 @@ msgstr "การตั้งค่าการแจ้งเตือน"
msgid "Notification Subscribed Document"
msgstr "เอกสารที่สมัครรับการแจ้งเตือน"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "การแจ้งเตือนถูกส่งไปยัง"
@@ -17653,13 +17833,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "การแจ้งเตือน: ผู้ใช้ {0} ไม่มีการตั้งหมายเลขมือถือ"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "การแจ้งเตือน"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "ปิดใช้งานการแจ้งเตือน"
@@ -17895,7 +18077,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17935,7 +18117,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17943,7 +18125,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18010,7 +18192,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18054,7 +18236,7 @@ msgstr "การเริ่มต้นใช้งานเสร็จสม
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "เมื่อส่งแล้ว เอกสารที่สามารถส่งได้จะไม่สามารถเปลี่ยนแปลงได้ สามารถยกเลิกและแก้ไขได้เท่านั้น"
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "เมื่อคุณตั้งค่านี้แล้ว ผู้ใช้จะสามารถเข้าถึงเอกสาร (เช่น บล็อกโพสต์) ที่มีลิงก์อยู่เท่านั้น (เช่น Blogger)"
@@ -18070,11 +18252,11 @@ msgstr "รหัสลงทะเบียนรหัสผ่านครั
msgid "One of"
msgstr "หนึ่งใน"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "อนุญาตให้แทรกได้เพียง 200 รายการต่อคำขอหนึ่งครั้ง"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถลบคิวอีเมลได้"
@@ -18095,7 +18277,7 @@ msgstr "อนุญาตให้เฉพาะผู้ดูแลระบ
msgid "Only Allow Edit For"
msgstr "อนุญาตให้แก้ไขเฉพาะสำหรับ"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "ตัวเลือกที่อนุญาตสำหรับฟิลด์ข้อมูลคือ:"
@@ -18118,11 +18300,11 @@ msgstr "เฉพาะผู้จัดการพื้นที่ทำง
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "อนุญาตให้ส่งออกการปรับแต่งในโหมดนักพัฒนาเท่านั้น"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "สามารถทิ้งเอกสารร่างได้เท่านั้น"
@@ -18165,7 +18347,7 @@ msgstr "เฉพาะผู้รับมอบหมายเท่านั
msgid "Only {0} emailed reports are allowed per user."
msgstr "อนุญาตเฉพาะรายงานที่ส่งทางอีเมล {0} ต่อผู้ใช้หนึ่งราย"
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "อุ๊ปส์! มีบางอย่างผิดพลาด"
@@ -18188,8 +18370,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18225,6 +18407,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18239,7 +18425,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18251,11 +18437,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18270,16 +18456,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18311,7 +18497,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr "ผู้ปฏิบัติงานต้องเป็นหนึ่งใน {0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18337,7 +18523,7 @@ msgstr "ตัวเลือก 2"
msgid "Option 3"
msgstr "ตัวเลือก 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "ตัวเลือก {0} สำหรับฟิลด์ {1} ไม่ใช่ตารางลูก"
@@ -18371,7 +18557,7 @@ msgstr "ไม่บังคับ: การแจ้งเตือนจะ
msgid "Options"
msgstr "ตัวเลือก"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "ตัวเลือกประเภทฟิลด์ 'Dynamic Link' ต้องชี้ไปยังฟิลด์ลิงก์อื่นที่มีตัวเลือกเป็น 'DocType'"
@@ -18380,7 +18566,7 @@ msgstr "ตัวเลือกประเภทฟิลด์ 'Dynamic Link'
msgid "Options Help"
msgstr "ตัวเลือกช่วยเหลือ"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "ตัวเลือกสำหรับฟิลด์การให้คะแนนสามารถอยู่ในช่วง 3 ถึง 10"
@@ -18388,7 +18574,7 @@ msgstr "ตัวเลือกสำหรับฟิลด์การให
msgid "Options for select. Each option on a new line."
msgstr "ตัวเลือกสำหรับการเลือก แต่ละตัวเลือกในบรรทัดใหม่"
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "ต้องตั้งค่าตัวเลือกสำหรับ {0} ก่อนตั้งค่าค่าเริ่มต้น"
@@ -18396,7 +18582,7 @@ msgstr "ต้องตั้งค่าตัวเลือกสำหรั
msgid "Options is required for field {0} of type {1}"
msgstr "ต้องการตัวเลือกสำหรับฟิลด์ {0} ประเภท {1}"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "ไม่ได้ตั้งค่าตัวเลือกสำหรับฟิลด์ลิงก์ {0}"
@@ -18412,7 +18598,7 @@ msgstr "สีส้ม"
msgid "Order"
msgstr "คำสั่งซื้อ"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18432,8 +18618,12 @@ msgstr "หัวข้อประวัติองค์กร"
msgid "Orientation"
msgstr "การวางแนว"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "มูลค่าต้นฉบับ"
@@ -18508,18 +18698,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "กำลังสร้าง PDF"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "ตัวสร้าง PDF"
@@ -18543,7 +18735,7 @@ msgstr "ความกว้างหน้าของ PDF (เป็นมม
msgid "PDF Settings"
msgstr "การตั้งค่า PDF"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "การสร้าง PDF ล้มเหลว"
@@ -18551,11 +18743,11 @@ msgstr "การสร้าง PDF ล้มเหลว"
msgid "PDF generation failed because of broken image links"
msgstr "การสร้าง PDF ล้มเหลวเนื่องจากลิงก์ภาพเสีย"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "การสร้าง PDF อาจไม่ทำงานตามที่คาดไว้"
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18714,7 +18906,7 @@ msgstr "ความกว้างของหน้า (เป็นมม.)"
msgid "Page has expired!"
msgstr "หน้าหมดอายุแล้ว!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "ความสูงและความกว้างของหน้าไม่สามารถเป็นศูนย์ได้"
@@ -18730,7 +18922,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "หน้า {0} จาก {1}"
@@ -18741,7 +18933,7 @@ msgid "Parameter"
msgstr "พารามิเตอร์"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "ผู้ปกครอง"
@@ -18774,11 +18966,11 @@ msgstr "ฟิลด์ผู้ปกครอง"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "ฟิลด์ผู้ปกครอง (ต้นไม้)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "ฟิลด์ผู้ปกครองต้องเป็นชื่อฟิลด์ที่ถูกต้อง"
@@ -18792,7 +18984,7 @@ msgstr ""
msgid "Parent Label"
msgstr "ป้ายผู้ปกครอง"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "ผู้ปกครองหายไป"
@@ -18817,11 +19009,11 @@ msgstr "ผู้ปกครองคือชื่อของเอกสา
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "ไม่ได้ระบุฟิลด์ผู้ปกครองใน {0}: {1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "ต้องการประเภทผู้ปกครอง ผู้ปกครอง และฟิลด์ผู้ปกครองเพื่อแทรกบันทึกลูก"
@@ -18840,7 +19032,7 @@ msgstr "สำเร็จบางส่วน"
msgid "Partially Sent"
msgstr "ส่งบางส่วน"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "ผู้เข้าร่วม"
@@ -18877,11 +19069,11 @@ msgstr "ไม่กระตือรือร้น"
msgid "Password"
msgstr "รหัสผ่าน"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "ส่งอีเมลรหัสผ่านแล้ว"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "รีเซ็ตรหัสผ่าน"
@@ -18890,7 +19082,7 @@ msgstr "รีเซ็ตรหัสผ่าน"
msgid "Password Reset Link Generation Limit"
msgstr "ขีดจำกัดการสร้างลิงก์รีเซ็ตรหัสผ่าน"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "ไม่สามารถกรองรหัสผ่านได้"
@@ -18919,11 +19111,11 @@ msgstr "ไม่มีรหัสผ่านในบัญชีอีเม
msgid "Password not found for {0} {1} {2}"
msgstr "ไม่พบรหัสผ่านสำหรับ {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "คำแนะนำการรีเซ็ตรหัสผ่านถูกส่งไปยังอีเมลของ {} แล้ว"
@@ -18935,7 +19127,7 @@ msgstr "ตั้งค่ารหัสผ่านแล้ว"
msgid "Password size exceeded the maximum allowed size"
msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต"
@@ -18997,7 +19189,7 @@ msgstr "เส้นทางไปยังใบรับรองเซิร
msgid "Path to private Key File"
msgstr "เส้นทางไปยังไฟล์คีย์ส่วนตัว"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19082,15 +19274,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "ยกเลิก {0} อย่างถาวร?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "ทิ้ง {0} อย่างถาวร?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "ส่ง {0} อย่างถาวร?"
@@ -19098,7 +19290,11 @@ msgstr "ส่ง {0} อย่างถาวร?"
msgid "Permanently delete {0}?"
msgstr "ลบ {0} อย่างถาวร?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "ข้อผิดพลาดในการอนุญาต"
@@ -19108,12 +19304,12 @@ msgid "Permission Inspector"
msgstr "ตัวตรวจสอบการอนุญาต"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "ระดับการอนุญาต"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "ระดับการอนุญาต"
@@ -19122,11 +19318,6 @@ msgstr "ระดับการอนุญาต"
msgid "Permission Log"
msgstr "บันทึกการอนุญาต"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19157,7 +19348,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19168,13 +19358,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "การอนุญาต"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "ข้อผิดพลาดในการอนุญาต"
@@ -19186,11 +19375,11 @@ msgstr "การอนุญาตถูกนำไปใช้กับรา
msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
msgstr "การอนุญาตถูกตั้งค่าในบทบาทและประเภทเอกสาร (เรียกว่า DocTypes) โดยการตั้งค่าการเข้าถึง เช่น อ่าน, เขียน, สร้าง, ลบ, ส่ง, ยกเลิก, แก้ไข, รายงาน, นำเข้า, ส่งออก, พิมพ์, อีเมล และตั้งค่าการอนุญาตผู้ใช้"
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "การอนุญาตในระดับ 0 คือการอนุญาตระดับเอกสาร กล่าวคือ เป็นการอนุญาตหลักสำหรับการเข้าถึงเอกสาร"
@@ -19260,13 +19449,13 @@ msgstr "โทรศัพท์"
msgid "Phone No."
msgstr "หมายเลขโทรศัพท์"
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "หมายเลขโทรศัพท์ {0} ที่ตั้งค่าในฟิลด์ {1} ไม่ถูกต้อง"
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "เลือกคอลัมน์"
@@ -19324,7 +19513,7 @@ msgstr "โปรดทำสำเนาธีมเว็บไซต์นี
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "โปรดติดตั้งไลบรารี ldap3 ผ่าน pip เพื่อใช้ฟังก์ชัน ldap"
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "โปรดตั้งค่าแผนภูมิ"
@@ -19340,7 +19529,7 @@ msgstr "โปรดเพิ่มหัวข้อในอีเมลขอ
msgid "Please add a valid comment."
msgstr "โปรดเพิ่มความคิดเห็นที่ถูกต้อง"
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "โปรดขอให้ผู้ดูแลระบบของคุณตรวจสอบการลงทะเบียนของคุณ"
@@ -19348,11 +19537,11 @@ msgstr "โปรดขอให้ผู้ดูแลระบบของค
msgid "Please attach a file first."
msgstr "โปรดแนบไฟล์ก่อน"
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "โปรดแนบไฟล์ภาพเพื่อกำหนด HTML สำหรับส่วนท้าย"
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "โปรดแนบไฟล์ภาพเพื่อกำหนด HTML สำหรับหัวจดหมาย"
@@ -19364,11 +19553,11 @@ msgstr "โปรดแนบแพ็คเกจ"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "โปรดตรวจสอบค่าตัวกรองที่ตั้งค่าสำหรับแผนภูมิแดชบอร์ด: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "โปรดตรวจสอบอีเมลของคุณเพื่อการยืนยัน"
@@ -19400,7 +19589,7 @@ msgstr "โปรดคลิกที่ลิงก์ต่อไปนี้
msgid "Please confirm your action to {0} this document."
msgstr "โปรดยืนยันการกระทำของคุณเพื่อ {0} เอกสารนี้"
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "โปรดติดต่อผู้จัดการระบบของคุณเพื่อติดตั้งเวอร์ชันที่ถูกต้อง"
@@ -19430,10 +19619,10 @@ msgstr "โปรดเปิดใช้งานคีย์เข้าสู
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "โปรดเปิดใช้งานป๊อปอัป"
@@ -19446,7 +19635,7 @@ msgstr "โปรดเปิดใช้งานป๊อปอัปในเ
msgid "Please enable {} before continuing."
msgstr "โปรดเปิดใช้งาน {} ก่อนดำเนินการต่อ"
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "โปรดตรวจสอบว่าโปรไฟล์ของคุณมีที่อยู่อีเมล"
@@ -19520,15 +19709,15 @@ msgstr "โปรดเข้าสู่ระบบเพื่อโพสต
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "โปรดตรวจสอบว่าเอกสารการสื่อสารอ้างอิงไม่ได้เชื่อมโยงกันเป็นวงกลม"
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "โปรดรีเฟรชเพื่อรับเอกสารล่าสุด"
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "โปรดลบการแมปเครื่องพิมพ์ในการตั้งค่าเครื่องพิมพ์และลองอีกครั้ง"
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "โปรดบันทึกก่อนแนบ"
@@ -19544,7 +19733,7 @@ msgstr "โปรดบันทึกเอกสารก่อนลบกา
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "โปรดบันทึกรายงานก่อน"
@@ -19564,7 +19753,7 @@ msgstr "โปรดเลือกประเภทเอนทิตีก่
msgid "Please select Minimum Password Score"
msgstr "โปรดเลือกคะแนนรหัสผ่านขั้นต่ำ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "โปรดเลือกฟิลด์ X และ Y"
@@ -19572,7 +19761,7 @@ msgstr "โปรดเลือกฟิลด์ X และ Y"
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "โปรดเลือกรหัสประเทศสำหรับฟิลด์ {1}"
@@ -19622,11 +19811,11 @@ msgstr "โปรดเลือก {0}"
msgid "Please set Email Address"
msgstr "โปรดตั้งค่าที่อยู่อีเมล"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "โปรดตั้งค่าการแมปเครื่องพิมพ์สำหรับรูปแบบการพิมพ์นี้ในการตั้งค่าเครื่องพิมพ์"
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "โปรดตั้งค่าตัวกรอง"
@@ -19634,7 +19823,7 @@ msgstr "โปรดตั้งค่าตัวกรอง"
msgid "Please set filters value in Report Filter table."
msgstr "โปรดตั้งค่าค่าตัวกรองในตารางตัวกรองรายงาน"
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "โปรดตั้งชื่อเอกสาร"
@@ -19654,7 +19843,7 @@ msgstr "โปรดตั้งค่า SMS ก่อนตั้งค่า
msgid "Please setup a message first"
msgstr "โปรดตั้งค่าข้อความก่อน"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "โปรดตั้งค่าบัญชีอีเมลขาออกเริ่มต้นจากการตั้งค่า > บัญชีอีเมล"
@@ -19666,7 +19855,7 @@ msgstr "โปรดตั้งค่าบัญชีอีเมลขาอ
msgid "Please specify"
msgstr "โปรดระบุ"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "โปรดระบุประเภทเอกสารหลักที่ถูกต้องสำหรับ {0}"
@@ -19694,7 +19883,7 @@ msgstr "โปรดระบุฟิลด์วันที่และเว
msgid "Please specify which value field must be checked"
msgstr "โปรดระบุฟิลด์ค่าที่ต้องตรวจสอบ"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "โปรดลองอีกครั้ง"
@@ -19815,11 +20004,11 @@ msgstr "การประทับเวลาที่โพสต์"
msgid "Precision"
msgstr "ความแม่นยำ"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "ความแม่นยำควรอยู่ระหว่าง 1 ถึง 6"
@@ -19871,11 +20060,11 @@ msgstr "ผู้ใช้รายงานที่เตรียมไว้
msgid "Prepared report render failed"
msgstr "การแสดงผลรายงานที่เตรียมไว้ล้มเหลว"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "กำลังเตรียมรายงาน"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "เพิ่มแม่แบบไปยังข้อความอีเมล"
@@ -19883,7 +20072,7 @@ msgstr "เพิ่มแม่แบบไปยังข้อความอ
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "กดปุ่ม Alt เพื่อเรียกใช้ทางลัดเพิ่มเติมในเมนูและแถบด้านข้าง"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "กด Enter เพื่อบันทึก"
@@ -19901,7 +20090,7 @@ msgstr "กด Enter เพื่อบันทึก"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "ดูตัวอย่าง"
@@ -19945,16 +20134,16 @@ msgstr "ดูตัวอย่าง:"
msgid "Previous"
msgstr "ก่อนหน้า"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "ก่อนหน้า"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "การส่งก่อนหน้า"
@@ -20007,19 +20196,19 @@ msgstr "คีย์หลักของประเภทเอกสาร {0
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "พิมพ์"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "พิมพ์"
@@ -20037,8 +20226,9 @@ msgstr "พิมพ์เอกสาร"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20082,7 +20272,7 @@ msgstr "ความช่วยเหลือรูปแบบการพิ
msgid "Print Format Type"
msgstr "ประเภทรูปแบบการพิมพ์"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20115,11 +20305,11 @@ msgstr "ซ่อนการพิมพ์"
msgid "Print Hide If No Value"
msgstr "ซ่อนการพิมพ์หากไม่มีค่า"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "ภาษาการพิมพ์"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "ส่งการพิมพ์ไปยังเครื่องพิมพ์แล้ว!"
@@ -20132,8 +20322,8 @@ msgstr "เซิร์ฟเวอร์การพิมพ์"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "การตั้งค่าการพิมพ์"
@@ -20172,7 +20362,7 @@ msgstr "ความกว้างการพิมพ์"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "ความกว้างการพิมพ์ของฟิลด์ หากฟิลด์เป็นคอลัมน์ในตาราง"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "พิมพ์เอกสาร"
@@ -20181,11 +20371,11 @@ msgstr "พิมพ์เอกสาร"
msgid "Print with letterhead"
msgstr "พิมพ์พร้อมหัวจดหมาย"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "เครื่องพิมพ์"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "การแมปเครื่องพิมพ์"
@@ -20195,15 +20385,15 @@ msgstr "การแมปเครื่องพิมพ์"
msgid "Printer Name"
msgstr "ชื่อเครื่องพิมพ์"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "การตั้งค่าเครื่องพิมพ์"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "ไม่ได้ตั้งค่าการแมปเครื่องพิมพ์"
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "การพิมพ์ล้มเหลว"
@@ -20252,7 +20442,7 @@ msgstr "เคล็ดลับ: เพิ่ม อ้างอิง: {
msgid "Proceed"
msgstr "ดำเนินการต่อ"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "ดำเนินการต่ออยู่ดี"
@@ -20292,9 +20482,9 @@ msgid "Project"
msgstr "โครงการ"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "คุณสมบัติ"
@@ -20364,7 +20554,7 @@ msgstr "ชื่อผู้ให้บริการ"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "สาธารณะ"
@@ -20514,7 +20704,7 @@ msgstr "คิวอาร์โค้ด"
msgid "QR Code for Login Verification"
msgstr "คิวอาร์โค้ดสำหรับการยืนยันการเข้าสู่ระบบ"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20576,7 +20766,7 @@ msgstr "การค้นหาต้องเป็นประเภท SELEC
msgid "Queue"
msgstr "คิว"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "คิวเกินพิกัด"
@@ -20597,7 +20787,7 @@ msgstr "ประเภทคิว"
msgid "Queue in Background (BETA)"
msgstr "คิวในพื้นหลัง (เบต้า)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "คิวควรเป็นหนึ่งใน {0}"
@@ -20638,7 +20828,7 @@ msgstr "อยู่ในคิวสำหรับการสำรองข
msgid "Queues"
msgstr "คิว"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "กำลังจัดคิว {0} สำหรับการส่ง"
@@ -20730,6 +20920,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20738,7 +20937,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20756,7 +20955,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20767,11 +20966,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20808,7 +21008,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20848,7 +21048,7 @@ msgstr "เรียลไทม์ (SocketIO)"
msgid "Reason"
msgstr "เหตุผล"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "สร้างใหม่"
@@ -20890,7 +21090,7 @@ msgstr "พารามิเตอร์ผู้รับ"
msgid "Recent years are easy to guess."
msgstr "ปีล่าสุดคาดเดาได้ง่าย"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "ล่าสุด"
@@ -20941,7 +21141,7 @@ msgstr "ดัชนีที่แนะนำโดยเครื่องบ
msgid "Records for following doctypes will be filtered"
msgstr "บันทึกสำหรับประเภทเอกสารต่อไปนี้จะถูกกรอง"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "ดึงข้อมูลแบบวนซ้ำจาก"
@@ -21007,12 +21207,12 @@ msgstr "เปลี่ยนเส้นทาง"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "เซิร์ฟเวอร์แคช Redis ไม่ทำงาน โปรดติดต่อผู้ดูแลระบบ/ฝ่ายสนับสนุนด้านเทคนิค"
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "ทำซ้ำ"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "ทำซ้ำการกระทำล่าสุด"
@@ -21228,12 +21428,12 @@ msgstr "อ้างอิง: {0} {1}"
msgid "Referrer"
msgstr "ผู้แนะนำ"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21250,7 +21450,7 @@ msgstr "รีเฟรชทั้งหมด"
msgid "Refresh Google Sheet"
msgstr "รีเฟรช Google Sheet"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21265,7 +21465,7 @@ msgstr ""
msgid "Refresh Token"
msgstr "รีเฟรชโทเค็น"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "กำลังรีเฟรช"
@@ -21276,7 +21476,7 @@ msgstr "กำลังรีเฟรช"
msgid "Refreshing..."
msgstr "กำลังรีเฟรช..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "ลงทะเบียนแล้วแต่ปิดใช้งาน"
@@ -21322,10 +21522,8 @@ msgstr "ลิงก์ใหม่การสื่อสาร"
msgid "Relinked"
msgstr "ลิงก์ใหม่แล้ว"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "โหลดใหม่"
@@ -21337,7 +21535,7 @@ msgstr "โหลดไฟล์ใหม่"
msgid "Reload List"
msgstr "โหลดรายการใหม่"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "โหลดรายงานใหม่"
@@ -21356,7 +21554,7 @@ msgstr "จำค่าที่เลือกครั้งสุดท้า
msgid "Remind At"
msgstr "เตือนที่"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "เตือนฉัน"
@@ -21436,9 +21634,9 @@ msgid "Removed"
msgstr "ลบแล้ว"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21466,7 +21664,7 @@ msgstr "แสดงป้ายกำกับทางซ้ายและค
msgid "Reopen"
msgstr "เปิดใหม่"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "ทำซ้ำ"
@@ -21513,7 +21711,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "ทำซ้ำ {0}"
@@ -21576,6 +21774,7 @@ msgstr "ตอบกลับทั้งหมด"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21590,10 +21789,9 @@ msgstr "ตอบกลับทั้งหมด"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "รายงาน"
@@ -21662,7 +21860,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "ชื่อรายงาน"
@@ -21696,14 +21894,10 @@ msgstr "ประเภทรายงาน"
msgid "Report View"
msgstr "มุมมองรายงาน"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "รายงานข้อบกพร่อง"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "ไม่สามารถตั้งค่ารายงานสำหรับประเภทเดี่ยวได้"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21714,7 +21908,7 @@ msgstr "รายงานไม่มีข้อมูล โปรดแก
msgid "Report has no numeric fields, please change the Report Name"
msgstr "รายงานไม่มีฟิลด์ตัวเลข โปรดเปลี่ยนชื่อรายงาน"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "เริ่มต้นรายงานแล้ว คลิกเพื่อดูสถานะ"
@@ -21726,7 +21920,7 @@ msgstr "ถึงขีดจำกัดรายงานแล้ว"
msgid "Report timed out."
msgstr "รายงานหมดเวลา"
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "อัปเดตรายงานเรียบร้อยแล้ว"
@@ -21734,12 +21928,12 @@ msgstr "อัปเดตรายงานเรียบร้อยแล้
msgid "Report was not saved (there were errors)"
msgstr "รายงานไม่ได้รับการบันทึก (มีข้อผิดพลาด)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "รายงานที่มีมากกว่า 10 คอลัมน์ดูดีกว่าในโหมดแนวนอน"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "รายงาน {0}"
@@ -21762,7 +21956,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "รายงาน"
@@ -21770,7 +21964,7 @@ msgstr "รายงาน"
msgid "Reports & Masters"
msgstr "รายงานและมาสเตอร์"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "รายงานอยู่ในคิวแล้ว"
@@ -21829,13 +22023,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -21951,7 +22145,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22009,7 +22203,7 @@ msgstr ""
msgid "Response Type"
msgstr "ประเภทการตอบกลับ"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "ส่วนที่เหลือของวัน"
@@ -22018,7 +22212,7 @@ msgstr "ส่วนที่เหลือของวัน"
msgid "Restore"
msgstr "กู้คืน"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "กู้คืนสิทธิ์ดั้งเดิม"
@@ -22040,6 +22234,11 @@ msgstr "กำลังกู้คืนเอกสารที่ถูกล
msgid "Restrict IP"
msgstr "จำกัด IP"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22067,8 +22266,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "ข้อจำกัด"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "ผลลัพธ์"
@@ -22115,9 +22314,15 @@ msgstr "ถูกเพิกถอน"
msgid "Rich Text"
msgstr "ข้อความที่มีรูปแบบ"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22152,8 +22357,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22168,8 +22371,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22213,7 +22415,7 @@ msgstr "สิทธิ์บทบาท"
msgid "Role Permissions Manager"
msgstr "ผู้จัดการสิทธิ์บทบาท"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "ผู้จัดการสิทธิ์บทบาท"
@@ -22221,11 +22423,9 @@ msgstr "ผู้จัดการสิทธิ์บทบาท"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "โปรไฟล์บทบาท"
@@ -22247,7 +22447,7 @@ msgstr "การจำลองบทบาท"
msgid "Role and Level"
msgstr "บทบาทและระดับ"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "บทบาทถูกตั้งค่าตามประเภทผู้ใช้ {0}"
@@ -22366,20 +22566,20 @@ msgstr "เปลี่ยนเส้นทางเส้นทาง"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "แถว"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "แถว #"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "แถว # {0}: ผู้ใช้ที่ไม่ใช่ผู้ดูแลระบบไม่สามารถตั้งค่าบทบาท {1} ให้กับประเภทเอกสารที่กำหนดเองได้"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "แถว #{0}:"
@@ -22406,7 +22606,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22425,14 +22625,14 @@ msgstr "แถว {0}: ไม่อนุญาตให้เปิดใช้
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22455,7 +22655,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22535,7 +22735,7 @@ msgstr "การตั้งค่า SMS"
msgid "SMS sent successfully"
msgstr "ส่ง SMS สำเร็จ"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS ไม่ถูกส่ง โปรดติดต่อผู้ดูแลระบบ"
@@ -22569,7 +22769,7 @@ msgstr "ผลลัพธ์ SQL"
msgid "SQL Queries"
msgstr "คำสั่ง SQL"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22641,22 +22841,23 @@ msgstr "วันเสาร์"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22669,7 +22870,7 @@ msgid "Save Anyway"
msgstr "บันทึกอยู่ดี"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "บันทึกเป็น"
@@ -22677,7 +22878,7 @@ msgstr "บันทึกเป็น"
msgid "Save Customizations"
msgstr "บันทึกการปรับแต่ง"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "บันทึกรายงาน"
@@ -22695,20 +22896,20 @@ msgid "Save the document."
msgstr "บันทึกเอกสาร"
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "บันทึกแล้ว"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "ตัวกรองที่บันทึกไว้"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "กำลังบันทึก"
@@ -22717,11 +22918,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "กำลังบันทึก"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "กำลังบันทึกการปรับแต่ง..."
@@ -22925,7 +23126,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22945,7 +23146,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -22963,7 +23164,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -22980,12 +23181,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23057,15 +23258,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23115,24 +23316,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "เลือกทั้งหมด"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23148,7 +23351,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23192,13 +23395,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23207,7 +23410,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "เลือกฟิลด์"
@@ -23216,19 +23419,19 @@ msgstr "เลือกฟิลด์"
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "เลือกฟิลด์เพื่อแทรก"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "เลือกฟิลด์เพื่ออัปเดต"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "เลือกตัวกรอง"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "เลือก Google Calendar ที่จะซิงค์เหตุการณ์"
@@ -23253,16 +23456,16 @@ msgstr "เลือกภาษา"
msgid "Select List View"
msgstr "เลือกมุมมองรายการ"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "เลือกข้อบังคับ"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "เลือกโมดูล"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "เลือกเครื่องพิมพ์เครือข่าย"
@@ -23272,7 +23475,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "เลือกรูปแบบการพิมพ์"
@@ -23308,12 +23511,6 @@ msgstr "เลือกเวิร์กโฟลว์"
msgid "Select Workspace"
msgstr "เลือกพื้นที่ทำงาน"
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr "เลือกพื้นที่ทำงาน"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "เลือกภาพแบรนด์ก่อน"
@@ -23330,11 +23527,11 @@ msgstr "เลือกฟิลด์เพื่อแก้ไขคุณส
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "เลือกฟิลด์ผู้ส่งที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "เลือกฟิลด์หัวเรื่องที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล"
@@ -23360,13 +23557,13 @@ msgstr "เลือกอย่างน้อย 1 รายการสำห
msgid "Select atleast 2 actions"
msgstr "เลือกอย่างน้อย 2 การกระทำ"
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "เลือกรายการในรายการ"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "เลือกรายการในรายการหลายรายการ"
@@ -23400,7 +23597,7 @@ msgstr "เลือกสองเวอร์ชันเพื่อดูค
msgid "Select {0}"
msgstr "เลือก {0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "ไม่อนุญาตให้อนุมัติด้วยตนเอง"
@@ -23430,6 +23627,11 @@ msgstr "ส่งหลังจาก"
msgid "Send Alert On"
msgstr "ส่งการแจ้งเตือนเมื่อ"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23482,7 +23684,7 @@ msgstr "ส่งเดี๋ยวนี้"
msgid "Send Print as PDF"
msgstr "ส่งพิมพ์เป็น PDF"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "ส่งใบตอบรับการอ่าน"
@@ -23545,7 +23747,7 @@ msgstr "ส่งคำถามไปยังที่อยู่อีเม
msgid "Send login link"
msgstr "ส่งลิงก์เข้าสู่ระบบ"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "ส่งสำเนาให้ฉัน"
@@ -23584,7 +23786,7 @@ msgstr "อีเมลผู้ส่ง"
msgid "Sender Email Field"
msgstr "ฟิลด์อีเมลผู้ส่ง"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "ฟิลด์ผู้ส่งควรมีอีเมลในตัวเลือก"
@@ -23678,7 +23880,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23688,7 +23890,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23715,11 +23917,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "ระบบไม่สามารถประมวลผลคำขอ เนื่องจากเกิดข้อขัดแย้งจากคำขอที่ทำงานพร้อมกัน กรุณาลองอีกครั้ง"
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23747,16 +23953,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "ค่าเริ่มต้นของเซสชัน"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "บันทึกค่าเริ่มต้นของเซสชันแล้ว"
@@ -23797,7 +24001,7 @@ msgstr "ตั้งค่า"
msgid "Set Banner from Image"
msgstr "ตั้งค่าแบนเนอร์จากภาพ"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "ตั้งค่าแผนภูมิ"
@@ -23823,7 +24027,7 @@ msgstr "ตั้งค่าตัวกรอง"
msgid "Set Filters for {0}"
msgstr "ตั้งค่าตัวกรองสำหรับ {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "ตั้งค่าระดับ"
@@ -23866,8 +24070,8 @@ msgstr "ตั้งค่าคุณสมบัติ"
msgid "Set Property After Alert"
msgstr "ตั้งค่าคุณสมบัติหลังการแจ้งเตือน"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "ตั้งค่าปริมาณ"
@@ -23887,12 +24091,12 @@ msgstr "ตั้งค่าสิทธิ์ผู้ใช้"
msgid "Set Value"
msgstr "ตั้งค่ามูลค่า"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "ตั้งค่าทั้งหมดเป็นส่วนตัว"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "ตั้งค่าทั้งหมดเป็นสาธารณะ"
@@ -23996,8 +24200,8 @@ msgstr "กำลังตั้งค่าระบบของคุณ"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24020,11 +24224,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "การตั้งค่า"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "การตั้งค่า > ปรับแต่งฟอร์ม"
@@ -24032,12 +24236,12 @@ msgstr "การตั้งค่า > ปรับแต่งฟอร์ม
msgid "Setup > User"
msgstr "การตั้งค่า > ผู้ใช้"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "การตั้งค่า > สิทธิ์ผู้ใช้"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "ตั้งค่าอีเมลอัตโนมัติ"
@@ -24066,13 +24270,14 @@ msgstr "การตั้งค่าล้มเหลว"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "แชร์"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "แชร์กับ"
@@ -24080,7 +24285,7 @@ msgstr "แชร์กับ"
msgid "Share this document with"
msgstr "แชร์เอกสารนี้กับ"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "แชร์ {0} กับ"
@@ -24140,16 +24345,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr "แสดงค่าที่แน่นอน"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "แสดงทั้งหมด"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24195,7 +24394,7 @@ msgstr "แสดงข้อผิดพลาด"
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "แสดงชื่อฟิลด์ (คลิกเพื่อคัดลอกไปยังคลิปบอร์ด)"
@@ -24247,7 +24446,7 @@ msgstr "แสดงตัวเลือกภาษา"
msgid "Show Line Breaks after Sections"
msgstr "แสดงการแบ่งบรรทัดหลังส่วน"
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "แสดงลิงก์"
@@ -24367,7 +24566,7 @@ msgstr "แสดงวันหยุดสุดสัปดาห์"
msgid "Show account deletion link in My Account page"
msgstr "แสดงลิงก์ลบบัญชีในหน้าบัญชีของฉัน"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "แสดงทุกเวอร์ชัน"
@@ -24509,7 +24708,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24632,7 +24831,7 @@ msgstr "ข้ามคอลัมน์ที่ไม่มีชื่อ"
msgid "Skipping column {0}"
msgstr "ข้ามคอลัมน์ {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "ข้ามการซิงค์ฟิกซ์เจอร์สำหรับประเภทเอกสาร {0} จากไฟล์ {1}"
@@ -24807,15 +25006,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24846,13 +25045,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24901,7 +25100,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr "ไม่อนุญาตอักขระพิเศษ"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "ไม่อนุญาตอักขระพิเศษยกเว้น '-', '#', '.', '/', '{{' และ '}}' ในชุดการตั้งชื่อ {0}"
@@ -24940,6 +25139,7 @@ msgstr "การติดตามสแต็ก"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24947,6 +25147,7 @@ msgstr "การติดตามสแต็ก"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25014,8 +25215,8 @@ msgstr "ไม่สามารถลบประเภทผู้ใช้ม
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25187,7 +25388,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25225,7 +25426,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25339,7 +25540,7 @@ msgstr "ซับโดเมน"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "หัวข้อ"
@@ -25353,7 +25554,7 @@ msgstr "หัวข้อ"
msgid "Subject Field"
msgstr "ฟิลด์หัวข้อ"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "ประเภทฟิลด์หัวข้อควรเป็นข้อมูล, ข้อความ, ข้อความยาว, ข้อความเล็ก, ตัวแก้ไขข้อความ"
@@ -25374,14 +25575,14 @@ msgstr "คิวการส่ง"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "ส่ง"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "ส่ง"
@@ -25411,7 +25612,7 @@ msgstr "ส่ง"
msgid "Submit After Import"
msgstr "ส่งหลังจากนำเข้า"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "ส่งปัญหา"
@@ -25435,11 +25636,11 @@ msgstr "ส่งเมื่อสร้าง"
msgid "Submit this document to complete this step."
msgstr "ส่งเอกสารนี้เพื่อดำเนินการขั้นตอนนี้ให้เสร็จสิ้น"
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "ส่งเอกสารนี้เพื่อยืนยัน"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "ส่งเอกสาร {0} หรือไม่?"
@@ -25465,7 +25666,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "กำลังส่ง"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "กำลังส่ง {0}"
@@ -25500,12 +25701,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25547,7 +25748,7 @@ msgstr "ชื่อเรื่องสำเร็จ"
msgid "Successful Job Count"
msgstr "จำนวนงานที่สำเร็จ"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "ธุรกรรมที่สำเร็จ"
@@ -25572,7 +25773,7 @@ msgstr "นำเข้า {0} จาก {1} รายการสำเร็
msgid "Successfully reset onboarding status for all users."
msgstr "รีเซ็ตสถานะการเริ่มต้นใช้งานสำหรับผู้ใช้ทั้งหมดสำเร็จ"
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25597,7 +25798,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25638,7 +25839,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr "ระงับการส่ง"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "สลับกล้อง"
@@ -25651,7 +25852,7 @@ msgstr "สลับธีม"
msgid "Switch To Desk"
msgstr "สลับไปที่เดสก์"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "กำลังสลับกล้อง"
@@ -25720,9 +25921,7 @@ msgid "Syntax Error"
msgstr "ข้อผิดพลาดทางไวยากรณ์"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "ระบบ"
@@ -25732,7 +25931,7 @@ msgstr "ระบบ"
msgid "System Console"
msgstr "คอนโซลระบบ"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "ไม่สามารถเปลี่ยนชื่อฟิลด์ที่ระบบสร้างขึ้นได้"
@@ -25859,6 +26058,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25873,7 +26073,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25949,6 +26148,11 @@ msgstr "หน้าระบบ"
msgid "System Settings"
msgstr "การตั้งค่าระบบ"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25965,6 +26169,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26000,7 +26210,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26009,7 +26219,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26027,7 +26237,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26035,11 +26245,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26059,17 +26269,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26153,7 +26363,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26249,7 +26459,7 @@ msgstr "ขอบคุณ"
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26301,7 +26511,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "ลิงก์รีเซ็ตรหัสผ่านหมดอายุแล้ว"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง"
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "ทรัพยากรที่คุณกำลังมองหาไม่มีอยู่"
@@ -26449,7 +26667,7 @@ msgstr "บทบาท {0} ควรเป็นบทบาทที่กำ
msgid "The selected document {0} is not a {1}."
msgstr "เอกสารที่เลือก {0} ไม่ใช่ {1}"
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "ระบบกำลังอัปเดต โปรดรีเฟรชอีกครั้งหลังจากสักครู่"
@@ -26461,6 +26679,42 @@ msgstr "ระบบมีบทบาทที่กำหนดไว้ล่
msgid "The total number of user document types limit has been crossed."
msgstr "จำนวนประเภทเอกสารผู้ใช้ทั้งหมดเกินขีดจำกัดแล้ว"
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr "ค่าที่คุณวางมีความยาว {0} ตัวอักษร จำนวนตัวอักษรสูงสุดที่อนุญาตคือ {1}"
@@ -26502,7 +26756,7 @@ msgstr ""
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr ""
@@ -26510,7 +26764,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26519,7 +26773,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26531,11 +26785,11 @@ msgstr ""
msgid "There is no data to be exported"
msgstr ""
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr ""
@@ -26543,7 +26797,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr "มีปัญหากับ URL ของไฟล์: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "มี {0} ที่มีตัวกรองเดียวกันอยู่ในคิวแล้ว:"
@@ -26559,7 +26813,7 @@ msgstr "เกิดข้อผิดพลาดในการสร้าง
msgid "There was an error saving filters"
msgstr "เกิดข้อผิดพลาดในการบันทึกตัวกรอง"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "มีข้อผิดพลาด"
@@ -26567,11 +26821,11 @@ msgstr "มีข้อผิดพลาด"
msgid "There were errors while creating the document. Please try again."
msgstr "เกิดข้อผิดพลาดขณะสร้างเอกสาร โปรดลองอีกครั้ง"
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "เกิดข้อผิดพลาดขณะส่งอีเมล โปรดลองอีกครั้ง"
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "เกิดข้อผิดพลาดบางอย่างในการตั้งชื่อ โปรดติดต่อผู้ดูแลระบบ"
@@ -26640,11 +26894,11 @@ msgstr "ปีนี้"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?"
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "การกระทำนี้อนุญาตเฉพาะสำหรับ {}"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "ไม่สามารถย้อนกลับได้"
@@ -26668,7 +26922,7 @@ msgstr "แผนภูมินี้จะพร้อมใช้งานส
msgid "This doctype has no orphan fields to trim"
msgstr "ประเภทเอกสารนี้ไม่มีฟิลด์ที่ไม่ได้ใช้งานให้ตัดแต่ง"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "ประเภทเอกสารนี้มีการย้ายข้อมูลที่ค้างอยู่ ให้รัน 'bench migrate' ก่อนแก้ไขประเภทเอกสารเพื่อหลีกเลี่ยงการสูญเสียการเปลี่ยนแปลง"
@@ -26684,15 +26938,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr "เอกสารนี้ถูกแก้ไขหลังจากส่งอีเมลแล้ว"
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "เอกสารนี้มีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกซึ่งอาจไม่ปรากฏใน PDF สุดท้าย
พิจารณาบันทึกเอกสารก่อนพิมพ์"
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr "เอกสารนี้ได้รับการแก้ไขแล้ว คุณไม่สามารถแก้ไขได้อีก"
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "เอกสารนี้ถูกล็อกและจัดคิวสำหรับการดำเนินการ โปรดลองอีกครั้งหลังจากสักครู่"
@@ -26705,7 +26959,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "คุณลักษณะนี้เป็นของใหม่และยังอยู่ในขั้นทดลอง"
@@ -26730,11 +26984,11 @@ msgstr "ไฟล์นี้เป็นสาธารณะและสาม
msgid "This file is public. It can be accessed without authentication."
msgstr "ไฟล์นี้เป็นสาธารณะ สามารถเข้าถึงได้โดยไม่ต้องยืนยันตัวตน"
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "ฟอร์มนี้ถูกแก้ไขหลังจากที่คุณโหลดแล้ว"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "ฟอร์มนี้ไม่สามารถแก้ไขได้เนื่องจากเวิร์กโฟลว์"
@@ -26753,7 +27007,7 @@ msgstr "ผู้ให้บริการตำแหน่งทางภู
msgid "This goes above the slideshow."
msgstr "สิ่งนี้จะอยู่เหนือสไลด์โชว์"
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างใหม่"
@@ -26795,15 +27049,15 @@ msgstr "ลิงก์นี้ถูกเปิดใช้งานแล้
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "ลิงก์นี้ไม่ถูกต้องหรือหมดอายุ โปรดตรวจสอบว่าคุณวางถูกต้อง"
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "สิ่งนี้อาจถูกพิมพ์ในหลายหน้า"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "เดือนนี้"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "รายงานนี้มี {0} แถวและใหญ่เกินไปที่จะแสดงในเบราว์เซอร์ คุณสามารถ {1} รายงานนี้แทน"
@@ -26811,7 +27065,7 @@ msgstr "รายงานนี้มี {0} แถวและใหญ่เ
msgid "This report was generated on {0}"
msgstr "รายงานนี้ถูกสร้างขึ้นเมื่อ {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "รายงานนี้ถูกสร้างขึ้น {0}"
@@ -26835,7 +27089,7 @@ msgstr "ซอฟต์แวร์นี้สร้างขึ้นบนพ
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "ชื่อนี้จะถูกใช้เป็นชื่อของหน้าเว็บรวมถึงในแท็กเมตา"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "ค่านี้ถูกดึงมาจากฟิลด์ {1} ของ {0}"
@@ -26879,7 +27133,7 @@ msgstr "สิ่งนี้จะรีเซ็ตทัวร์นี้แ
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr ""
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
@@ -26910,6 +27164,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26917,6 +27172,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26999,11 +27255,6 @@ msgstr ""
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
@@ -27035,11 +27286,11 @@ msgstr ""
msgid "Timeline Name"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
@@ -27110,7 +27361,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27133,7 +27384,7 @@ msgstr ""
msgid "Title Prefix"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27219,7 +27470,7 @@ msgstr "เพื่อส่งออกขั้นตอนนี้เป็
msgid "To generate password click {0}"
msgstr "เพื่อสร้างรหัสผ่าน คลิก {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "เพื่อรับรายงานที่อัปเดต คลิกที่ {0}"
@@ -27272,31 +27523,14 @@ msgstr "สิ่งที่ต้องทำ"
msgid "Today"
msgstr "วันนี้"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "สลับแผนภูมิ"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "สลับความกว้างเต็ม"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "สลับมุมมองตาราง"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "สลับแถบด้านข้าง"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "สลับธีม"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27332,7 +27566,7 @@ msgid "Tomorrow"
msgstr "พรุ่งนี้"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "เอกสารมากเกินไป"
@@ -27340,15 +27574,19 @@ msgstr "เอกสารมากเกินไป"
msgid "Too Many Requests"
msgstr "คำขอมากเกินไป"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "การเปลี่ยนแปลงฐานข้อมูลมากเกินไปในหนึ่งการกระทำ"
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "งานพื้นหลังที่คิวมากเกินไป ({0}) โปรดลองอีกครั้งหลังจากสักครู่"
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "ผู้ใช้จำนวนมากลงทะเบียนเมื่อเร็ว ๆ นี้ ดังนั้นการลงทะเบียนจึงถูกปิดใช้งาน โปรดลองอีกครั้งในหนึ่งชั่วโมง"
@@ -27404,10 +27642,10 @@ msgstr "ขวาบน"
msgid "Topic"
msgstr "หัวข้อ"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "รวม"
@@ -27422,7 +27660,7 @@ msgstr "รวมผู้ปฏิบัติงานพื้นหลัง
msgid "Total Errors (last 1 day)"
msgstr "รวมข้อผิดพลาด (1 วันที่ผ่านมา)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "รวมภาพ"
@@ -27522,7 +27760,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr "ติดตามเหตุการณ์สำคัญสำหรับเอกสารใด ๆ"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "URL การติดตามถูกสร้างและคัดลอกไปยังคลิปบอร์ด"
@@ -27558,7 +27796,7 @@ msgstr "การเปลี่ยนผ่าน"
msgid "Translatable"
msgstr "สามารถแปลได้"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "แปลข้อมูล"
@@ -27569,7 +27807,7 @@ msgstr "แปลข้อมูล"
msgid "Translate Link Fields"
msgstr "แปลฟิลด์ลิงก์"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "แปลค่า"
@@ -27605,7 +27843,7 @@ msgstr ""
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr ""
@@ -27654,8 +27892,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27701,6 +27939,7 @@ msgstr ""
#. 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 'Event Notifications'
#. 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'
@@ -27714,6 +27953,7 @@ msgstr ""
#: 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/event_notifications/event_notifications.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
@@ -27722,7 +27962,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27889,7 +28129,7 @@ msgstr "แหล่งที่มา UTM"
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "เลิกติดตามเอกสาร {0}"
@@ -27897,7 +28137,7 @@ msgstr "เลิกติดตามเอกสาร {0}"
msgid "Unable to find DocType {0}"
msgstr "ไม่สามารถหา DocType {0} ได้"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "ไม่สามารถโหลดกล้องได้"
@@ -27913,7 +28153,7 @@ msgstr "ไม่สามารถเปิดไฟล์ที่แนบม
msgid "Unable to read file format for {0}"
msgstr "ไม่สามารถอ่านรูปแบบไฟล์สำหรับ {0}"
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "ไม่สามารถส่งอีเมลได้เนื่องจากไม่มีบัญชีอีเมล โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจาก การตั้งค่า > บัญชีอีเมล"
@@ -27934,20 +28174,20 @@ msgstr "ยกเลิกการกำหนดเงื่อนไข"
msgid "Uncaught Exception"
msgstr "ข้อยกเว้นที่ไม่ได้จับ"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "ไม่เปลี่ยนแปลง"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "เลิกทำ"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "เลิกทำการกระทำล่าสุด"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "เลิกติดตาม"
@@ -28021,9 +28261,10 @@ msgstr "การแจ้งเตือนที่ยังไม่ได้
msgid "Unsafe SQL query"
msgstr "คำสั่ง SQL ที่ไม่ปลอดภัย"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "ยกเลิกการเลือกทั้งหมด"
@@ -28056,11 +28297,11 @@ msgstr "พารามิเตอร์ยกเลิกการสมัค
msgid "Unsubscribed"
msgstr "ยกเลิกการสมัครสมาชิกแล้ว"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28080,7 +28321,7 @@ msgstr "แตกไฟล์ {0} แล้ว"
msgid "Unzipping files..."
msgstr "กำลังแตกไฟล์..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "กิจกรรมที่กำลังจะมาถึงสำหรับวันนี้"
@@ -28088,13 +28329,13 @@ msgstr "กิจกรรมที่กำลังจะมาถึงสำ
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "อัปเดต"
@@ -28165,7 +28406,7 @@ msgstr "อัปเดตค่า"
msgid "Update from Frappe Cloud"
msgstr "อัปเดตจาก Frappe Cloud"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "อัปเดตระเบียน {0}"
@@ -28173,8 +28414,7 @@ msgstr "อัปเดตระเบียน {0}"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "อัปเดตแล้ว"
@@ -28186,11 +28426,11 @@ msgstr "อัปเดตสำเร็จ"
msgid "Updated To A New Version 🎉"
msgstr "อัปเดตเป็นเวอร์ชันใหม่ 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "อัปเดตสำเร็จ"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "กำลังอัปเดต"
@@ -28215,11 +28455,11 @@ msgstr "กำลังอัปเดตการตั้งค่าทั่
msgid "Updating naming series options"
msgstr "กำลังอัปเดตตัวเลือกซีรีส์การตั้งชื่อ"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "กำลังอัปเดตฟิลด์ที่เกี่ยวข้อง..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "กำลังอัปเดต {0}"
@@ -28227,12 +28467,12 @@ msgstr "กำลังอัปเดต {0}"
msgid "Updating {0} of {1}, {2}"
msgstr "กำลังอัปเดต {0} ของ {1}, {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "อัปเกรดแผน"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28280,6 +28520,7 @@ msgstr "ใช้วันแรกของช่วงเวลา"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "ใช้ HTML"
@@ -28351,7 +28592,7 @@ msgstr "ใช้หากการตั้งค่าเริ่มต้น
msgid "Use of sub-query or function is restricted"
msgstr "การใช้คำสั่งย่อยหรือฟังก์ชันถูกจำกัด"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "ใช้ตัวสร้างรูปแบบการพิมพ์ใหม่"
@@ -28385,9 +28626,8 @@ msgstr "ใช้ OAuth แล้ว"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28414,11 +28654,11 @@ msgstr "ใช้ OAuth แล้ว"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28554,7 +28794,7 @@ msgstr "ภาพผู้ใช้"
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "เมนูผู้ใช้"
@@ -28570,19 +28810,19 @@ msgid "User Permission"
msgstr "สิทธิ์ของผู้ใช้"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "สิทธิ์ของผู้ใช้"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "สิทธิ์ของผู้ใช้"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "สิทธิ์ของผู้ใช้ใช้เพื่อจำกัดผู้ใช้ให้เข้าถึงระเบียนเฉพาะ"
@@ -28655,7 +28895,7 @@ msgstr "ผู้ใช้สามารถเข้าสู่ระบบโ
msgid "User can login using Email id or User Name"
msgstr "ผู้ใช้สามารถเข้าสู่ระบบโดยใช้รหัสอีเมลหรือชื่อผู้ใช้"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "ผู้ใช้ไม่มีอยู่"
@@ -28689,27 +28929,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "ไม่สามารถลบผู้ใช้ {0} ได้"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "ไม่สามารถปิดใช้งานผู้ใช้ {0} ได้"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "ไม่สามารถเปลี่ยนชื่อผู้ใช้ {0} ได้"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์เข้าถึงเอกสารนี้"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์เข้าถึงประเภทเอกสารผ่านสิทธิ์บทบาทสำหรับเอกสาร {1}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์สร้างพื้นที่ทำงาน"
@@ -28718,11 +28958,11 @@ msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์สร้าง
msgid "User {0} has requested for data deletion"
msgstr "ผู้ใช้ {0} ได้ร้องขอการลบข้อมูล"
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "ผู้ใช้ {0} ปลอมตัวเป็น {1}"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน"
@@ -28747,18 +28987,17 @@ msgstr "URI ข้อมูลผู้ใช้"
msgid "Username"
msgstr "ชื่อผู้ใช้"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "ชื่อผู้ใช้ {0} มีอยู่แล้ว"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28829,7 +29068,7 @@ msgstr "ตรวจสอบการตั้งค่าอีเมล Frapp
msgid "Validate SSL Certificate"
msgstr "ตรวจสอบใบรับรอง SSL"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "ข้อผิดพลาดในการตรวจสอบ"
@@ -28858,7 +29097,7 @@ msgstr "ความถูกต้อง"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28885,15 +29124,19 @@ msgstr "ค่าที่เปลี่ยนแปลง"
msgid "Value To Be Set"
msgstr "ค่าที่จะตั้ง"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "ค่าไม่สามารถเปลี่ยนแปลงได้สำหรับ {0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "ค่าไม่สามารถเป็นค่าลบได้สำหรับ"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "ค่าไม่สามารถเป็นค่าลบได้สำหรับ {0}: {1}"
@@ -28905,7 +29148,7 @@ msgstr "ค่าของฟิลด์ตรวจสอบสามารถ
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "ค่าของฟิลด์ {0} ยาวเกินไปใน {1} ความยาวควรน้อยกว่า {2} ตัวอักษร"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "ค่าของ {0} ไม่สามารถเป็นรายการได้"
@@ -28930,7 +29173,13 @@ msgstr ""
msgid "Value to Validate"
msgstr "ค่าที่จะตรวจสอบ"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "ค่ามากเกินไป"
@@ -28947,7 +29196,7 @@ msgstr "ค่า {0} ต้องอยู่ในรูปแบบระย
msgid "Value {0} must in {1} format"
msgstr "ค่า {0} ต้องอยู่ในรูปแบบ {1}"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "ค่าที่เปลี่ยนแปลง"
@@ -28956,11 +29205,11 @@ msgstr "ค่าที่เปลี่ยนแปลง"
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "การตรวจสอบ"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "รหัสการตรวจสอบ"
@@ -28968,7 +29217,7 @@ msgstr "รหัสการตรวจสอบ"
msgid "Verification Link"
msgstr "ลิงก์การตรวจสอบ"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "อีเมลรหัสการตรวจสอบไม่ได้ส่ง โปรดติดต่อผู้ดูแลระบบ"
@@ -28982,7 +29231,7 @@ msgid "Verified"
msgstr "ตรวจสอบแล้ว"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "ตรวจสอบ"
@@ -29018,7 +29267,7 @@ msgstr "ดู"
msgid "View All"
msgstr "ดูทั้งหมด"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "ดูเส้นทางการตรวจสอบ"
@@ -29030,7 +29279,7 @@ msgstr "ดูสิทธิ์ประเภทเอกสาร"
msgid "View File"
msgstr "ดูไฟล์"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "ดูบันทึกทั้งหมด"
@@ -29067,7 +29316,7 @@ msgstr "ดูรายงาน"
msgid "View Settings"
msgstr "ดูการตั้งค่า"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29076,14 +29325,11 @@ msgstr ""
msgid "View Switcher"
msgstr "ดูตัวสลับ"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "ดูเว็บไซต์"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29099,7 +29345,7 @@ msgstr "ดูรายงานในเบราว์เซอร์ของ
msgid "View this in your browser"
msgstr "ดูสิ่งนี้ในเบราว์เซอร์ของคุณ"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "ดูการตอบกลับของคุณ"
@@ -29135,7 +29381,7 @@ msgstr "ประเภทเอกสารเสมือน {} ต้อง
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "ประเภทเอกสารเสมือน {} ต้องการการแทนที่เมธอดอินสแตนซ์ที่เรียกว่า {} พบ {}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29183,7 +29429,7 @@ msgstr "คลังสินค้า"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "คำเตือน"
@@ -29192,7 +29438,7 @@ msgstr "คำเตือน"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "คำเตือน: ข้อมูลสูญหายใกล้เข้ามา! การดำเนินการจะลบคอลัมน์ฐานข้อมูลต่อไปนี้ออกจากประเภทเอกสาร {0} อย่างถาวร:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "คำเตือน: ยังไม่ได้ตั้งชื่อ"
@@ -29276,7 +29522,7 @@ msgstr "หน้าเว็บ"
msgid "Web Page Block"
msgstr "บล็อกหน้าเว็บ"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "URL หน้าเว็บ"
@@ -29373,7 +29619,7 @@ msgstr "URL Webhook"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29428,7 +29674,7 @@ msgstr "สคริปต์เว็บไซต์"
msgid "Website Search Field"
msgstr "ฟิลด์ค้นหาเว็บไซต์"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "ฟิลด์ค้นหาเว็บไซต์ต้องเป็นชื่อฟิลด์ที่ถูกต้อง"
@@ -29493,6 +29739,11 @@ msgstr "ลิงก์ภาพธีมเว็บไซต์"
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29580,15 +29831,15 @@ msgstr "URL ต้อนรับ"
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "ส่งอีเมลต้อนรับแล้ว"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "ยินดีต้อนรับสู่ {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "มีอะไรใหม่"
@@ -29610,10 +29861,6 @@ msgstr "เมื่อส่งเอกสารทางอีเมล ใ
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr "เมื่ออัปโหลดไฟล์ บังคับให้ใช้การจับภาพบนเว็บ หากไม่ได้เลือกสิ่งนี้ พฤติกรรมเริ่มต้นคือการใช้กล้องพื้นฐานของมือถือเมื่อมีการตรวจพบการใช้งานจากมือถือ"
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr "เมื่อคุณแก้ไขเอกสารหลังจากยกเลิกและบันทึก มันจะได้รับหมายเลขใหม่ที่เป็นเวอร์ชันของหมายเลขเก่า"
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29631,7 +29878,7 @@ msgstr "มุมมองใดของ DocType ที่เกี่ยวข
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "ความกว้าง"
@@ -29752,6 +29999,10 @@ msgstr "รายละเอียดเวิร์กโฟลว์"
msgid "Workflow Document State"
msgstr "สถานะเอกสารเวิร์กโฟลว์"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -29769,11 +30020,11 @@ msgstr "สถานะเวิร์กโฟลว์"
msgid "Workflow State Field"
msgstr "ฟิลด์สถานะเวิร์กโฟลว์"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "ไม่ได้ตั้งค่าสถานะเวิร์กโฟลว์"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "ไม่อนุญาตให้เปลี่ยนสถานะเวิร์กโฟลว์จาก {0} เป็น {1}"
@@ -29781,7 +30032,7 @@ msgstr "ไม่อนุญาตให้เปลี่ยนสถานะ
msgid "Workflow States Don't Exist"
msgstr "สถานะเวิร์กโฟลว์ไม่มีอยู่"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "สถานะเวิร์กโฟลว์"
@@ -29816,18 +30067,15 @@ msgstr "อัปเดตเวิร์กโฟลว์สำเร็จ"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "พื้นที่ทำงาน"
@@ -29854,7 +30102,6 @@ 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 "ผู้จัดการพื้นที่ทำงาน"
@@ -29868,27 +30115,15 @@ msgstr "การ์ดตัวเลขพื้นที่ทำงาน"
msgid "Workspace Quick List"
msgstr "รายการด่วนพื้นที่ทำงาน"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "การตั้งค่าพื้นที่ทำงาน"
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr "การตั้งค่าพื้นที่ทำงานเสร็จสมบูรณ์"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "ทางลัดพื้นที่ทำงาน"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -29898,13 +30133,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr "การมองเห็นพื้นที่ทำงาน"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "สร้างพื้นที่ทำงาน {0} แล้ว"
@@ -29933,11 +30162,12 @@ msgstr "กำลังสรุป"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "เขียน"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "ค่าที่ดึงมาผิด"
@@ -29955,7 +30185,7 @@ msgstr "ฟิลด์ X"
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -29970,7 +30200,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "ฟิลด์ Y"
@@ -30018,10 +30248,14 @@ msgstr "สีเหลือง"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30030,10 +30264,10 @@ msgstr "สีเหลือง"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "ใช่"
@@ -30069,7 +30303,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30077,7 +30311,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr "คุณเชื่อมต่อกับอินเทอร์เน็ตแล้ว"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "คุณกำลังปลอมตัวเป็นผู้ใช้อื่น"
@@ -30085,11 +30319,11 @@ msgstr "คุณกำลังปลอมตัวเป็นผู้ใช
msgid "You are not allowed to access this resource"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้"
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
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:426
+#: frappe/permissions.py:432
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}"
@@ -30112,7 +30346,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้แก้
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "คุณไม่ได้รับอนุญาตให้นำออกประเภทเอกสาร {}"
@@ -30120,10 +30354,14 @@ msgstr "คุณไม่ได้รับอนุญาตให้นำอ
msgid "You are not allowed to print this report"
msgstr "คุณไม่ได้รับอนุญาตให้พิมพ์รายงานนี้"
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr "คุณไม่ได้รับอนุญาตให้ส่งอีเมลที่เกี่ยวข้องกับเอกสารนี้"
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "คุณไม่ได้รับอนุญาตให้อัปเดตเอกสารฟอร์มเว็บนี้"
@@ -30140,7 +30378,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้เข้
msgid "You are not permitted to access this page."
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้"
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้ โปรดเข้าสู่ระบบเพื่อเข้าถึง"
@@ -30148,7 +30386,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "คุณได้รับอนุญาตให้ปรับปรุงคำสั่งซื้อเท่านั้น ห้ามลบหรือเพิ่มแอป"
@@ -30161,7 +30399,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "คุณแนบ {0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "คุณสามารถเพิ่มคุณสมบัติแบบไดนามิกจากเอกสารโดยใช้ Jinja templating"
@@ -30185,10 +30423,6 @@ msgstr "คุณยังสามารถคัดลอก-วาง {0} น
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "คุณสามารถเปลี่ยนเอกสารที่ส่งแล้วโดยการยกเลิกและแก้ไข"
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "คุณสามารถเปลี่ยนนโยบายการเก็บรักษาจาก {0}"
@@ -30243,7 +30477,7 @@ msgstr "คุณสามารถตั้งค่าค่าสูงที
msgid "You can try changing the filters of your report."
msgstr "คุณสามารถลองเปลี่ยนตัวกรองของรายงานของคุณ"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "คุณสามารถใช้ฟอร์มปรับแต่งเพื่อกำหนดระดับในฟิลด์"
@@ -30273,6 +30507,10 @@ msgstr "คุณยกเลิกเอกสารนี้ {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "คุณไม่สามารถสร้างแผนภูมิแดชบอร์ดจากประเภทเอกสารเดียวได้"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "คุณไม่สามารถยกเลิกการตั้งค่า 'อ่านอย่างเดียว' สำหรับฟิลด์ {0} ได้"
@@ -30299,7 +30537,6 @@ msgid "You changed {0} to {1}"
msgstr "คุณเปลี่ยน {0} เป็น {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "คุณสร้างสิ่งนี้"
@@ -30308,11 +30545,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "คุณสร้างเอกสารนี้ {0}"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "คุณไม่มีสิทธิ์อ่านหรือเลือกสำหรับ {}"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะเข้าถึงทรัพยากรนี้ โปรดติดต่อผู้จัดการของคุณเพื่อขอสิทธิ์เข้าถึง"
@@ -30324,15 +30557,19 @@ msgstr "คุณไม่มีสิทธิ์เพียงพอที่
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}"
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "คุณไม่มีสิทธิ์ยกเลิกเอกสารที่เชื่อมโยงทั้งหมด"
@@ -30368,7 +30605,7 @@ msgstr "คุณออกจากระบบสำเร็จแล้ว"
msgid "You have hit the row size limit on database table: {0}"
msgstr "คุณถึงขีดจำกัดขนาดแถวในตารางฐานข้อมูล: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "คุณไม่ได้ป้อนค่า ฟิลด์จะถูกตั้งค่าเป็นว่างเปล่า"
@@ -30388,7 +30625,7 @@ msgstr "คุณมี {0} ที่ยังไม่ได้ดู"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "คุณยังไม่ได้เพิ่มแผนภูมิแดชบอร์ดหรือการ์ดตัวเลขใด ๆ"
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "คุณยังไม่ได้สร้าง {0}"
@@ -30397,7 +30634,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "คุณถึงขีดจำกัดอัตราเนื่องจากคำขอมากเกินไป โปรดลองอีกครั้งในภายหลัง"
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "คุณแก้ไขสิ่งนี้ล่าสุด"
@@ -30413,12 +30649,12 @@ msgstr "คุณต้องเข้าสู่ระบบเพื่อใ
msgid "You must login to submit this form"
msgstr "คุณต้องเข้าสู่ระบบเพื่อส่งฟอร์มนี้"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "คุณต้องมีสิทธิ์ '{0}' ใน {1} {2} เพื่อดำเนินการนี้"
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "คุณต้องเป็นผู้จัดการพื้นที่ทำงานเพื่อที่จะลบพื้นที่ทำงานสาธารณะ"
@@ -30426,7 +30662,7 @@ msgstr "คุณต้องเป็นผู้จัดการพื้น
msgid "You need to be Workspace Manager to edit this document"
msgstr "คุณต้องเป็นผู้จัดการพื้นที่ทำงานเพื่อแก้ไขเอกสารนี้"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "คุณต้องเป็นผู้ใช้ระบบเพื่อเข้าถึงหน้านี้"
@@ -30458,7 +30694,7 @@ msgstr "คุณต้องเปิดใช้งาน JavaScript เพื
msgid "You need to have \"Share\" permission"
msgstr ""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "คุณต้องติดตั้ง pycups เพื่อใช้คุณสมบัตินี้!"
@@ -30478,7 +30714,7 @@ msgstr "คุณต้องมีสิทธิ์เขียนใน {0} {
msgid "You need write permission on {0} {1} to rename"
msgstr "คุณต้องมีสิทธิ์เขียนใน {0} {1} เพื่อเปลี่ยนชื่อ"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "คุณต้องมีสิทธิ์ {0} เพื่อดึงค่าจาก {1} {2}"
@@ -30525,7 +30761,7 @@ msgstr "คุณเลิกติดตามเอกสารนี้"
msgid "You viewed this"
msgstr "คุณดูสิ่งนี้"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30602,7 +30838,7 @@ msgstr "ที่อยู่อีเมลของคุณ"
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "ฟอร์มของคุณได้รับการอัปเดตเรียบร้อยแล้ว"
@@ -30644,7 +30880,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr "เซสชันของคุณหมดอายุแล้ว โปรดเข้าสู่ระบบอีกครั้งเพื่อดำเนินการต่อ"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "ไซต์ของคุณกำลังอยู่ในระหว่างการบำรุงรักษาหรือกำลังอัปเดต"
@@ -30666,7 +30902,7 @@ msgstr "ศูนย์หมายถึงส่งระเบียนที
msgid "[Action taken by {0}]"
msgstr "[การดำเนินการโดย {0}]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator` ใช้งานได้เฉพาะกับ `as_list=True` หรือ `as_dict=True`"
@@ -30685,7 +30921,7 @@ msgstr "หลังจากแทรก"
msgid "amend"
msgstr "แก้ไข"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "และ"
@@ -30708,7 +30944,7 @@ msgstr "ตามบทบาท"
msgid "cProfile Output"
msgstr "ผลลัพธ์ cProfile"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "ปฏิทิน"
@@ -30724,7 +30960,9 @@ msgid "canceled"
msgstr "ถูกยกเลิก"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30748,7 +30986,7 @@ msgid "cyan"
msgstr "สีฟ้า"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "วัน"
@@ -30806,7 +31044,7 @@ msgstr "ลบ"
msgid "descending"
msgstr "เรียงจากมากไปน้อย"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "ประเภทเอกสาร..., เช่น ลูกค้า"
@@ -30816,7 +31054,7 @@ msgstr "ประเภทเอกสาร..., เช่น ลูกค้า
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "เช่น (55 + 434) / 4 หรือ =Math.sin(Math.PI/2)..."
@@ -30858,12 +31096,16 @@ msgstr "อีแมคส์"
msgid "email"
msgstr "อีเมล"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "กล่องจดหมายอีเมล"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "ว่างเปล่า"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "ว่างเปล่า"
@@ -30919,12 +31161,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "ไม่พบ gzip ใน PATH! จำเป็นต้องใช้เพื่อสำรองข้อมูล"
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "ฮับ"
@@ -30939,6 +31181,20 @@ msgstr "ไอคอน"
msgid "import"
msgstr "นำเข้า"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -30978,16 +31234,11 @@ msgid "long"
msgstr "ยาว"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "นาที"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "รวม {0} เข้ากับ {1}"
@@ -31006,15 +31257,15 @@ msgstr "ดด-วว-ปปปป"
msgid "mm/dd/yyyy"
msgstr "ดด/วว/ปปปป"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "ชื่อโมดูล..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "ใหม่"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "ประเภทเอกสารใหม่"
@@ -31076,7 +31327,7 @@ msgstr "เมื่ออัปเดต"
msgid "on_update_after_submit"
msgstr "เมื่ออัปเดตหลังจากส่ง"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "หรือ"
@@ -31149,7 +31400,7 @@ msgid "restored {0} as {1}"
msgstr "กู้คืน {0} เป็น {1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "วินาที"
@@ -31233,11 +31484,11 @@ msgstr "ค่าข้อความ เช่น {0} หรือ uid={0},ou=
msgid "submit"
msgstr "ส่ง"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "ชื่อแท็ก เช่น #tag"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "ข้อความในประเภทเอกสาร"
@@ -31335,11 +31586,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "เมื่อคลิกที่องค์ประกอบ จะโฟกัสไปที่ป๊อปโอเวอร์หากมีอยู่"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x (พร้อม qt ที่แก้ไขแล้ว)"
@@ -31375,11 +31628,11 @@ msgstr "ปปปป-ดด-วว"
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31396,8 +31649,8 @@ msgstr "{0} ({1}) (1 แถวจำเป็น)"
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31410,13 +31663,13 @@ msgid "{0} Chart"
msgstr "แผนภูมิ {0}"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "แดชบอร์ด {0}"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31450,11 +31703,11 @@ msgstr ""
msgid "{0} Map"
msgstr "แผนที่ {0}"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "ชื่อ {0}"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} ไม่อนุญาตให้เปลี่ยน {1} หลังจากส่งจาก {2} เป็น {3}"
@@ -31462,7 +31715,7 @@ msgstr "{0} ไม่อนุญาตให้เปลี่ยน {1} หล
msgid "{0} Report"
msgstr "รายงาน {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "รายงาน {0}"
@@ -31475,11 +31728,11 @@ msgid "{0} Tree"
msgstr "ต้นไม้ {0}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "การดูหน้าเว็บ {0}"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "เพิ่ม {0}"
@@ -31541,7 +31794,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} ยกเลิกเอกสารนี้ {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} ไม่สามารถแก้ไขได้เนื่องจากยังไม่ได้ยกเลิก โปรดยกเลิกเอกสารก่อนสร้างการแก้ไข"
@@ -31570,16 +31823,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} เปลี่ยน {1} เป็น {2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0} มีนิพจน์ Fetch From ที่ไม่ถูกต้อง Fetch From ไม่สามารถอ้างอิงตัวเองได้"
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} สร้างสำเร็จ"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "{0} สร้างสิ่งนี้"
@@ -31596,11 +31852,19 @@ msgstr "{0} วัน"
msgid "{0} days ago"
msgstr "{0} วันที่ผ่านมา"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{0} ไม่มีอยู่ในแถว {1}"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "ฟิลด์ {0} ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำใน {1} ได้ เนื่องจากมีค่าที่ไม่ซ้ำอยู่แล้ว"
@@ -31625,7 +31889,7 @@ msgstr "{0} ชั่วโมง"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} ได้กำหนดค่าเริ่มต้นสำหรับ {1} แล้ว"
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31646,7 +31910,11 @@ msgstr "{0} หากคุณไม่ได้ถูกเปลี่ยน
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "{0} ในแถว {1} ไม่สามารถมีทั้ง URL และรายการลูกได้"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} เป็นฟิลด์ที่จำเป็น"
@@ -31654,7 +31922,15 @@ msgstr "{0} เป็นฟิลด์ที่จำเป็น"
msgid "{0} is a not a valid zip file"
msgstr "{0} ไม่ใช่ไฟล์ zip ที่ถูกต้อง"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} เป็นฟิลด์ข้อมูลที่ไม่ถูกต้อง"
@@ -31662,6 +31938,15 @@ msgstr "{0} เป็นฟิลด์ข้อมูลที่ไม่ถ
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} เป็นที่อยู่อีเมลที่ไม่ถูกต้องใน 'ผู้รับ'"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0} อยู่ระหว่าง {1} และ {2}"
@@ -31671,22 +31956,36 @@ msgstr "{0} อยู่ระหว่าง {1} และ {2}"
msgid "{0} is currently {1}"
msgstr "{0} ปัจจุบันคือ {1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} เท่ากับ {1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} มากกว่าหรือเท่ากับ {1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} มากกว่า {1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} น้อยกว่าหรือเท่ากับ {1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} น้อยกว่า {1}"
@@ -31699,10 +31998,14 @@ msgstr "{0} คล้ายกับ {1}"
msgid "{0} is mandatory"
msgstr "{0} เป็นสิ่งจำเป็น"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant 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}"
@@ -31719,12 +32022,12 @@ msgstr "{0} ไม่ใช่ปฏิทินที่ถูกต้อง
msgid "{0} is not a valid Cron expression."
msgstr "{0} ไม่ใช่นิพจน์ Cron ที่ถูกต้อง"
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ไม่ใช่ประเภทเอกสารที่ถูกต้องสำหรับลิงก์แบบไดนามิก"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง"
@@ -31732,23 +32035,23 @@ msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถ
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} ไม่ใช่รหัส ISO 3166 ALPHA-2 ที่ถูกต้อง"
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} ไม่ใช่ชื่อที่ถูกต้อง"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} ไม่ใช่หมายเลขโทรศัพท์ที่ถูกต้อง"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ไม่ใช่สถานะเวิร์กโฟลว์ที่ถูกต้อง โปรดอัปเดตเวิร์กโฟลว์ของคุณและลองอีกครั้ง"
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} ไม่ใช่ประเภทเอกสารหลักที่ถูกต้องสำหรับ {1}"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} ไม่ใช่ฟิลด์หลักที่ถูกต้องสำหรับ {1}"
@@ -31764,6 +32067,11 @@ msgstr "{0} ไม่ใช่ไฟล์ zip"
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} ไม่เท่ากับ {1}"
@@ -31772,10 +32080,12 @@ msgstr "{0} ไม่เท่ากับ {1}"
msgid "{0} is not like {1}"
msgstr "{0} ไม่คล้ายกับ {1}"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0} ไม่ใช่หนึ่งใน {1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} ไม่ได้ตั้งค่า"
@@ -31784,36 +32094,50 @@ msgstr "{0} ไม่ได้ตั้งค่า"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} เป็นรูปแบบการพิมพ์เริ่มต้นสำหรับประเภทเอกสาร {1} แล้ว"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0} เป็นหนึ่งใน {1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} เป็นสิ่งจำเป็น"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} ถูกตั้งค่า"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0} อยู่ภายใน {1}"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} รายการที่เลือก"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} เพิ่งปลอมตัวเป็นคุณ พวกเขาให้เหตุผลนี้: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} แก้ไขสิ่งนี้ล่าสุด"
@@ -31841,35 +32165,35 @@ msgstr "{0} นาทีที่ผ่านมา"
msgid "{0} months ago"
msgstr "{0} เดือนที่ผ่านมา"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0} ต้องอยู่หลังจาก {1}"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} ต้องเริ่มต้นด้วย '{1}'"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} ต้องเท่ากับ '{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} ต้องไม่เป็นหนึ่งใน {1}"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} ต้องเป็นหนึ่งใน {1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} ต้องตั้งค่าก่อน"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} ต้องไม่ซ้ำกัน"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0} ต้องเป็น {1} {2}"
@@ -31886,11 +32210,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} ไม่อนุญาตให้เปลี่ยนชื่อ"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0} ของ {1}"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} ของ {1} ({2} แถวที่มีลูก)"
@@ -31919,7 +32243,7 @@ msgstr "ระเบียน {0} ถูกเก็บไว้เป็นเ
msgid "{0} records deleted"
msgstr "ระเบียน {0} ถูกลบ"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "ระเบียน {0} จะถูกส่งออก"
@@ -31944,7 +32268,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr "บทบาท {0} ไม่มีสิทธิ์ในประเภทเอกสารใด ๆ"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr ""
@@ -31958,7 +32282,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} บันทึกสำเร็จ"
@@ -31966,7 +32290,7 @@ msgstr "{0} บันทึกสำเร็จ"
msgid "{0} self assigned this task: {1}"
msgstr "{0} มอบหมายงานนี้ให้ตัวเอง: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} แชร์เอกสาร {1} {2} กับคุณ"
@@ -32034,7 +32358,7 @@ msgstr "{0} สัปดาห์"
msgid "{0} weeks ago"
msgstr "{0} สัปดาห์ที่ผ่านมา"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32046,7 +32370,7 @@ msgstr "{0} ปี"
msgid "{0} years ago"
msgstr "{0} ปีที่ผ่านมา"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "เพิ่ม {0} {1}"
@@ -32054,11 +32378,11 @@ msgstr "เพิ่ม {0} {1}"
msgid "{0} {1} added to Dashboard {2}"
msgstr "เพิ่ม {0} {1} ในแดชบอร์ด {2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} มีอยู่แล้ว"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32070,11 +32394,11 @@ msgstr "{0} {1} ไม่สามารถเป็นโหนดใบได
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} ไม่มีอยู่ โปรดเลือกเป้าหมายใหม่เพื่อรวม"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} เชื่อมโยงกับเอกสารที่ส่งต่อไปนี้: {2}"
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "ไม่พบ {0} {1}"
@@ -32082,87 +32406,59 @@ msgstr "ไม่พบ {0} {1}"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: ไม่สามารถลบระเบียนที่ส่งได้ คุณต้อง {2} ยกเลิก {3} ก่อน"
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, แถว {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} เสร็จสิ้น | โปรดเปิดแท็บนี้ไว้จนกว่าจะเสร็จสิ้น"
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) จะถูกตัดออก เนื่องจากจำนวนตัวอักษรสูงสุดที่อนุญาตคือ {2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: ไม่สามารถตั้งค่าแก้ไขได้โดยไม่ยกเลิก"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการแก้ไขได้หากไม่สามารถส่งได้"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการส่งได้หากไม่สามารถส่งได้"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: ไม่สามารถตั้งค่ายกเลิกได้โดยไม่ส่ง"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้โดยไม่สร้าง"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: ไม่สามารถตั้งค่าส่ง ยกเลิก แก้ไขได้โดยไม่มีการเขียน"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้เนื่องจาก {1} ไม่สามารถนำเข้าได้"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: ล้มเหลวในการแนบเอกสารที่เกิดซ้ำใหม่ เพื่อเปิดใช้งานการแนบเอกสารในอีเมลแจ้งเตือนการทำซ้ำอัตโนมัติ โปรดเปิดใช้งาน {1} ในการตั้งค่าการพิมพ์"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}: ฟิลด์ '{1}' ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำได้เนื่องจากมีค่าที่ซ้ำกัน"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: ฟิลด์ {1} ในแถว {2} ไม่สามารถซ่อนและบังคับได้โดยไม่มีค่าเริ่มต้น"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: ฟิลด์ {1} ประเภท {2} ไม่สามารถบังคับได้"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}: ชื่อฟิลด์ {1} ปรากฏหลายครั้งในแถว {2}"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถเป็นค่าที่ไม่ซ้ำได้"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: ไม่มีการตั้งค่าสิทธิ์พื้นฐาน"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: อนุญาตให้มีกฎเพียงข้อเดียวที่มีบทบาท ระดับ และ {1} เดียวกัน"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: ตัวเลือกต้องเป็นประเภทเอกสารที่ถูกต้องสำหรับฟิลด์ {1} ในแถว {2}"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: ต้องการตัวเลือกสำหรับฟิลด์ประเภทลิงก์หรือตาราง {1} ในแถว {2}"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: ตัวเลือก {1} ต้องเหมือนกับชื่อประเภทเอกสาร {2} สำหรับฟิลด์ {3}"
@@ -32170,15 +32466,59 @@ msgstr "{0}: ตัวเลือก {1} ต้องเหมือนกั
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: กฎสิทธิ์อื่น ๆ อาจมีผลบังคับใช้ด้วย"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: ต้องตั้งค่าสิทธิ์ที่ระดับ 0 ก่อนที่จะตั้งค่าระดับที่สูงกว่า"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}: คุณสามารถเพิ่มขีดจำกัดสำหรับฟิลด์ได้หากจำเป็นผ่าน {1}"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}: ชื่อฟิลด์ไม่สามารถตั้งค่าเป็นคำสำรอง {1} ได้"
@@ -32191,15 +32531,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: {1} ถูกตั้งค่าเป็นสถานะ {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} เทียบกับ {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถจัดทำดัชนีได้"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} ถูกบันทึกแล้ว"
@@ -32219,11 +32559,11 @@ msgstr "เลือกแถว {count} แล้ว"
msgid "{count} rows selected"
msgstr "เลือกแถว {count} แล้ว"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์ที่ถูกต้อง ควรเป็น {{field_name}}"
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} เสร็จสมบูรณ์"
diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po
index 6150a3f404..3c9b289adb 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:51\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "\"Üst\", bu satırın eklenmesi gereken üst tabloyu belirtir"
msgid "\"Team Members\" or \"Management\""
msgstr "\"Ekip Üyeleri\" veya \"Yönetim\""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "Değişiklik yapmak için \"amended_from\" alanı mevcut olmalıdır."
@@ -66,7 +66,7 @@ msgstr "© Frappe Technologies Pvt. Ltd. ve katkıda bulunanlar"
msgid "<head> HTML"
msgstr "<head> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "{1} türündeki {0} alanı için 'Genel Arama' seçeneğine izin verilmiyor"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "{1} satırındaki {0} türü için 'Genel Arama' seçeneğine izin verilmiyor"
@@ -90,19 +90,19 @@ 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:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' geçerli bir URL değil"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "'{0}' {2} satırındaki {1} türü için izin verilmiyor"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(Zorunlu)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0 en yüksek seviyedir"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1 = Doğru & 0 = Yanlış"
@@ -159,7 +159,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:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1 Rapor"
@@ -190,7 +190,7 @@ msgstr "1 Ay Önce"
msgid "1 of 2"
msgstr "1 / 2"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "1 Kayıt Dışa Aktarılacak"
@@ -770,7 +770,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
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"
@@ -784,7 +784,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "{0} adlı bir alan {1} içinde zaten mevcut"
@@ -828,52 +828,52 @@ msgstr "Bir kelimeyi tek başına tahmin etmek kolaydır."
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A0"
-msgstr "A0"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A1"
-msgstr "A1"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A2"
-msgstr "A2"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A3"
-msgstr "A3"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A4"
-msgstr "A4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A5"
-msgstr "A5"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A6"
-msgstr "A6"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A7"
-msgstr "A7"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A8"
-msgstr "A8"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A9"
-msgstr "A9"
+msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -883,7 +883,7 @@ msgstr "Tümü"
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr "API"
+msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -893,7 +893,7 @@ msgstr "API Erişimi"
#. 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 the api_endpoint_args (Code) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -1053,7 +1053,7 @@ msgstr "Hesap"
#. DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Account Deletion Settings"
-msgstr "Hesap Silme Ayarları"
+msgstr ""
#. Name of a role
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -1096,14 +1096,14 @@ msgstr "İşlem"
#. Label of the action (Small Text) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action / Route"
-msgstr "Aksiyon / Rota"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:305
#: frappe/public/js/frappe/widgets/onboarding_widget.js:376
msgid "Action Complete"
msgstr "Eylem Tamamlandı"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "Eylem Başarısız"
@@ -1120,7 +1120,7 @@ msgstr "Eylem Zaman Aşımı (Saniye)"
#. Label of the action_type (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action Type"
-msgstr "Aksiyon Türü"
+msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:120
msgid "Action {0} completed successfully on {1} {2}. View it {3}"
@@ -1152,13 +1152,13 @@ msgstr "Eylem {0} {1} {2} tarihinde başarısız oldu. Görüntüle {3}"
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "İşlemler"
@@ -1189,7 +1189,7 @@ 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 "Aktif Etki Alanları"
+msgstr ""
#. Label of the active_sessions (Table) field in DocType 'User'
#. Label of the active_sessions (Int) field in DocType 'System Health Report'
@@ -1215,20 +1215,20 @@ msgstr "Aktivite"
msgid "Activity Log"
msgstr "Aktivite Günlüğü"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Yeni"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "Sütun Ekle / Kaldır"
@@ -1236,11 +1236,11 @@ msgstr "Sütun Ekle / Kaldır"
msgid "Add / Update"
msgstr "Ekle / Güncelle"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "Yeni Kural Ekle"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "Dosya Ekle"
@@ -1253,18 +1253,22 @@ msgstr "Arka Plan Ekle"
#. 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 "Alt Kısma Kenarlık Ekle"
+msgstr ""
#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Top"
-msgstr "Üste Kenarlık Ekle"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "Kartı Panoya Ekle"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "Gösterge Paneline Grafik Ekle"
@@ -1273,8 +1277,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:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1292,12 +1296,12 @@ msgstr "Kişileri Ekle"
#. 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 "Konteyner Ekle"
+msgstr ""
#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Add Custom Tags"
-msgstr "Özel Etiket Ekle"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
#: frappe/public/js/frappe/widgets/widget_dialog.js:716
@@ -1307,7 +1311,7 @@ msgstr "Filtreleri Ekle"
#. 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 "Gri Arka Plan Ekle"
+msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
#: frappe/public/js/frappe/ui/group_by/group_by.js:430
@@ -1318,11 +1322,7 @@ msgstr "Grup Ekle"
msgid "Add Indexes"
msgstr "Dizinleri Ekle"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "Çoklu Ekle"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "Yeni İzin Kuralı Ekle"
@@ -1333,54 +1333,50 @@ msgstr "Katılımcı Ekle"
#. 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 "Sorgu Parametreleri Ekle"
+msgstr ""
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "Rol Ekle"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-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:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "İmza Ekle"
#. 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 "Alt Kısma Boşluk Ekle"
+msgstr ""
#. Label of the add_top_padding (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Top"
-msgstr "Üst Kısma Boşluk Ekle"
+msgstr ""
#: frappe/email/doctype/email_group/email_group.js:38
#: frappe/email/doctype/email_group/email_group.js:59
msgid "Add Subscribers"
msgstr "Abonelere Ekle "
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "Etiket Ekle"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "Etiket Ekle"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "Şablon Ekle"
#. Label of the add_total_row (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Add Total Row"
-msgstr "Tüm Satırları Ekle"
+msgstr ""
#. Label of the add_translate_data (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -1390,7 +1386,7 @@ msgstr "Çeviri Verilerini Ekle"
#. 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 "Abonelikten Çıkma Bağlantısı Ekle"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
@@ -1399,7 +1395,7 @@ msgstr "Kullanıcı İzinleri Ekle"
#. Label of the add_video_conferencing (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Add Video Conferencing"
-msgstr "Video Konferans Ekle"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter_list.js:299
msgid "Add a Filter"
@@ -1423,19 +1419,19 @@ msgstr "Yorum"
msgid "Add a new section"
msgstr "Yeni Bölüm Ekle"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "Mevcut satırın üstüne bir satır ekle"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "Alt tarafa bir satır ekle"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "En üste bir satır ekle"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "Mevcut satırın altına bir satır ekle"
@@ -1453,6 +1449,10 @@ msgstr "Sütun ekle"
msgid "Add field"
msgstr "Alan ekle"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1466,6 +1466,10 @@ msgstr ""
msgid "Add page break"
msgstr "Sayfa arası ekle"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "Alt Tablo için Script Ekle"
@@ -1484,7 +1488,7 @@ msgid "Add tab"
msgstr "Sekme Ekle"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "Gösterge Paneline Ekle"
@@ -1524,8 +1528,8 @@ msgstr "Web sayfasının bölümüne HTML eklemek, web sitesi doğrulamas
msgid "Added default log doctypes: {}"
msgstr "Varsayılan günlük kaydı DocType'ları eklendi: {}"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "Eklenen {0} ({1})"
@@ -1539,7 +1543,7 @@ msgstr "Eklenen {0} ({1})"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Additional Permissions"
-msgstr "Ek İzinler"
+msgstr ""
#. Name of a DocType
#. Label of the address (Link) field in DocType 'Contact'
@@ -1579,7 +1583,7 @@ msgstr "Adres Şablonu"
#: frappe/contacts/doctype/address/address.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Title"
-msgstr "Adres Başlığı"
+msgstr ""
#: frappe/contacts/doctype/address/address.py:71
msgid "Address Title is mandatory."
@@ -1588,7 +1592,7 @@ msgstr "Adres Başlığı zorunludur."
#. Label of the address_type (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Address Type"
-msgstr "Adres Tipi"
+msgstr ""
#. Description of the 'Address' (Small Text) field in DocType 'Website
#. Settings'
@@ -1615,7 +1619,7 @@ msgstr "DocType'a özel bir istemci komut dosyası ekler"
msgid "Adds a custom field to a DocType"
msgstr "DocType'a özel bir alan ekler"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "Yönetim"
@@ -1642,15 +1646,15 @@ msgstr "Yönetim"
msgid "Administrator"
msgstr "Yönetici"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "Yönetici Giriş Yaptı"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
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ı."
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "Yönetici takip edemiyor"
@@ -1659,23 +1663,23 @@ msgstr "Yönetici takip edemiyor"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Advanced"
-msgstr "Gelişmiş"
+msgstr ""
#. Label of the advanced_control_section (Section Break) field in DocType 'User
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Advanced Control"
-msgstr "Gelişmiş Kontrol"
+msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "Gelişmiş Arama"
#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Advanced Settings"
-msgstr "Gelişmiş Ayarlar"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:64
#: frappe/public/js/frappe/ui/filters/filter.js:70
@@ -1685,12 +1689,12 @@ msgstr "Sonra"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Cancel"
-msgstr "İptal Edildikten Sonra"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Delete"
-msgstr "Silme İşleminden Sonra"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -1700,22 +1704,22 @@ msgstr "İptalden Sonra"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Insert"
-msgstr "Ekledikten Sonra"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Rename"
-msgstr "Yeniden Adlandırdıktan Sonra"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Save"
-msgstr "Kaydettikten Sonra"
+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 "Kaydettikten Sonra (Gönderilen Belge)"
+msgstr ""
#. Label of the section_break_5 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1725,7 +1729,7 @@ msgstr "Kaydettikten Sonra"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "After Submit"
-msgstr "Gönderdikten Sonra"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.py:63
msgid "Aggregate Field is required to create a number card"
@@ -1747,9 +1751,9 @@ msgstr "Bir Gösterge Panosu Grafiği oluşturmak için Toplama Fonksiyonu alan
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Alert"
-msgstr "Uyarı"
+msgstr ""
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1757,7 +1761,7 @@ msgstr ""
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Align"
-msgstr "Hizala"
+msgstr ""
#. Label of the align_labels_right (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -1773,6 +1777,15 @@ msgstr "Sağa Hizala"
msgid "Align Value"
msgstr "Değer Hizala"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1805,7 +1818,7 @@ msgstr "Tümü"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "Tüm Gün"
@@ -1817,11 +1830,11 @@ msgstr "Web Sitesi Slayt Gösterisine eklenen tüm görseller herkese açık olm
msgid "All Records"
msgstr "Tüm Kayıtlar"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "Tüm Gönderiler"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "Tüm özelleştirmeler kaldırılacak. Lütfen onaylayın."
@@ -1832,7 +1845,7 @@ msgstr "Yorumu göndermek için tüm alanların doldurulması zorunludur."
#. 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 "İş akışının tüm olası İş Akışı Durumları ve rolleri. Docstatus Seçenekleri: 0 \"Kaydedildi\", 1 \"Gönderildi\" ve 2 \"İptal Edildi\""
+msgstr ""
#: frappe/utils/password_strength.py:183
msgid "All-uppercase is almost as easy to guess as all-lowercase."
@@ -1841,7 +1854,7 @@ msgstr "Harflerin tamamını büyük veya küçük yapmaktan kaçının."
#. Label of the allocated_to (Link) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
msgid "Allocated To"
-msgstr "Sorumlu"
+msgstr ""
#. Label of the allow (Link) field in DocType 'User Permission'
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
@@ -1860,14 +1873,14 @@ msgstr "API Dizin Oluşturma Erişimine İzin Ver"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow Auto Repeat"
-msgstr "Otomatik Tekrara İzin Ver"
+msgstr ""
#. Label of the allow_bulk_edit (Check) field in DocType 'DocField'
#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow Bulk Edit"
-msgstr "Toplu Düzenlemeye İzin Ver"
+msgstr ""
#. Label of the allow_edit (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
@@ -1891,30 +1904,30 @@ msgstr "Google Kişiler Erişimine İzin Ver"
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
-msgstr "Misafire İzin Ver"
+msgstr ""
#. Label of the allow_guest_to_view (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Guest to View"
-msgstr "Misafirin Görüntülemesine İzin Ver"
+msgstr ""
#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Guests to Upload Files"
-msgstr "Misafir Kullanıcılarının Dosya Yüklemesine İzin Ver"
+msgstr ""
#. Label of the allow_import (Check) field in DocType 'DocType'
#. Label of the allow_import (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow Import (via Data Import Tool)"
-msgstr "İçeri Aktarmaya İzin Ver"
+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 "Başarısız Denemeden Sonra Giriş Yapmaya İzin Ver"
+msgstr ""
#. Label of the allow_login_using_mobile_number (Check) field in DocType
#. 'System Settings'
@@ -1926,7 +1939,7 @@ msgstr "Cep Telefonu ile Giriş"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Login using User Name"
-msgstr "Kullanıcı Adı ile Oturum Açmaya İzin Ver"
+msgstr ""
#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -1937,7 +1950,7 @@ msgstr "Modül İzinleri"
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Cancelled"
-msgstr "İptal Edilenler İçin Yazdırmaya İzin Ver"
+msgstr ""
#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
@@ -1954,7 +1967,7 @@ msgstr "Tüm Bağlantı Seçeneklerinde Okumaya İzin Ver"
#. Label of the allow_rename (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Rename"
-msgstr "Yeniden Adlandırmaya İzin Ver"
+msgstr ""
#. Label of the roles_permission (Section Break) field in DocType 'Role
#. Permission for Page and Report'
@@ -1969,18 +1982,18 @@ msgstr "İzin Verilen Roller"
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow Self Approval"
-msgstr "Kendi Kendini Onaylamaya İzin Ver"
+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 "Uygulamaları İyileştirmek İçin Kullanım Verilerinin Gönderilmesine İzin Ver"
+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 "Belgeyi oluşturan kişinin onayına izin ver"
+msgstr ""
#. Label of the allow_comments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -1997,7 +2010,7 @@ msgstr "Silmeye İzin Ver"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow document creation via Email"
-msgstr "E-posta yoluyla belge oluşturmaya izin ver"
+msgstr ""
#. Label of the allow_edit (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -2015,7 +2028,7 @@ msgstr "Belge türünde bir iş akışı ayarlanmış olsa bile düzenlemeye izi
#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Allow events in timeline"
-msgstr "Zaman Akışında Olaylara İzin Ver"
+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'
@@ -2025,7 +2038,7 @@ msgstr "Zaman Akışında Olaylara İzin Ver"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow in Quick Entry"
-msgstr "Hızlı Girişe İzin Ver"
+msgstr ""
#. Label of the allow_incomplete (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -2044,19 +2057,19 @@ msgstr "Birden Çok Yanıta İzin Ver"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow on Submit"
-msgstr "Gönderimde İzin Ver"
+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 "Her Bir Kullanıcıya Aynı Anda Tek Oturum Açma İzni Ver"
+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 "Tabloların içinde sayfa sonuna izin ver"
+msgstr ""
#. Label of the allow_print (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -2071,7 +2084,7 @@ msgstr ""
#. Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Allow saving if mandatory fields are not filled"
-msgstr "Zorunlu alanlar doldurulmazsa kaydetmeye izin ver"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:424
msgid "Allow sending usage data for improving applications"
@@ -2080,12 +2093,12 @@ msgstr "Uygulamaları iyileştirmek için kullanım verilerinin gönderilmesine
#. 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 "Kullanıcının sadece bu saatten sonra giriş yapmasına izin ver. (0-24)"
+msgstr ""
#. Description of the 'Login Before' (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Allow user to login only before this hour (0-24)"
-msgstr "Kullanıcının yalnızca bu saatten önce giriş yapmasına izin ver. (0-24)"
+msgstr ""
#. Description of the 'Login with email link' (Check) field in DocType 'System
#. Settings'
@@ -2096,24 +2109,24 @@ msgstr "Kullanıcıların, e-postalarına gönderilen oturum açma bağlantısı
#. Label of the allowed (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allowed"
-msgstr "İzin Verilen"
+msgstr ""
#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allowed File Extensions"
-msgstr "İzin Verilen Dosya Uzantıları"
+msgstr ""
#. Label of the allowed_in_mentions (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Allowed In Mentions"
-msgstr "Alıntılara İzin Ver"
+msgstr ""
#. Label of the allowed_modules_section (Section Break) field in DocType 'User
#. Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Allowed Modules"
-msgstr "İzin Verilen Modüller"
+msgstr ""
#. Label of the allowed_public_client_origins (Small Text) field in DocType
#. 'OAuth Settings'
@@ -2133,7 +2146,7 @@ msgstr "İzin Verilen Roller"
msgid "Allowed embedding domains"
msgstr "İzin verilen gömülü alan adları"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "DocType için izin veriliyor. Dikkatli olun!"
@@ -2167,13 +2180,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr "Zaten kayıltı"
@@ -2192,7 +2253,7 @@ msgstr "Durum bağımlılığı alanı da ekleniyor {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 "Alternatif E-posta Kimliği"
+msgstr ""
#. Option for the 'Show External Link Warning' (Select) field in DocType
#. 'System Settings'
@@ -2208,19 +2269,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 "Taslak belgelerini yazdırmak için her zaman \"Taslak\" Başlığı ekleyin"
+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 "Gönderen adresi olarak her zaman bu e-posta adresini kullan"
+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 "Gönderen adı olarak her zaman bu adı kullan"
+msgstr ""
#. Label of the amend (Check) field in DocType 'Custom DocPerm'
#. Label of the amend (Check) field in DocType 'DocPerm'
@@ -2229,7 +2290,7 @@ msgstr "Gönderen adı olarak her zaman bu adı kullan"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Amend"
-msgstr "Değiştir"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
@@ -2249,7 +2310,7 @@ msgstr "Belge Adlandırma Ayarları"
#. 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amended Documents"
-msgstr "Değiştirilen Belgeler"
+msgstr ""
#. Label of the amended_from (Link) field in DocType 'Personal Data Download
#. Request'
@@ -2268,7 +2329,7 @@ msgstr "Değiştiriliyor"
msgid "Amendment Naming Override"
msgstr "Değişiklik Adlandırma Geçersiz Kılma"
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr "Değişikliğe İzin Verilmiyor"
@@ -2281,14 +2342,14 @@ msgstr "Değişiklik adlandırma kuralları güncellendi."
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr "Oturum Varsayılanlarını ayarlarken bir hata oluştu"
#. 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 uzantılı bir simge dosyası. 16 x 16 piksel olmalıdır. Bir favicon oluşturucu kullanılarak oluşturulmuştur. [favicon-generator.org]"
+msgstr ""
#: frappe/templates/includes/oauth_confirmation.html:38
msgid "An unexpected error occurred while authorizing {}."
@@ -2298,7 +2359,7 @@ msgstr "{} yetkilendirilirken beklenmeyen bir hata oluştu."
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Analytics"
-msgstr "Analitik"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
@@ -2332,7 +2393,7 @@ msgstr "Anonimleştirme Matrisi"
msgid "Anonymous responses"
msgstr "İsimsiz Yanıtlar"
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr "Başka bir işlem bunu engelliyor. Lütfen birkaç saniye içinde tekrar deneyin."
@@ -2345,7 +2406,7 @@ msgstr "Başka bir {0} {1} isimde zaten var, başka bir isim kullanın."
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 "Herhangi bir dize tabanlı yazıcı dili kullanılabilir. Ham komutları yazmak, yazıcı üreticisi tarafından sağlanan yazıcının yerel dilinin bilgisini gerektirir. Yerel komutlarının nasıl yazılacağı konusunda lütfen yazıcı üreticisi tarafından sağlanan geliştirici kılavuzuna bakın. Bu komutlar sunucu tarafında Jinja Şablonlama Dili kullanılarak oluşturulur."
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr "Sistem Yöneticisi haricinde, Kullanıcı İzinlerini Ayarlama hakkına sahip roller, ilgili Belge Türü için diğer kullanıcılar için izinleri ayarlayabilir."
@@ -2395,11 +2456,11 @@ msgstr "Uygulama İsmi"
msgid "App Name (Client Name)"
msgstr ""
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr "Modül için uygulama bulunamadı: {0}"
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr "{0} Uygulaması yüklü değil"
@@ -2410,7 +2471,7 @@ msgstr "{0} Uygulaması yüklü değil"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Append Emails to Sent Folder"
-msgstr "E-postaları Gönderilenler Klasörüne Ekle"
+msgstr ""
#. Label of the append_to (Link) field in DocType 'Email Account'
#. Label of the append_to (Link) field in DocType 'IMAP Folder'
@@ -2441,14 +2502,14 @@ msgstr ""
#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Application Logo"
-msgstr "Uygulama Logosu"
+msgstr ""
#. Label of the app_name (Data) field in DocType 'Installed Application'
#. Label of the app_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/installed_application/installed_application.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Application Name"
-msgstr "Uygulama Adı"
+msgstr ""
#. Label of the app_version (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
@@ -2473,7 +2534,7 @@ msgstr ""
msgid "Apply"
msgstr "Uygula"
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr "Arama Kuralı Uygula"
@@ -2482,11 +2543,15 @@ msgstr "Arama Kuralı Uygula"
msgid "Apply Filters"
msgstr "Filtreleri Uygula"
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+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 "Kısıtlı Kullanıcı İzinlerini Uygula"
+msgstr ""
#. Label of the view (Select) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
@@ -2497,7 +2562,7 @@ msgstr "Uygula"
#. Permission'
#: frappe/core/doctype/user_permission/user_permission.json
msgid "Apply To All Document Types"
-msgstr "Tüm Döküman Türlerine Uygula"
+msgstr ""
#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
@@ -2515,13 +2580,13 @@ msgstr "Belge izinlerini uygula"
#: 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 "Kullanıcı Sahibi ise bu kuralı uygulayın"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
msgstr "Tüm Belge Türlerine Uygula"
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr "Uygulanıyor: {0}"
@@ -2529,18 +2594,11 @@ msgstr "Uygulanıyor: {0}"
msgid "Approval Required"
msgstr "Onay Gerekli"
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr "Uygulamalar"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2563,16 +2621,16 @@ msgstr "Arşivlenmiş Sütunlar"
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr "Atamaları temizlemek istediğinizen emin misiniz?"
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
-msgstr "Tüm satırları silmek istediğinizden emin misiniz?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
+msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr "Bu dosyayı silmek istediğinizden emin misiniz?"
@@ -2591,19 +2649,19 @@ 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 "Sekmeyi silmek istediğinizden emin misiniz? Sekmedeki alanlarla birlikte tüm bölümler bir önceki sekmeye taşınacaktır."
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
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:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr "Yeni bir rapor oluşturmak istediğinizden emin misiniz?"
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr "{0} ile {1} öğesini birleştirmek istediğinizden emin misiniz?"
@@ -2623,7 +2681,7 @@ msgstr "Bu iletişimi {0} ile tekrar ilişkilendirmek istediğinize emin misiniz
msgid "Are you sure you want to remove all failed jobs?"
msgstr "Başarısız olan tüm işleri kaldırmak istediğinizden emin misiniz?"
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr "{0} filtresini kaldırmak istediğinizden emin misiniz?"
@@ -2647,12 +2705,12 @@ msgstr "Emin misiniz?"
#. Label of the arguments (Code) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Arguments"
-msgstr "Parametreler"
+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."
@@ -2672,7 +2730,7 @@ msgstr "Talebiniz doğrultusunda, hesabınız ve {1} e-postasıyla ilişkili {0}
msgid "Ask"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr "Ata"
@@ -2685,7 +2743,7 @@ msgstr "Koşulu Ata"
msgid "Assign To"
msgstr "Ata"
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr "Ata"
@@ -2735,7 +2793,7 @@ msgstr "Atamayı Yapan"
msgid "Assigned By Full Name"
msgstr "Atanan Kişinin Tam Adı"
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2764,7 +2822,7 @@ msgstr "Atama"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Assignment Completed"
-msgstr "Atama Tamamlandı"
+msgstr ""
#. Label of the sb (Section Break) field in DocType 'Assignment Rule'
#. Label of the assignment_days (Table) field in DocType 'Assignment Rule'
@@ -2824,7 +2882,7 @@ msgstr "Atamalar"
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr "Tabloda en az bir sütunun gösterilmesi zorunludur."
@@ -2849,7 +2907,7 @@ msgstr "En az bir Üst Belge Türü alanı zorunludur"
msgid "Attach"
msgstr "Ekle"
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr "Yazdırma Dosyasını Ekle"
@@ -2869,7 +2927,7 @@ 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 "Paketi Ekle"
+msgstr ""
#. Label of the attach_package (Attach) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
@@ -2897,12 +2955,12 @@ msgstr "Ekli Dosya"
#. Label of the attached_to_doctype (Link) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To DocType"
-msgstr "DocType'a Eklendi"
+msgstr ""
#. Label of the attached_to_field (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Attached To Field"
-msgstr "İlgili Alandaki Dosya Eki"
+msgstr ""
#. Label of the attached_to_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
@@ -2916,14 +2974,14 @@ msgstr "Bağlı Olduğu Ad, bir metin (string) veya tam sayı (integer) olmalıd
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment"
-msgstr "Belge Eki"
+msgstr ""
#. Label of the attachment_limit (Int) field in DocType 'Email Account'
#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Attachment Limit (MB)"
-msgstr "Dosya Sınırı (MB)"
+msgstr ""
#: frappe/core/doctype/file/file.py:348
#: frappe/public/js/frappe/form/sidebar/attachments.js:36
@@ -2938,7 +2996,7 @@ msgstr "Ek bağlantısı"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr "Ek Kaldırıldı"
+msgstr ""
#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -2947,19 +3005,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr "Belge Ekleri"
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr "QZ Tray’e Bağlanmaya Çalışılıyor…"
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr "QZ Tray başlatılmaya çalışılıyor..."
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr "Özellik"
@@ -3010,7 +3075,7 @@ msgstr "E-posta Hesabından e-postalar alınırken kimlik doğrulama başarısı
#. Label of the author (Data) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Author"
-msgstr "Yazar"
+msgstr ""
#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -3085,7 +3150,7 @@ msgstr "Yazarlar / Katkıda Bulunanlar"
#. Provider Settings'
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Auto"
-msgstr "Otomatik"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -3097,7 +3162,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Auto Name"
-msgstr "Otomatik İsim"
+msgstr ""
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -3138,7 +3203,7 @@ msgstr "{0} için Otomatik Tekrarlama başarısız oldu"
#. Label of the auto_reply (Section Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply"
-msgstr "Otomatik Cevap"
+msgstr ""
#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
#. Account'
@@ -3153,27 +3218,27 @@ msgstr "Otomatik atama başarısız oldu: {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 "Size atanan dokümanları otomatik takip edin"
+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 "Sizinle paylaşılan belgeleri otomatik takip edin"
+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 "Beğendiğiniz belgeleri otomatik takip edin"
+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 "Yorum yaptığınız belgeleri otomatik takip edin"
+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 "Oluşturduğunuz belgeleri otomatik takip edin"
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
@@ -3269,12 +3334,12 @@ msgstr "Sizinle ilişkili olan yılları tercih etmeyin."
#. Label of the awaiting_password (Check) field in DocType 'User Email'
#: frappe/core/doctype/user_email/user_email.json
msgid "Awaiting Password"
-msgstr "Şifreyi Bekle"
+msgstr ""
#. Label of the awaiting_password (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Awaiting password"
-msgstr "Şifre Bekleniyor"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:195
msgid "Awesome Work"
@@ -3284,11 +3349,6 @@ msgstr "Mükemmel"
msgid "Awesome, now try making an entry yourself"
msgstr "Harika, şimdi kendiniz bir giriş yapmayı deneyin"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3297,17 +3357,17 @@ msgstr "B"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B0"
-msgstr "B0"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B1"
-msgstr "B1"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B10"
-msgstr "B10"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -3332,22 +3392,22 @@ 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 "B6"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B7"
-msgstr "B7"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B8"
-msgstr "B8"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B9"
-msgstr "B9"
+msgstr ""
#. Label of the bcc (Code) field in DocType 'Communication'
#. Label of the bcc (Code) field in DocType 'Notification Recipient'
@@ -3386,17 +3446,12 @@ msgstr "Girişe Geri Dön"
#: frappe/website/doctype/social_link_settings/social_link_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Background Color"
-msgstr "Arkaplan Rengi"
+msgstr ""
#. Label of the background_image (Attach Image) field in DocType 'Web Page
#. Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Background Image"
-msgstr "Arkaplan Resmi"
-
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
msgstr ""
#. Label of a Link in the Build Workspace
@@ -3404,7 +3459,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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr "Arkaplan Görevleri"
@@ -3430,7 +3485,7 @@ msgstr "Arka Plan Baskısı ( En az 25 belge ve üstü)"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Background Workers"
-msgstr "Arkaplan Görevleri"
+msgstr ""
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
@@ -3446,7 +3501,7 @@ msgstr "Yedekleme sıraya alındı. İndirme bağlantısını içeren bir e-post
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Backups"
-msgstr "Yedekler"
+msgstr ""
#. Label of the backups_size (Float) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -3482,7 +3537,7 @@ msgstr "Banner HTML"
#: frappe/core/doctype/user/user.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Banner Image"
-msgstr "Kapak Resmi"
+msgstr ""
#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -3517,8 +3572,8 @@ msgstr "Ana URL"
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr "Buna göre"
@@ -3535,13 +3590,15 @@ msgstr "Kullanıcı İzinlerine Göre"
#. Option for the 'Method' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Basic"
-msgstr "Basit"
+msgstr ""
#. Label of the section_break_3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Basic Info"
-msgstr "Temel Bilgiler"
+msgstr ""
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3550,12 +3607,12 @@ msgstr "Önce"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Cancel"
-msgstr "İptal Etmeden Önce"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Delete"
-msgstr "Silmeden Önce"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -3565,37 +3622,37 @@ msgstr "İptal Etmeden Önce"
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Insert"
-msgstr "Eklemeden Önce"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Print"
-msgstr "Yazdırmadan Önce"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Rename"
-msgstr "Yeniden Adlandırmadan Önce"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save"
-msgstr "Kaydetmeden Önce"
+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 "Kaydetmeden Önce (Gönderilen Belge)"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Submit"
-msgstr "Göndermeden Önce"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Before Validate"
-msgstr "Doğrulamadan Önce"
+msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
@@ -3609,9 +3666,9 @@ msgstr "Başlangıcı"
#. Label of the beta (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Beta"
-msgstr "Beta"
+msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr "Birkaç harf daha ekleyin veya başka bir kelime ekleyin"
@@ -3622,7 +3679,7 @@ msgstr "Arasında"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Billing"
-msgstr "Fatura"
+msgstr ""
#: frappe/public/js/frappe/form/templates/contact_list.html:27
msgid "Billing Contact"
@@ -3638,12 +3695,12 @@ msgstr "Binary Günlük Kaydı"
#: frappe/core/doctype/user/user.json
#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "Bio"
-msgstr "Hakkında"
+msgstr ""
#. Label of the birth_date (Date) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Birth Date"
-msgstr "Doğum Tarihi"
+msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:41
msgid "Blank Template"
@@ -3675,7 +3732,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Bold"
-msgstr "Kalın"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -3732,23 +3789,16 @@ msgstr ""
#. Label of the brand_html (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand HTML"
-msgstr "Yazı Logo"
+msgstr ""
#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand Image"
-msgstr "Marka Görseli"
+msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
-msgstr "Logo"
-
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
msgstr ""
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
@@ -3784,7 +3834,7 @@ msgstr "Tarayıcı desteklenmiyor"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Brute Force Security"
-msgstr "Katı Güvenlik Önlemi"
+msgstr ""
#. Label of the bufferpool_size (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -3812,7 +3862,7 @@ msgstr ""
#. Label of the bulk_actions (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Bulk Actions"
-msgstr "Çoklu İşlemler"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:142
msgid "Bulk Delete"
@@ -3822,7 +3872,7 @@ msgstr "Toplu Silme"
msgid "Bulk Edit"
msgstr "Toplu Düzenleme"
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr "Toplu {0} Düzenleme"
@@ -3843,7 +3893,7 @@ msgstr "Toplu PDF Dışa Aktarma"
msgid "Bulk Update"
msgstr ""
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr "Toplu işlemler yalnızca 500 belgeye kadar izin verilir."
@@ -3855,7 +3905,7 @@ msgstr "Toplu işlem arka planda sıraya alındı."
msgid "Bulk operations only support up to 500 documents."
msgstr "Toplu işlemler yalnızca 500 belgeye kadar destekler."
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr "Toplu {0} arka planda sıraya alındı."
@@ -3866,7 +3916,7 @@ msgstr "Toplu {0} arka planda sıraya alındı."
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Button"
-msgstr "Buton"
+msgstr ""
#. Label of the button_color (Select) field in DocType 'DocField'
#. Label of the button_color (Select) field in DocType 'Custom Field'
@@ -3897,7 +3947,7 @@ msgstr "Buton Gölgeleri"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By \"Naming Series\" field"
-msgstr "\"Adlandırma Serisi\" alanına göre"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:111
#: frappe/website/doctype/web_page/web_page.js:118
@@ -3922,19 +3972,19 @@ msgstr "Script ile"
#. DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
-msgstr "İki Faktörlü Kimlik Doğrulama Etkinse Kısıtlı IP Adresi Kontrolünü Atla"
+msgstr ""
#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
-msgstr "Sınırlı IP Adresinden oturum açan kullanıcılar için İki Faktörlü Kimlik Doğrulamayı Atla"
+msgstr ""
#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
-msgstr "İki Faktörlü Kimlik Doğrulama Etkinse Kısıtlanmış IP Adresi Denetimini Atla"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -4004,7 +4054,7 @@ msgstr "Önbellek"
msgid "Cache Cleared"
msgstr "Önbellek Temizlendi"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr "Hesapla"
@@ -4054,12 +4104,12 @@ msgid "Callback Title"
msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr "Kamera"
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -4071,11 +4121,11 @@ msgstr "Kampanya"
msgid "Campaign Description (Optional)"
msgstr "Kampanya Açıklaması (Opsiyonel)"
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr "DocType üzerinde {0} sütunu zaten mevcut olduğu için yeniden adlandırılamıyor."
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -4085,7 +4135,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr "Yalnızca Kullanıcı belge türüne bağlı olan belge türleri listelenebilir."
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr "Değişiklikler takip edilmediği için izlenemiyor."
@@ -4107,7 +4157,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:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr "İptal"
@@ -4117,11 +4167,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr "İptal"
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr "Tümünü İptal Et"
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr "Tüm Belgeleri İptal Et"
@@ -4133,7 +4183,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr "{0} belge iptal edilsin mi?"
@@ -4166,7 +4216,7 @@ msgstr " İptal Ediliyor"
msgid "Cancelling documents"
msgstr "Belgeler İptal Ediliyor"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr "{0} İptal Ediliyor"
@@ -4174,7 +4224,7 @@ msgstr "{0} İptal Ediliyor"
msgid "Cannot Download Report due to insufficient permissions"
msgstr "Yetersiz izinler nedeniyle Rapor İndirilemiyor"
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr "Değerler Getirilemiyor"
@@ -4182,7 +4232,7 @@ msgstr "Değerler Getirilemiyor"
msgid "Cannot Remove"
msgstr "Kaldırılamıyor"
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr "Belge Gönderildikten Sonra Güncelleme Yapılamaz"
@@ -4202,11 +4252,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:1062
+#: frappe/model/document.py:1061
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:1076
+#: frappe/model/document.py:1075
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"
@@ -4218,7 +4268,7 @@ msgstr "İptal Edilen Belgenin durumu değiştirilemiyor ({0} Durumu)"
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "İptal Edilen Belgenin durumu değiştirilemiyor. Geçiş satırı {0}"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "Özelleştir Formunda otomatik artırma otomatik adı olarak değiştirilemiyor"
@@ -4226,10 +4276,14 @@ msgstr "Özelleştir Formunda otomatik artırma otomatik adı olarak değiştiri
msgid "Cannot create a {0} against a child document: {1}"
msgstr "Alt belgeye karşı {0} dosyası oluşturulamaz: {1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "Diğer kullanıcılar adına özel çalışma alanı oluşturulamıyor"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "Ana Sayfa ve Ekler klasörleri silinemez"
@@ -4238,15 +4292,15 @@ msgstr "Ana Sayfa ve Ekler klasörleri silinemez"
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ş."
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "Standart aksiyon silinemez, sadece gizlenebilir."
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "Standart belge durumu silinemiyor."
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "Standart alan {0}silinemez. Bunun yerine gizleyebilirsiniz."
@@ -4257,11 +4311,11 @@ msgstr "Standart alan {0}silinemez. Bunun yerine gizleyebilirsi
msgid "Cannot delete standard field. You can hide it if you want"
msgstr "Standart alan silinemez. sadece gizlenebilir."
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "Standart bağlantı silinemez, sadece gizlenebilir."
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr "Sistem tarafından oluşturulan alan silinemez {0}. Bunun yerine gizleyebilirsiniz."
@@ -4289,7 +4343,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:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "İptal edilen belge düzenlenemez"
@@ -4302,7 +4356,7 @@ msgstr "Standart grafikler için filtreleri düzenleyemezsiniz."
msgid "Cannot edit filters for standard number cards"
msgstr "Standart Veri Kartları için filtreler düzenlenemez"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "Standart alanlar düzenlenemez"
@@ -4318,15 +4372,15 @@ msgstr "{} dosyası diskte bulunamadı"
msgid "Cannot get file contents of a Folder"
msgstr "Bir Klasörün dosya içerikleri alınamıyor"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Tek bir yazdırma biçimine birden fazla yazıcı ile eşleşme yapılamaz."
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "İptal edilen belgeye bağlantı verilemiyor: {0}"
@@ -4338,7 +4392,7 @@ msgstr "Aşağıdaki koşul başarısız olduğundan eşleme yapılamıyor:"
msgid "Cannot match column {0} with any field"
msgstr "{0} sütunu herhangi bir alanla eşleştirilemiyor"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "Satır taşınamıyor"
@@ -4363,7 +4417,7 @@ msgid "Cannot submit {0}."
msgstr "{0} gönderilemiyor."
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "{0} güncellenemiyor"
@@ -4383,21 +4437,21 @@ msgstr "{0} {1} olamaz."
msgid "Capitalization doesn't help very much."
msgstr "Büyük harf kullanımı pek yardımcı olmuyor."
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "Yakala"
#. Label of the card (Link) field in DocType 'Number Card Link'
#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Card"
-msgstr "Kart"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Card Break"
msgstr "Kart Sonu"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "Kart Etiketi"
@@ -4408,7 +4462,7 @@ msgstr "Kart Bağlantıları"
#. Label of the cards (Table) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Cards"
-msgstr "Kartlar"
+msgstr ""
#. Label of the category (Link) field in DocType 'Help Article'
#: frappe/public/js/frappe/views/interaction.js:72
@@ -4424,18 +4478,20 @@ msgstr "Kategori Açıklaması"
#. Label of the category_name (Data) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Category Name"
-msgstr "Kategori Adı"
+msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
-msgstr "Ortala"
-
-#: 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 "Fatura gibi bazı belgeler son haline getirildikten sonra değiştirilmemelidir. Bu tür belgeler için son durum Gönderilmiş olarak adlandırılır. Hangi rollerin Gönderme yapabileceğini kısıtlayabilirsiniz."
+msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
@@ -4454,7 +4510,7 @@ msgstr "Görseli Değiştir"
#. 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 "Etiketi Değiştir (Özel Çeviri)"
+msgstr ""
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
@@ -4464,7 +4520,7 @@ msgstr ""
#. Label of the change_password (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Change Password"
-msgstr "Şifreyi Değiştir"
+msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
@@ -4524,10 +4580,10 @@ 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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
-msgstr "Grafik Adı"
+msgstr ""
#. Label of the chart_options (Code) field in DocType 'Dashboard'
#. Label of the chart_options_section (Section Break) field in DocType
@@ -4535,12 +4591,12 @@ msgstr "Grafik Adı"
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Options"
-msgstr "Grafik Seçenekleri"
+msgstr ""
#. Label of the source (Link) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Source"
-msgstr "Grafik Kaynağı"
+msgstr ""
#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -4553,12 +4609,12 @@ msgstr "Grafik Türü"
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Charts"
-msgstr "Grafikler"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Chat"
-msgstr "Sohbet"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -4575,7 +4631,7 @@ msgstr "Sohbet"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Check"
-msgstr "Kontrol et"
+msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:99
msgid "Check Request URL"
@@ -4589,6 +4645,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr "Daha fazla bilgi için Hata Günlüğünü kontrol edin: {0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr "Kullanıcıların sitenizde bir hesap için kaydolmasını istemiyorsanız bunu işaretleyin. Açıkça belirtmediğiniz sürece kullanıcılar sistem erişimine sahip olmayacaktır."
@@ -4597,7 +4659,7 @@ msgstr "Kullanıcıların sitenizde bir hesap için kaydolmasını istemiyorsan
#. '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 "Kullanıcıyı kaydetmeden önce bir seri seçmeye zorlamak istiyorsanız bunu işaretleyin. Bunu işaretlerseniz varsayılan olmayacaktır."
+msgstr ""
#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -4616,7 +4678,7 @@ msgstr "Bloglar, web sayfaları vb. için sayfa görüntülemelerinin izlenmesin
#. DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Checking this will hide custom doctypes and reports cards in Links section"
-msgstr "Bunu işaretlerseniz Bağlantılar bölümünde DocType ve Rapor Kartlarını gizleyecektir"
+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."
@@ -4640,7 +4702,7 @@ msgstr "Alt DocType"
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4650,7 +4712,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Alt Tablolar, diğer DocType'larda Tablo olarak gösterilir."
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4658,7 +4720,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr "Mevcut Kartı Seçin veya Yeni Kart Oluşturun"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "Bir blok seçin veya yazmaya devam edin"
@@ -4676,10 +4738,6 @@ msgstr "Bir simge seçimi"
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Choose authentication method to be used by all users"
-msgstr "Tüm kullanıcılar tarafından kullanılacak doğrulama yöntemini seçin."
-
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
msgstr ""
#. Label of the city (Data) field in DocType 'Contact Us Settings'
@@ -4698,11 +4756,11 @@ msgstr "Şehir"
msgid "Clear"
msgstr "Açık"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "Temizle ve Şablon Ekle"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "Temizle ve Şablon Ekle"
@@ -4710,7 +4768,7 @@ msgstr "Temizle ve Şablon Ekle"
msgid "Clear All"
msgstr "Temizle"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "Atamayı Temizle"
@@ -4730,13 +4788,13 @@ msgstr "Filtreleri Temizle"
#. 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 "Gün Sayısı"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:144
msgid "Clear User Permissions"
msgstr "Kullanıcı İzinlerini Temizle"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "E-posta mesajını temizleyin ve şablonu ekleyin"
@@ -4804,7 +4862,7 @@ msgstr "Dinamik Filtreleri Ayarlamak için Tıklayın"
msgid "Click to Set Filters"
msgstr "Filtreleri Ayarlamak İçin Tıklayın"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "Sıralama Yapmak İçin Tıklayın"
@@ -4823,7 +4881,7 @@ msgstr "İstemci"
#. Label of the client_code_section (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Client Code"
-msgstr "Kullanıcı Kodu"
+msgstr ""
#. Label of the sb_client_credentials_section (Section Break) field in DocType
#. 'Connected App'
@@ -4841,7 +4899,7 @@ msgstr "İstemci Kimlik Bilgileri"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
-msgstr "Client ID"
+msgstr ""
#. Label of the client_id (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -4852,7 +4910,7 @@ msgstr "İstemci Kimliği"
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "İstemci Bilgisi"
+msgstr ""
#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth
#. Client'
@@ -4879,7 +4937,7 @@ msgstr "İstemci Komut Dosyası"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Secret"
-msgstr "Client Secret"
+msgstr ""
#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth
#. Client'
@@ -4901,7 +4959,7 @@ 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 "İstemci Bağlantıları"
+msgstr ""
#. Label of the client_script (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -4912,7 +4970,7 @@ msgstr "Müşteri senaryosu"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "Kapat"
@@ -4922,7 +4980,7 @@ msgstr "Kapat"
msgid "Close Condition"
msgstr "Koşulu Kapat"
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4953,7 +5011,7 @@ msgstr "Yorum eklemek için Cmd+Enter"
#: frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Code"
-msgstr "Kod"
+msgstr ""
#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
#. Code'
@@ -4978,12 +5036,12 @@ msgstr ""
msgid "Collapse"
msgstr "Daralt"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Daralt"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Tümünü Daralt"
@@ -4999,7 +5057,7 @@ msgstr "Tümünü Daralt"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Collapsible"
-msgstr "Açılır Kapanır"
+msgstr ""
#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
@@ -5040,7 +5098,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5051,7 +5109,7 @@ msgstr "Renk"
#. 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/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5096,11 +5154,11 @@ msgstr "Sütun Adı"
msgid "Column Name cannot be empty"
msgstr "Sütun Adı boş olamaz"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "Sütun Genişliği"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "Sütun genişliği sıfır olamaz."
@@ -5120,12 +5178,12 @@ msgstr "{0} sütunu"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr "Sütunlar"
+msgstr ""
#. Label of the columns (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
-msgstr "Sütunlar / Alanlar"
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:411
msgid "Columns based on"
@@ -5143,7 +5201,7 @@ msgstr "COMM10E"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5163,7 +5221,7 @@ msgstr "Yorum E-postası"
#. Label of the comment_type (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Comment Type"
-msgstr "Yorum Türü"
+msgstr ""
#: frappe/desk/form/utils.py:57
msgid "Comment can only be edited by the owner"
@@ -5183,7 +5241,7 @@ msgstr "Yorumlar"
#. 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 "Yorumlar ve Haberleşmeler bağlantılı belgeyle ilişkilendirilecek."
+msgstr ""
#: frappe/templates/includes/comments/comments.py:52
msgid "Comments cannot have links or email addresses"
@@ -5243,7 +5301,7 @@ msgstr "İletişim Kayıtları"
#. Label of the communication_type (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Communication Type"
-msgstr "İletişim Türü"
+msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
msgid "Communication secret not set"
@@ -5290,12 +5348,12 @@ msgstr "Tamamla"
msgid "Complete By"
msgstr "Tamamlayan"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Kaydı Tamamla"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "Kurulumu Tamamla"
@@ -5310,7 +5368,7 @@ msgstr "Kurulumu Tamamla"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "Tamamlandı"
@@ -5395,13 +5453,13 @@ msgstr ""
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Configuration"
-msgstr "Yapılandırma"
+msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:486
msgid "Configure Chart"
msgstr "Grafiği Yapılandır"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "Sütunları Yapılandır"
@@ -5419,9 +5477,7 @@ msgstr "{0} için sütunları yapılandırın"
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 "Değiştirilen belgelerin nasıl isimlendirileceğini yapılandırın.
\n\n"
-"Varsayılan davranış, orijinal adın sonuna değiştirilmiş sürümü belirten bir sayı ekleyen bir değişiklik sayacını takip etmektir.
\n\n"
-"Varsayılan İsimlendirme, değiştirilen belgenin yeni belgelerle aynı şekilde davranmasını sağlayacaktır."
+msgstr ""
#. Description of a DocType
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
@@ -5464,7 +5520,7 @@ msgstr "Talebi Onayla"
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr "Onay E-postası Şablonu"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
@@ -5492,8 +5548,8 @@ msgstr "Bağlı Uyulamalar"
msgid "Connected User"
msgstr "Bağlı Kullanıcılar"
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5522,7 +5578,7 @@ msgstr "Bağlantılar"
#. Label of the console (Code) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Console"
-msgstr "Konsol"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/console_log/console_log.json
@@ -5536,7 +5592,7 @@ msgstr "Konsol Kayıtları silinemez"
#. Label of the constraints_section (Section Break) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Constraints"
-msgstr "Kısıtlamalar"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact/contact.json
@@ -5551,7 +5607,7 @@ msgstr ""
#. Label of the sb_01 (Section Break) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
-msgstr "İletişim Detayları"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact_email/contact_email.json
@@ -5561,7 +5617,7 @@ msgstr "İletişim E-Posta"
#. Label of the phone_nos (Table) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Numbers"
-msgstr "İletişim Numaraları"
+msgstr ""
#. Name of a DocType
#: frappe/contacts/doctype/contact_phone/contact_phone.json
@@ -5587,7 +5643,7 @@ 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 "Her biri yeni bir satırda veya virgülle ayrılmış \"Satış Sorgusu, Destek Sorgusu\" gibi iletişim seçenekleri."
+msgstr ""
#. Label of the contacts (Small Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -5611,7 +5667,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/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5622,12 +5678,12 @@ msgstr "İçerik"
#. Label of the content_hash (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Content Hash"
-msgstr "Hash Doğrulaması"
+msgstr ""
#. Label of the content_type (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
-msgstr "İçerik Türü"
+msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:88
msgid "Content data shoud be a list"
@@ -5642,12 +5698,12 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Context"
-msgstr "Bağlam"
+msgstr ""
#. Label of the context_script (Code) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Context Script"
-msgstr "Bağlam Komut Dosyası"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:204
#: frappe/public/js/frappe/widgets/onboarding_widget.js:232
@@ -5663,28 +5719,28 @@ msgstr "Devam et"
#. Label of the contributed (Check) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contributed"
-msgstr "Katkıda Bulunan"
+msgstr ""
#. Label of the contribution_docname (Data) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contribution Document Name"
-msgstr "Katkıda Bulunulan Belge Adı"
+msgstr ""
#. Label of the contribution_status (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Contribution Status"
-msgstr "Katkı Durumu"
+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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "Panoya kopyalandı."
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5696,12 +5752,12 @@ msgstr "Bağlantıyı Kopyala"
msgid "Copy embed code"
msgstr "Gömülü Kodu Kopyala"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "Hatayı Kopyala"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "Panoya Kopyala"
@@ -5712,7 +5768,7 @@ msgstr ""
#. Label of the copyright (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr "Telif Hakkı"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Core DocTypes cannot be customized."
@@ -5722,7 +5778,7 @@ msgstr "Çekirdek Doctype'lar düzenlenemez."
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "Çekirdek Modüller {0} Genel Aramada aranamaz."
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "Doğru versiyon:"
@@ -5730,7 +5786,7 @@ msgstr "Doğru versiyon:"
msgid "Could not connect to outgoing email server"
msgstr "Giden e-posta sunucusuna bağlanamadı"
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "{0} bulunamadı."
@@ -5738,11 +5794,11 @@ 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:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5750,7 +5806,7 @@ msgstr ""
msgid "Could not start up:"
msgstr "Başlatılamadı:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "Kaydedilemedi, lütfen girdiğiniz verileri kontrol edin"
@@ -5786,7 +5842,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 "Sayaç"
+msgstr ""
#. Label of the country (Link) field in DocType 'Address'
#. Label of the country (Link) field in DocType 'Address Template'
@@ -5802,19 +5858,19 @@ msgstr "Sayaç"
msgid "Country"
msgstr "Ülke"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "Ülke Kodu Gerekli"
#. Label of the country_name (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Country Name"
-msgstr "Ülke İsmi"
+msgstr ""
#. Label of the county (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "County"
-msgstr "İlçe"
+msgstr ""
#: frappe/public/js/frappe/utils/number_systems.js:23
#: frappe/public/js/frappe/utils/number_systems.js:45
@@ -5829,15 +5885,16 @@ msgstr "Alacak"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "Oluştur"
@@ -5850,13 +5907,13 @@ msgstr "Oluştur & Devam Et"
msgid "Create Address"
msgstr "Adres Oluştur"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "Kart Oluştur"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "Grafik Oluştur"
@@ -5867,12 +5924,12 @@ msgstr "Alt DocType Oluştur"
#. 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 "Gelen E-postalardan Kişiler Oluşturun"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Create Entry"
-msgstr "Giriş Oluştur"
+msgstr ""
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
@@ -5890,7 +5947,7 @@ msgstr "Kayıt Oluştur"
msgid "Create New"
msgstr "Yeni Oluştur"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "Yeni Oluştur"
@@ -5903,7 +5960,7 @@ msgstr "Yeni DocType Oluştur"
msgid "Create New Kanban Board"
msgstr "Yeni Kanban Panosu Oluştur"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5919,18 +5976,18 @@ msgstr "Yeni Bir Format Oluştur"
msgid "Create a Reminder"
msgstr "Bir Hatırlatıcı Oluştur"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "Yeni Oluştur ..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "Yeni Kayıt Oluştur"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "Yeni {0} Oluştur"
@@ -5947,7 +6004,7 @@ msgstr "Yazdırma Formatı Oluştur veya Düzenle"
msgid "Create or Edit Workflow"
msgstr "İş Akışı Oluşturun veya Düzenleyin"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "{0} Oluştur"
@@ -5964,15 +6021,23 @@ msgstr "Oluşturdu"
#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Created At"
-msgstr "Oluşturulma Zamanı"
+msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "Oluşturan"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "{0} özel alanı {1} için oluşturuldu."
@@ -6000,14 +6065,14 @@ msgstr "Bu belgenin oluşturulmasına yalnızca geliştirici modunda izin verili
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Cron"
-msgstr "Zamanlanmış Görev"
+msgstr ""
#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type'
#. Label of the cron_format (Data) field in DocType 'Server Script'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Cron Format"
-msgstr "Cron Formatı"
+msgstr ""
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
@@ -6056,12 +6121,12 @@ msgstr "Para Birimi"
#. Label of the currency_name (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Currency Name"
-msgstr "Para Birimi Adı"
+msgstr ""
#. Label of the currency_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Currency Precision"
-msgstr "Para Birimi Hassasiyeti"
+msgstr ""
#. Description of a DocType
#: frappe/geo/doctype/currency/currency.json
@@ -6076,12 +6141,12 @@ msgstr ""
#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Current Job ID"
-msgstr "Mevcut İş ID"
+msgstr ""
#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Current Value"
-msgstr "Mevcut Değer"
+msgstr ""
#: frappe/public/js/frappe/form/workflow.js:45
msgid "Current status"
@@ -6120,32 +6185,32 @@ msgstr "Özel"
#. 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 "Özel Temel 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 "Özel Blok Adı"
+msgstr ""
#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
#. Label of the custom_blocks (Table) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Custom Blocks"
-msgstr "Özel Bloklar"
+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 "Özel CSS"
+msgstr ""
#. Label of the custom_configuration_section (Section Break) field in DocType
#. 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Custom Configuration"
-msgstr "Özel Konfigürasyon"
+msgstr ""
#. Label of the custom_delimiters (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -6166,7 +6231,7 @@ msgstr "Özel Belge Türleri (İzin Seçin)"
msgid "Custom Document Types Limit Exceeded"
msgstr "Özel Belge Türleri Sınırı Aşıldı"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "Özel Belgeler"
@@ -6177,15 +6242,15 @@ msgstr "Özel Belgeler"
msgid "Custom Field"
msgstr "Özel Alan"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "Özel Alan {0} Yönetici tarafından oluşturulur ve yalnızca Yönetici hesabı aracılığıyla silinebilir."
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "Özel Alanlar yalnızca standart bir DocType’a eklenebilir."
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "Özel Alanlar çekirdek DocType'lara eklenemez."
@@ -6198,7 +6263,7 @@ msgstr "Özel Altbilgi"
#. Label of the custom_format (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom Format"
-msgstr "Özel Format"
+msgstr ""
#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP
#. Settings'
@@ -6211,7 +6276,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "Özel HTML"
@@ -6235,17 +6300,17 @@ msgstr "Özel LDAP Dizini Seçildi, lütfen 'LDAP Grup Üyesi niteliği' ve 'Gru
#: 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 "Etiket"
+msgstr ""
#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Menu Items"
-msgstr "Özel Menü Öğeleri"
+msgstr ""
#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Custom Options"
-msgstr "Özel Seçenekler"
+msgstr ""
#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
@@ -6255,9 +6320,9 @@ msgstr "Özel Geçersiz Kılmalar"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Custom Report"
-msgstr "Özel Rapor"
+msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "Özel Raporlar"
@@ -6275,18 +6340,18 @@ msgstr "Özel SCSS"
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Sidebar Menu"
-msgstr "Özel Kenar Çubuğu Menüsü"
+msgstr ""
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "Custom Translation"
msgstr "Özel Çeviri"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "Özel alan başarıyla {0} olarak yeniden adlandırıldı."
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6309,26 +6374,26 @@ msgstr "Özel"
msgid "Customization"
msgstr "Özelleştirme"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "Özelleştirme İptal Edildi"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "Özelleştirmeler Sıfırlandı"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "{0} için özelleştirmeler şuraya aktarıldı:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "Özelleştir"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "Özelleştir"
@@ -6374,7 +6439,7 @@ msgstr "Kes"
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Cyan"
-msgstr "Açık Mavi"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
@@ -6388,7 +6453,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "DESC"
-msgstr "Azalan"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -6425,7 +6490,7 @@ msgstr "Günlük"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "Günlük Etkinlik Özeti, hatırlatıcıların ayarlandığı Takvim Etkinlikleri için gönderilir."
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "Günlük Etkinliklerin Aynı Gün Sonlanması Gerekmektedir."
@@ -6434,7 +6499,7 @@ msgstr "Günlük Etkinliklerin Aynı Gün Sonlanması Gerekmektedir."
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Daily Long"
-msgstr "Günlük Uzun"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -6456,7 +6521,7 @@ msgstr "Tehlikeli"
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Dark"
-msgstr "Koyu"
+msgstr ""
#. Label of the dark_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
@@ -6482,8 +6547,8 @@ msgstr "Koyu Tema"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr ""
@@ -6520,7 +6585,7 @@ msgstr "Gösterge Paneli Yöneticisi"
#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Dashboard Name"
-msgstr "Göstgerge Paneli İsmi"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
@@ -6534,7 +6599,7 @@ msgstr "Göstgerge Paneli Görünümü"
#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Dashboards"
-msgstr "Gösterge Paneli"
+msgstr ""
#. Label of the data (Code) field in DocType 'Deleted Document'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -6662,7 +6727,7 @@ msgstr "Tarih"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
msgid "Date Format"
-msgstr "Tarih Biçimi"
+msgstr ""
#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
#. Trail'
@@ -6675,7 +6740,7 @@ msgstr "Tarih Aralığı"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Date and Number Format"
-msgstr "Tarih ve Sayı Formatı"
+msgstr ""
#: frappe/public/js/frappe/form/controls/date.js:253
msgid "Date {0} must be in format: {1}"
@@ -6711,7 +6776,7 @@ msgstr "Gün"
#. 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 "Haftanın günü"
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:27
msgctxt "Duration"
@@ -6721,19 +6786,19 @@ msgstr "Gün"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
-msgstr "Gün Sonra"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before"
-msgstr "Önceki Gün"
+msgstr ""
#. Label of the days_in_advance (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr "Gün Önce veya Sonra"
+msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "Kilitlenme Meydana Geldi"
@@ -6810,7 +6875,7 @@ msgstr "Varsayılan Uygulama"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Email Template"
-msgstr "Varsayılan E-posta Şablonu"
+msgstr ""
#: frappe/email/doctype/email_account/email_account_list.js:13
msgid "Default Inbox"
@@ -6825,7 +6890,7 @@ msgstr "Varsayılan Gelen Kutusu"
#. Label of the is_default (Check) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Default Letter Head"
-msgstr "Varsayılan Antetli Kağıt"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
@@ -6834,7 +6899,7 @@ msgstr "Varsayılan Antetli Kağıt"
#: 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 "Varsayılan İsimlendirme"
+msgstr ""
#. Label of the default_outgoing (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -6845,19 +6910,19 @@ msgstr "Varsayılan Giden"
#. 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 "Varsayılan Portal Adresi"
+msgstr ""
#. Label of the default_print_format (Data) field in DocType 'DocType'
#. Label of the default_print_format (Link) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "Varsayılan Yazdırma Formatı"
+msgstr ""
#. Label of the default_print_language (Link) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Default Print Language"
-msgstr "Varsayılan Yazdırma Dili"
+msgstr ""
#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -6867,7 +6932,7 @@ msgstr "Varsayılan Yönlendirme URI'si"
#. 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 "Yeni Kayıtlardaki Varsayılan Rol"
+msgstr ""
#: frappe/email/doctype/email_account/email_account_list.js:16
msgid "Default Sending"
@@ -6880,12 +6945,12 @@ msgstr "Varsayılan Gönderme ve Gelen Kutusu"
#. Label of the sort_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Field"
-msgstr "Varsayılan Sıralama Alanı"
+msgstr ""
#. Label of the sort_order (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Order"
-msgstr "Varsayılan Sıralama"
+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
@@ -6899,42 +6964,42 @@ msgstr "Varsayılan 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 "Varsayılan Kullanıcı Rolü"
+msgstr ""
#. Label of the default_user_type (Link) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Type"
-msgstr "Varsayılan Kullanıcı Türü"
+msgstr ""
#. Label of the default (Text) field in DocType 'Custom Field'
#. Label of the default_value (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Default Value"
-msgstr "Varsayılan Değer"
+msgstr ""
#. Label of the default_view (Select) field in DocType 'DocType'
#. Label of the default_view (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default View"
-msgstr "Varsayılan Görünüm"
+msgstr ""
#. Label of the default_workspace (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Default Workspace"
-msgstr "Varsayılan Çalışma Alanı"
+msgstr ""
#. Description of the 'Currency' (Link) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Default display currency"
msgstr "Varsayılan Olarak Görüntülenecek Para Birimi"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "{0} için varsayılan değer seçenekler listesinde olmalıdır."
@@ -6945,7 +7010,7 @@ msgstr "Varsayılan {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 "Varsayılan: \"Bize Ulaşın\""
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/defaultvalue/defaultvalue.json
@@ -6957,7 +7022,7 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
msgid "Defaults"
-msgstr "Varsayılan Değerler"
+msgstr ""
#: frappe/email/doctype/email_account/email_account.py:243
msgid "Defaults Updated"
@@ -6991,11 +7056,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -7003,7 +7069,7 @@ msgstr ""
msgid "Delete"
msgstr "Sil"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "Sil"
@@ -7017,10 +7083,6 @@ msgstr "Sil"
msgid "Delete Account"
msgstr "Hesabı Sil"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "Tümünü Sil"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7050,7 +7112,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Sekmeyi Sil"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "Sil ve Yeni Oluştur"
@@ -7078,6 +7148,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "Alanlarla birlikte tüm sekmeyi sil"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7092,16 +7166,20 @@ 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:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
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:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "{0} öğesini kalıcı olarak sil?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7111,12 +7189,12 @@ msgstr "{0} öğesini kalıcı olarak sil?"
#: 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 "Silindi"
+msgstr ""
#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted DocType"
-msgstr "Silinmiş DocType"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/deleted_document/deleted_document.json
@@ -7126,13 +7204,13 @@ msgstr "Silinmiş Belge"
#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr "Silinen İsim"
+msgstr ""
#: frappe/desk/reportview.py:644
msgid "Deleted all documents successfully"
msgstr "Tüm belgeler başarıyla silindi"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "Silindi!"
@@ -7239,6 +7317,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7272,17 +7351,17 @@ msgstr ""
#. Label of the desk_access (Check) field in DocType 'Role'
#: frappe/core/doctype/role/role.json
msgid "Desk Access"
-msgstr "ERP Erişimi"
+msgstr ""
#. Label of the desk_settings_section (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Desk Settings"
-msgstr "Genel Ayarlar"
+msgstr ""
#. Label of the desk_theme (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Desk Theme"
-msgstr "Tema"
+msgstr ""
#. Name of a role
#: frappe/automation/doctype/reminder/reminder.json
@@ -7321,16 +7400,21 @@ msgstr "Tema"
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "Masaüstü Simgesi"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7360,11 +7444,11 @@ msgstr "Ayrıntılar"
msgid "Detect CSV type"
msgstr "CSV türünü algıla"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "Eklenmedi"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "Kaldırılmadı"
@@ -7375,12 +7459,12 @@ msgstr "Fark"
#. 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 "Bu belgenin bulunabileceği farklı \"Durumlar\". \"Açık\", \"Onay Bekliyor\" vb. gibi."
+msgstr ""
#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Digits"
-msgstr "Rakamlar"
+msgstr ""
#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -7391,7 +7475,7 @@ msgstr "Dizin Sunucusu"
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Auto Refresh"
-msgstr "Otomatik Yenilemeyi Kapat"
+msgstr ""
#. Label of the disable_automatic_recency_filters (Check) field in DocType
#. 'List View Settings'
@@ -7403,24 +7487,24 @@ msgstr "Otomatik Tekrarlanma Filtrelerini Devre Dışı Bırak"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Change Log Notification"
-msgstr "Değişiklik Günlüğü Bildirimini Devre Dışı Bırak"
+msgstr ""
#. Label of the disable_comment_count (Check) field in DocType 'List View
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Comment Count"
-msgstr "Yorum Sayısını Gösterme"
+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 "Sayıyı Gösterme"
+msgstr ""
#. Label of the disable_document_sharing (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Document Sharing"
-msgstr "Döküman Paylaşımını Devre Dışı Bırak"
+msgstr ""
#. Label of the disable_product_suggestion (Check) field in DocType 'System
#. Settings'
@@ -7435,7 +7519,7 @@ msgstr "Raporu Kapat"
#. 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 sunucusu kimlik doğrulamasını devre dışı bırakın"
+msgstr ""
#. Label of the disable_scrolling (Check) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
@@ -7446,7 +7530,7 @@ msgstr ""
#. Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Sidebar Stats"
-msgstr "Kenar Çubuğu İstatistiklerini Kapat"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:146
msgid "Disable Signup for your site"
@@ -7456,7 +7540,7 @@ msgstr "Siteniz için Kaydolmayı Devre Dışı Bırakın"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Standard Email Footer"
-msgstr "Standart E-posta Alt Bilgisini Kapat"
+msgstr ""
#. Label of the disable_system_update_notification (Check) field in DocType
#. 'System Settings'
@@ -7468,12 +7552,12 @@ msgstr "Güncelleme Bildirimini Devre Dışı Bırak"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Username/Password Login"
-msgstr "Kullanıcı Adı/Şifre Girişini Devre Dışı Bırak"
+msgstr ""
#. Label of the disable_signup (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Disable signups"
-msgstr "Yeni Kayıtlara İzin Verme"
+msgstr ""
#. Label of the disabled (Check) field in DocType 'Assignment Rule'
#. Label of the disabled (Check) field in DocType 'Auto Repeat'
@@ -7512,10 +7596,11 @@ msgstr "Devre dışı"
msgid "Disabled Auto Reply"
msgstr "Otomatik Yanıt Devre Dışı"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "Vazgeç"
@@ -7529,11 +7614,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "Vazgeç"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "{0} Vazgeç"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "Vazgeç"
@@ -7577,7 +7662,7 @@ msgstr "Geç"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Display"
-msgstr "Görünüm"
+msgstr ""
#. Label of the depends_on (Code) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
@@ -7607,11 +7692,11 @@ msgstr "Yeni Kullanıcı Oluşturmayın"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "E-postası olan kullanıcı sistemde mevcut değilse yeni kullanıcı oluşturmayın"
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "Şablonda önceden ayarlanmış başlıkları düzenlemeyin"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7619,7 +7704,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr "Hala devam etmek istiyor musunuz?"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "Bağlantılı tüm Dökümanları iptal etmek istiyor musunuz?"
@@ -7636,7 +7721,7 @@ 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 "Belge Durumu"
+msgstr ""
#. Name of a DocType
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
@@ -7674,7 +7759,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7697,7 +7781,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7710,7 +7793,7 @@ msgstr ""
msgid "DocType"
msgstr "DocType"
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr "DocType {0} alanı için sağlanmıştır {1} en az bir Bağlantı alanına sahip olmalıdır"
@@ -7759,7 +7842,7 @@ msgstr "DocType Durumu"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
-msgstr "DocType Görünümü"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.py:670
msgid "DocType can not be merged"
@@ -7778,10 +7861,6 @@ msgstr "DocType uygulamadaki bir Tablo veya Formdur."
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "DocType, seçilen Doc Event için Gönderilebilir olmalıdır"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "DocType bir dize olmalıdır"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "DocType en az bir alana sahip olmalıdır"
@@ -7793,21 +7872,21 @@ msgstr "DocType Günlük Ayarları tarafından desteklenmiyor."
#. 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 "Bu İş Akışının geçerli olduğu DocType."
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
msgid "DocType required"
msgstr "DocType gerekli"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "DocType {0} mevcut değil."
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "DocType {} bulunamadı"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "DocType adı boşluk ile başlamamalı veya bitmemelidir"
@@ -7821,7 +7900,7 @@ msgstr "DocType değiştirelemiyor, lütfen bunun yerine {0} modülünü kullan
msgid "Doctype"
msgstr "BelgeTipi"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "Doctype adı {0} karakterleriyle sınırlıdır ({1})"
@@ -7842,7 +7921,7 @@ msgstr "DocType gerekli"
#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
#: frappe/public/js/frappe/views/render_preview.js:42
msgid "Document"
-msgstr "Belge"
+msgstr ""
#. Label of the actions (Table) field in DocType 'DocType'
#. Label of the document_actions_section (Section Break) field in DocType
@@ -7850,7 +7929,7 @@ msgstr "Belge"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Actions"
-msgstr "Belge Eylemleri"
+msgstr ""
#. Label of the document_follow_notifications_section (Section Break) field in
#. DocType 'User'
@@ -7860,7 +7939,7 @@ msgstr "Belge Eylemleri"
msgid "Document Follow"
msgstr "Belge Takibi"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "Belge Takip Bildirimi"
@@ -7873,7 +7952,7 @@ msgstr "Belge Bağlantısı"
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Document Linking"
-msgstr "Belge Bağlama"
+msgstr ""
#. Label of the links (Table) field in DocType 'DocType'
#. Label of the document_links_section (Section Break) field in DocType
@@ -7881,21 +7960,21 @@ msgstr "Belge Bağlama"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Links"
-msgstr "Döküman Bağlantıları"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "Belge Bağlantıları Satırı #{0}: {2} DocType'da {1} alanı bulunamadı"
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "Belge Bağlantıları Satırı #{0}: Geçersiz doctype veya alan."
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "Belge Bağlantıları Satırı #{0}: Dahili bağlantılar için Üst DocType zorunludur"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7914,9 +7993,9 @@ msgstr ""
msgid "Document Name"
msgstr "Belge adı"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "Belge Adı bir dize olmalıdır"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7933,7 +8012,7 @@ msgstr "Adlandırma Kuralı Koşulu"
msgid "Document Naming Settings"
msgstr "Belge Adlandırma Ayarları"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "Belge Kuyruğa Alındı"
@@ -7956,7 +8035,7 @@ msgstr "Belge Kaydedildi"
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Document Share"
-msgstr "Döküman Paylaşımı"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/document_share_key/document_share_key.json
@@ -7967,7 +8046,7 @@ msgstr "Belge Paylaşım Anahtarı"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Document Share Key Expiry (in Days)"
-msgstr "Belge Paylaşım Anahtarının Süresi (Gün)"
+msgstr ""
#. Name of a report
#. Label of a Link in the Users Workspace
@@ -7984,7 +8063,7 @@ msgstr "Belge Paylaşım Raporu"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document States"
-msgstr "Belge Durumları"
+msgstr ""
#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:210
#: frappe/public/js/frappe/model/model.js:137
@@ -8037,7 +8116,7 @@ msgstr "Belge Başlığı"
#: 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:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8057,11 +8136,11 @@ msgstr "Belge Türü"
msgid "Document Type and Function are required to create a number card"
msgstr "Veri Kartı oluşturmak için Belge Türü ve Fonksiyon gereklidir"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "Belge Türü içe aktarılamıyor"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "Belge Türü gönderilebilir değil"
@@ -8090,27 +8169,27 @@ msgid "Document Types and Permissions"
msgstr "Belge Türleri ve İzinler"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "Belge Kilidi Açıldı"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "Bu kullanıcı için belge takibi etkinleştirilmedi."
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "Belge iptal edildi"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "Belge Gönderildi"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "Belge taslak durumundadır"
@@ -8122,11 +8201,11 @@ msgstr "Belge yalnızca role sahip kullanıcılar tarafından düzenlenebilir"
msgid "Document not Relinked"
msgstr "Belge Yeniden Bağlantılandırılmadı"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "Belgenin adı {0} değeri {1} olarak değiştirildi"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "Belgenin adı {0} değerinden {1} değerine değiştirilmek üzere sıraya alındı."
@@ -8142,21 +8221,17 @@ msgstr "Belge {0} Zaten Geri Yüklendi"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "Belge {0} , {2} tarafından {1} durumuna ayarlandı"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "Belge {0} {1} mevcut değil"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr "Dökümantasyon Bağlantısı"
+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 "Dökümantasyon Bağlantısı"
+msgstr ""
#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
msgid "Documents"
@@ -8187,7 +8262,7 @@ msgstr "Domain"
#. Label of the domain_name (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Domain Name"
-msgstr "Etki Alanı Adı"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/domain_settings/domain_settings.json
@@ -8220,7 +8295,7 @@ msgstr "Durumu Değiştirme"
#. 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 "E-Posta Gönderme"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
@@ -8283,7 +8358,7 @@ msgstr "İndirme linki"
msgid "Download PDF"
msgstr "PDF İndir"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "Raporu İndir"
@@ -8354,7 +8429,7 @@ msgstr "Dosyaları buraya sürükleyin"
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Dropdowns"
-msgstr "Açılır Menüler"
+msgstr ""
#. Label of the date (Date) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
@@ -8364,10 +8439,10 @@ 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 "Vade Tarihine göre"
+msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "Kopyala"
@@ -8375,19 +8450,15 @@ msgstr "Kopyala"
msgid "Duplicate Entry"
msgstr "Yinelenen Giriş"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "Yinelenen Filtre Adı"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Çoklu İsim"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "Satırı Çoğalt"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "Mevcut satırı çoğalt"
@@ -8395,6 +8466,18 @@ msgstr "Mevcut satırı çoğalt"
msgid "Duplicate field"
msgstr "Alanı çoğalt"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8421,20 +8504,20 @@ msgstr "Dinamik"
#. 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Dynamic Filters"
-msgstr "Dinamik Filtreler"
+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 "Dinamik JSON Filtreleri"
+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 "Dinamik Filtre Seçimi"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Name of a DocType
@@ -8455,17 +8538,17 @@ msgstr "Dinamik Bağlantı"
#. 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Dynamic Report Filters"
-msgstr "Dinamik Rapor Filtreleri"
+msgstr ""
#. Label of the dynamic_route (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Route"
-msgstr "Dinamik Rota"
+msgstr ""
#. Label of the dynamic_template (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Template"
-msgstr "Dinamik Şablon"
+msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
msgid "ESC"
@@ -8482,9 +8565,10 @@ msgstr "ESC"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8495,7 +8579,7 @@ msgstr "ESC"
msgid "Edit"
msgstr "Düzenle"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "Düzenle"
@@ -8505,7 +8589,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "Düzenle"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "Düzenle"
@@ -8526,15 +8610,15 @@ msgstr "Grafiği Düzenle"
msgid "Edit Custom Block"
msgstr "Özel Bloğu Düzenle"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "HTML Kodunu Düzenle"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "DocType Düzenle"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "DocType Düzenle"
@@ -8548,7 +8632,7 @@ msgstr "Düzenle"
msgid "Edit Filters"
msgstr "Filtreleri Düzenle"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "Filtreleri Düzenle"
@@ -8561,7 +8645,7 @@ msgstr "Altbilgiyi Düzenle"
msgid "Edit Format"
msgstr "Formatı Düzenle"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8619,7 +8703,7 @@ msgstr "Hızlı Listeyi Düzenle"
msgid "Edit Shortcut"
msgstr "Kısayolu Düzenle"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8642,11 +8726,11 @@ msgstr "Düzenleme Modu"
msgid "Edit the {0} Doctype"
msgstr "{0} DocType'ı Düzenle"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "İçerik eklemek için düzenle"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "Yanıtınızı düzenleyin"
@@ -8681,7 +8765,7 @@ msgstr "{0} Düzenleniyor"
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Eg. smsgateway.com/api/send_sms.cgi"
-msgstr "Örn. smsgateway.com/api/send_sms.cgi"
+msgstr ""
#: frappe/rate_limiter.py:152
msgid "Either key or IP flag is required."
@@ -8690,7 +8774,7 @@ msgstr ""
#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Element Selector"
-msgstr "Element Seçici"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Label of the email (Check) field in DocType 'Custom DocPerm'
@@ -8702,6 +8786,7 @@ msgstr "Element Seçici"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8717,12 +8802,14 @@ msgstr "Element Seçici"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8755,9 +8842,9 @@ msgstr "E-posta Hesabı Devre Dışı Bırakıldı."
#. Label of the email_account_name (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Email Account Name"
-msgstr "E-posta Hesap Adı"
+msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "E-posta Hesabı birden çok kez eklendi"
@@ -8786,7 +8873,7 @@ msgstr "E-posta Address"
#. 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 Kişileri senkronize edilecek E-posta Adresi."
+msgstr ""
#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
@@ -8806,7 +8893,7 @@ msgstr "E-posta Bayrak Kuyruğu"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr "E-posta Alt Bilgi Adresi"
+msgstr ""
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
@@ -8838,7 +8925,7 @@ msgstr ""
#. Label of the email_ids (Table) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Email IDs"
-msgstr "E-Posta ID'leri"
+msgstr ""
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48
@@ -8849,7 +8936,7 @@ msgstr ""
#. Label of the email_inbox (Section Break) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr "E-posta Gelen Kutusu"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/email_queue/email_queue.json
@@ -8878,7 +8965,7 @@ msgstr "E-posta Yanıtlama Yardımı"
#. 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 "E-posta Yeniden Deneme Limiti"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/email_rule/email_rule.json
@@ -8902,17 +8989,17 @@ msgstr "E-posta Gönderim Zamanı"
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email Settings"
-msgstr "E-posta Ayarları"
+msgstr ""
#. Label of the email_signature (Text Editor) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Email Signature"
-msgstr "E-posta İmzası"
+msgstr ""
#. Label of the email_status (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Status"
-msgstr "E-posta Durumu"
+msgstr ""
#. Label of the email_sync_option (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8931,12 +9018,12 @@ msgstr "E-Posta Şablonu"
#. DocType 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Email Threads on Assigned Document"
-msgstr "Atanan Belgedeki Konuları E-postayla Gönder"
+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 "E-posta Alıcısı"
+msgstr ""
#. Name of a DocType
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
@@ -8955,7 +9042,7 @@ msgstr "E-posta çöp kutusuna taşındı"
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "Gönderilmez Email {0} (devre dışı / üyelikten)"
@@ -8988,13 +9075,13 @@ msgstr "E-postalar sessize alındı"
#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Emails will be sent with next possible workflow actions"
-msgstr "E-postalar bir sonraki olası iş akışı eylemleriyle birlikte gönderilecektir"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:34
msgid "Embed code copied"
msgstr "Gömülü kod kopyalandı"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -9002,7 +9089,7 @@ msgstr ""
msgid "Empty column"
msgstr "Boş sütun"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9013,7 +9100,7 @@ msgstr ""
#: frappe/integrations/doctype/google_contacts/google_contacts.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
-msgstr "Etkinleştir"
+msgstr ""
#. Label of the enable_action_confirmation (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
@@ -9033,18 +9120,18 @@ msgstr "Formu Özelleştir'de {0} doctype için Otomatik Tekrara İzin Ver'i etk
#. 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 "Otomatik Cevabı Etkinleştir"
+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 "Belgelerde Otomatik Bağlamayı Etkinleştir"
+msgstr ""
#. Label of the enable_comments (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr "Yorumları Etkinleştir"
+msgstr ""
#. Label of the enable_dynamic_client_registration (Check) field in DocType
#. 'OAuth Settings'
@@ -9056,7 +9143,7 @@ msgstr ""
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Enable Email Notifications"
-msgstr "E-posta Bildirimlerini Aç"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
@@ -9079,7 +9166,7 @@ msgstr "Geleni Etkinleştir"
#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Onboarding"
-msgstr "Modül Tanıtımını Aç"
+msgstr ""
#. Label of the enable_outgoing (Check) field in DocType 'User Email'
#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
@@ -9093,7 +9180,7 @@ msgstr "Gideni Etkinleştir"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Password Policy"
-msgstr "Şifre Politikasını Etkinleştir"
+msgstr ""
#. Label of the enable_prepared_report (Check) field in DocType 'Role
#. Permission for Page and Report'
@@ -9104,7 +9191,7 @@ msgstr "Hazırlanan Raporu Etkinleştir"
#. 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 "Yazdırma Sunucusunu Etkinleştir"
+msgstr ""
#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
#. Notification Settings'
@@ -9120,7 +9207,7 @@ 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 "Stil Olmadan Yazdır"
+msgstr ""
#: frappe/core/doctype/report/report.js:39
msgid "Enable Report"
@@ -9143,7 +9230,7 @@ msgstr "Güvenliği Etkinleştir"
#. 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 "Sosyal Medya ile Girişi Etkinleştir"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:139
msgid "Enable Tracking Page Views"
@@ -9218,7 +9305,7 @@ msgstr "{0} kullanıcısı için e-posta gelen kutusu etkinleştirildi"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enables Calendar and Gantt views."
-msgstr "Takvim ve Gantt görünümü aktif eder."
+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?"
@@ -9238,12 +9325,12 @@ msgstr "Firebase Cloud Messaging aracılığıyla tüm yüklü uygulamalar için
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enabling this will submit documents in background"
-msgstr "Etkinleştirilirse belgeler arka planda gönderilir."
+msgstr ""
#. Label of the encrypt_backup (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Encrypt Backups"
-msgstr "Yedeklemeleri Şifrele"
+msgstr ""
#: frappe/utils/password.py:196
msgid "Encryption key is in invalid format!"
@@ -9271,7 +9358,7 @@ msgstr "Bitiş Tarihi"
#. 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 "Bitiş Tarihi Alanı"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.py:208
msgid "End Date cannot be before Start Date!"
@@ -9286,18 +9373,18 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Ended At"
-msgstr "Bitiş"
+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 "uç noktalar"
+msgstr ""
#. Label of the ends_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr "Bitiş"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -9307,7 +9394,7 @@ msgstr "Tecrübe Puanı"
#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Enqueued By"
-msgstr "Sıraya Alındı"
+msgstr ""
#: frappe/core/doctype/recorder/recorder.py:125
msgid "Enqueued creation of indexes"
@@ -9321,18 +9408,18 @@ msgstr "Kullanıcı ve grup arama yollarının doğru olduğundan emin olun."
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "Google Ayarları'na İstemci Kimliği ve İstemci Gizli Anahtarını girin."
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "OTP Uygulamasında görüntülenen Kodu girin."
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
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 "Form Türünü Girin"
+msgstr ""
#: frappe/public/js/frappe/ui/messages.js:94
msgctxt "Title of prompt dialog"
@@ -9346,12 +9433,16 @@ msgstr "{0} için bir ad girin"
#. 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 "Varsayılan değer alanlarını (anahtarları) ve değerleri girin. Bir alan için birden çok değer eklerseniz, ilki seçilir. Bu varsayılanlar, \"eşleşme\" izin kurallarını ayarlamak için de kullanılır. Alanların listesini görmek için \"Formu Özelleştir\"e gidin."
+msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:111
msgid "Enter folder name"
msgstr "Klasör adını girin"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9382,7 +9473,7 @@ msgstr "Varlık Adı"
msgid "Entity Type"
msgstr "Varlık Türü"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "Eşittir"
@@ -9416,7 +9507,7 @@ msgstr "Eşittir"
msgid "Error"
msgstr "Hata"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "Hata"
@@ -9431,12 +9522,12 @@ msgstr "Hata Günlüğü"
msgid "Error Logs"
msgstr "Hata Günlükleri"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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."
@@ -9474,15 +9565,15 @@ 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
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9498,15 +9589,15 @@ msgstr "{0} Bildirim değerlendirilirken hata oluştu. Lütfen şablonunuzu düz
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "Hata: {0} tablosunda veri eksik"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "Hata: {0} için değer eksik: {1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Hata: {0} Satır #{1}: {2} için değer eksik"
@@ -9516,6 +9607,12 @@ msgstr "Hata: {0} Satır #{1}: {2} için değer eksik"
msgid "Errors"
msgstr "Hatalar"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9527,12 +9624,17 @@ msgstr "Etkinlik"
#. Label of the event_category (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr "Etkinlik Kategorisi"
+msgstr ""
#. Label of the event_frequency (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
-msgstr "Etkinlik Sıklığı"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
@@ -9545,7 +9647,7 @@ msgstr "Etkinlik Katılımcıları"
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Event Reminders"
-msgstr "Etkinlik Hatırlatıcıları"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:493
#: frappe/integrations/doctype/google_calendar/google_calendar.py:577
@@ -9557,13 +9659,13 @@ msgstr "Etkinlik Google Takvim ile senkronize edildi."
#: frappe/core/doctype/recorder/recorder.json
#: frappe/desk/doctype/event/event.json
msgid "Event Type"
-msgstr "Etkinlik Türü"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "Etkinlikler"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "Bugünün Takvimindeki Etkinlikler"
@@ -9577,7 +9679,7 @@ msgstr "Herkes"
#. Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]"
-msgstr "Örneğin: \"colors\": [\"#d1d8dd\", \"#ff5858\"]"
+msgstr ""
#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder_query/recorder_query.json
@@ -9585,25 +9687,26 @@ msgid "Exact Copies"
msgstr "Birebir Kopyalar"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr "Örnek"
+msgstr ""
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Example: \"/desk\""
-msgstr "Örnek: \"/desk\""
+msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr "Örnek: #Ağaç/Hesap"
+msgstr ""
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr "Örnek: 00001"
+msgstr ""
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
@@ -9655,7 +9758,7 @@ msgstr ""
msgid "Executing..."
msgstr "Çalıştırılıyor..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "Oluşturma Süresi: {0} sn"
@@ -9676,28 +9779,28 @@ msgstr "Mevcut Rol"
msgid "Expand"
msgstr "Genişlet"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Genişlet"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Tümünü Genişlet"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "Deneysel"
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Expert"
-msgstr "Uzman"
+msgstr ""
#. Label of the expiration_time (Datetime) field in DocType 'OAuth
#. Authorization Code'
@@ -9735,27 +9838,28 @@ msgstr "Sona Erme Tarihi"
#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Expiry time of QR Code Image Page"
-msgstr "QR Kod Resim Sayfasının Sona Erme Süresi"
+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/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Dışarı Aktar"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "Dışarı Aktar"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "1 kaydı dışa aktar"
@@ -9794,11 +9898,11 @@ msgstr "Raporu Dışarı Aktar: {0}"
msgid "Export Type"
msgstr "Dışa Aktarma Türü"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "Eşleşen tüm satırlar dışarı aktarılsın mı?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "Tüm {0} satırları dışarı aktarılacak?"
@@ -9814,19 +9918,23 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr "İhracata izin verilmiyor. Vermek {0} rolü gerekir."
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Export the data without any header notes and column descriptions"
-msgstr "Verileri herhangi bir başlık notu ve sütun açıklaması olmadan dışa aktarın"
+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 "Ana başlık olmadan dışa aktar"
+msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "{0} kayıtlarını dışa aktar"
@@ -9837,14 +9945,14 @@ msgstr "Dışa aktarılan izinler, diğer tüm özelleştirmeleri geçersiz kıl
#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr "Alıcıları Göster"
+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 "İfade"
+msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
@@ -9866,7 +9974,7 @@ msgstr "Dış"
#. Label of the external_link (Data) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "Dış Bağlantı"
@@ -9907,7 +10015,7 @@ msgstr "Başarısız E-postalar"
#. 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 "Başarısız İş Sayısı"
+msgstr ""
#. Label of the failed_jobs (Int) field in DocType 'System Health Report
#. Workers'
@@ -9915,12 +10023,17 @@ msgstr "Başarısız İş Sayısı"
msgid "Failed Jobs"
msgstr "Başarısız İşler"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+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 "Başarısız Girişler (Son 30 gün)"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "Başarısız İşlemler"
@@ -9983,7 +10096,7 @@ msgstr "Serinin önizlemesi oluşturulamadı"
msgid "Failed to get method for command {0} with {1}"
msgstr "{1} ile {0} komutu için geçerli method alınamadı"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9995,7 +10108,7 @@ msgstr "Site bilgisi alınamadı"
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "Sanal belge türü {} içe aktarılamadı, denetleyici dosyası mevcut mu?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "Görüntü optimize edilemedi: {0}"
@@ -10011,7 +10124,7 @@ msgstr "Konu işlenemedi: {}"
msgid "Failed to request login to Frappe Cloud"
msgstr "Frappe Cloud'da oturum açma isteği başarısız oldu"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "E-posta Gönderilemedi:"
@@ -10053,7 +10166,7 @@ msgstr "Favicon"
msgid "Fax"
msgstr "Faks"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "Geri Bildirim"
@@ -10070,7 +10183,7 @@ msgstr "Kadın"
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr "Şuradan Getir"
+msgstr ""
#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
@@ -10113,8 +10226,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10124,7 +10237,7 @@ msgstr "Alan"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "\"Rota\" alanı Web Görünümleri için zorunludur"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "\"Web Sitesi Arama Alanı\" ayarlanmışsa \"başlık\" alanı zorunludur."
@@ -10132,16 +10245,16 @@ msgstr "\"Web Sitesi Arama Alanı\" ayarlanmışsa \"başlık\" alanı zorunludu
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "\"Değer\" alanı zorunludur. Lütfen güncellenecek değeri belirtin"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
#. Label of the description (Text) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr "Alan Açıklaması"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "Alan Eksik"
@@ -10178,18 +10291,18 @@ msgstr "Sorgu sırasında alan yetkilendirilmesinde hata oluştu"
#. 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 "İşlemin İş Akışı Durumunu gösteren alan (alan mevcut değilse, gizli yeni bir Özel Alan oluşturulur)"
+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 "Takip Edilecek Alan"
+msgstr ""
#: frappe/custom/doctype/property_setter/property_setter.py:52
msgid "Field type cannot be changed for {0}"
msgstr "Alan türü {0} için değiştirilemez"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "{0} alanı {1} üzerinde mevcut değil"
@@ -10197,11 +10310,11 @@ msgstr "{0} alanı {1} üzerinde mevcut değil"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "{0} alanı varolmayan {1} doctype ile referansa sahip."
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "{0} alanı bulunamadı."
@@ -10223,7 +10336,7 @@ msgstr "{1} belgesindeki {0} alanı ne bir Cep telefonu numarası alanı ne de b
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "Alan"
@@ -10232,7 +10345,7 @@ msgstr "Alan"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "DocType Alanı '{0}' {3}içinde {2} adında bir {1} ile çakışıyor"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Otomatik adlandırmayı etkinleştirmek için {0} adlı bir alan bulunmalıdır"
@@ -10240,7 +10353,7 @@ msgstr "Otomatik adlandırmayı etkinleştirmek için {0} adlı bir alan bulunma
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Alan ismi 64 karakterle sınırılıdır ({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "Özel Alan için DocType Alanı ayarlanmamış"
@@ -10256,7 +10369,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10304,14 +10417,14 @@ 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:1011
+#: frappe/database/query.py:1054
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 "Virgülle ayrılmış alanlar, arama çubuğunda \"Arama Ölçütü\" listesine eklenir."
+msgstr ""
#. Label of the fieldtype (Select) field in DocType 'Report Column'
#. Label of the fieldtype (Select) field in DocType 'Report Filter'
@@ -10326,9 +10439,9 @@ msgstr "Virgülle ayrılmış alanlar, arama çubuğunda \"Arama Ölçütü\" li
#: 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 "AlanTipi"
+msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10364,12 +10477,12 @@ msgstr "Dosya Yöneticisi"
#. Label of the file_name (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "Dosya İsmi"
+msgstr ""
#. Label of the file_size (Int) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "Dosya Boyutu"
+msgstr ""
#. Label of the section_break_ryki (Section Break) field in DocType 'System
#. Health Report'
@@ -10390,7 +10503,7 @@ msgstr "Dosya Türü"
#. Label of the file_url (Code) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "Dosya Adresi"
+msgstr ""
#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
@@ -10404,12 +10517,12 @@ msgstr "Dosya adı {0} olamaz"
msgid "File not attached"
msgstr "Dosya eklenmedi"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "Dosya boyutu izin verilen maksimum boyutu aştı {0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "Dosya boyutu çok büyük"
@@ -10436,17 +10549,22 @@ msgstr "Dosyalar"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "Filtre"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+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 "Veri Filtresi"
+msgstr ""
#. Label of the filter_list (HTML) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -10460,20 +10578,20 @@ msgstr "Veri Filtresi"
#. 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "Filtre Adı"
#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Filtre Değerleri"
+msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10485,17 +10603,21 @@ msgstr "Filtre..."
#. Step'
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Filtered By"
-msgstr "Filtre"
+msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:33
msgid "Filtered Records"
msgstr "Filtrelenmiş Kayıtlar"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "\"{0}\" tarafından filtrelendi"
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10519,14 +10641,14 @@ msgstr "\"{0}\" tarafından filtrelendi"
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
#. Label of the filters_config (Code) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Configuration"
-msgstr "Filtre Yapılandırması"
+msgstr ""
#. Label of the filters_display (HTML) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10543,16 +10665,12 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "JSON Filtreleri"
+msgstr ""
#. Label of the filters_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "Filtre Seçimi"
-
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "Filtreler {0} için Uygulandı"
+msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
@@ -10571,26 +10689,26 @@ msgstr "Filtreler {0}"
msgid "Filters:"
msgstr "Filtreler:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "... içinde '{0}' öğesini bulun."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "{1} değerini {0} içinde bulabilirsiniz."
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Bitti"
+msgstr ""
#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Finished At"
-msgstr "Bitiş Zamanı"
+msgstr ""
#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
#. Label of the first_day_of_the_week (Select) field in DocType 'System
@@ -10598,7 +10716,7 @@ msgstr "Bitiş Zamanı"
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "First Day of the Week"
-msgstr "Hafta Başlangıcı"
+msgstr ""
#. Label of the first_name (Data) field in DocType 'Contact'
#. Label of the first_name (Data) field in DocType 'User'
@@ -10646,12 +10764,12 @@ msgstr "Bayrak"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Float"
-msgstr "Ondalık"
+msgstr ""
#. Label of the float_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr "Ondalık Yuvarlama"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10666,11 +10784,11 @@ msgstr "Ondalık Yuvarlama"
msgid "Fold"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10699,12 +10817,12 @@ msgstr "{0} klasörü boş değil"
msgid "Folio"
msgstr "Folio"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "Takip Et"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "Takip Eden"
@@ -10712,7 +10830,7 @@ msgstr "Takip Eden"
msgid "Following Report Filters have missing values:"
msgstr "Aşağıdaki Rapor Filtrelerindeki değerler eksik:"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10720,7 +10838,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr "Aşağıdaki alanlar eksik:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "Aşağıdaki alanlarda geçersiz değerler bulunmaktadır:"
@@ -10728,19 +10846,19 @@ msgstr "Aşağıdaki alanlarda geçersiz değerler bulunmaktadır:"
msgid "Following fields have missing values"
msgstr "Aşağıdaki alanlarda eksik değerler bulunuyor"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "Aşağıdaki alanlarda eksik değerler bulunmaktadır:"
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
-msgstr "Yazı Tipi"
+msgstr ""
#. Label of the font_properties (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr "Yazı Tipi Özellikleri"
+msgstr ""
#. Label of the font_size (Int) field in DocType 'Print Format'
#. Label of the font_size (Float) field in DocType 'Print Settings'
@@ -10750,13 +10868,13 @@ msgstr "Yazı Tipi Özellikleri"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr "Yazı Boyutu"
+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 "Yazı Tipleri"
+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'
@@ -10774,7 +10892,7 @@ msgstr "Alt Bilgi"
#. 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 "Alt Bilgi \"Tarafından desteklenmektedir\""
+msgstr ""
#. Label of the footer_source (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -10784,20 +10902,20 @@ msgstr ""
#. Label of the footer (Text Editor) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Footer Content"
-msgstr "Footer İçeriği"
+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 "Altbilgi Ayrıntıları"
+msgstr ""
#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr "Altbilgi HTML"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10805,7 +10923,7 @@ msgstr ""
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Image"
-msgstr "Alt Bilgi Resmi"
+msgstr ""
#. Label of the footer (Section Break) field in DocType 'Website Settings'
#. Label of the footer_items (Table) field in DocType 'Website Settings'
@@ -10834,7 +10952,7 @@ msgstr "Altbilgi Şablonu"
msgid "Footer Template Values"
msgstr "Altbilgi Şablonu Değerleri"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "{0} seçeneği devre dışı bırakıldığı için altbilgi görünmeyebilir"
@@ -10867,16 +10985,6 @@ msgstr "Belge Türü İçin"
msgid "For Example: {} Open"
msgstr "Örnek: {} Aktif"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "Bağlantılar için DocType'ı aralık olarak girin.\n"
-"Seçim için, her biri yeni bir satırda olmak üzere Seçenekler listesini girin."
-
#. 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'
@@ -10900,32 +11008,28 @@ msgstr "Değer İçin"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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."
-#: 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 "Örneğin INV004'ü iptal edip değiştirirseniz bu yeni bir INV004-1 belgesi haline gelir. Bu, her değişikliği takip etmenize yardımcı olur."
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "Örnek:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "Örnek: Belge kimliğini eklemek istiyorsanız {0} kullanın"
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "Örnek: {} Aktif"
+msgstr ""
#. Description of the 'Client script' (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "Yardım için İstemci Komut Dosyası API'si ve Örnekler bölümüne bakın"
+msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
@@ -10935,13 +11039,13 @@ msgstr "Daha fazla bilgi için, {0}."
#. 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 "Birden fazla adres için adresi farklı satırlara girin. örneğin test@test.com ⏎ test1@test.com"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:197
msgid "For updating, you can update only selective columns."
msgstr "Yalnızca seçili sütunları güncelleştirebilirsiniz."
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "{0} için {1} düzeyinde {2} içinde {3} satırında"
@@ -10960,7 +11064,7 @@ msgstr "Zorla"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Force Re-route to Default View"
-msgstr "Varsayılan Görünüme Yeniden Yönlendirmeyi Zorla"
+msgstr ""
#: frappe/core/doctype/rq_job/rq_job.js:13
msgid "Force Stop job"
@@ -10970,7 +11074,7 @@ msgstr "İşi Durdurmaya Zorla"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force User to Reset Password"
-msgstr "Kullanıcıyı Şifresini Değiştirmesi İçin Zorla"
+msgstr ""
#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType
#. 'System Settings'
@@ -10991,7 +11095,8 @@ msgstr "Şifremi Unuttum"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "Form"
@@ -11019,7 +11124,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Form Settings"
-msgstr "Form Ayarları"
+msgstr ""
#. Name of a DocType
#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
@@ -11170,7 +11275,7 @@ msgstr ""
msgid "From"
msgstr "itibaren"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "itibaren"
@@ -11189,9 +11294,9 @@ msgstr "Başlama Tarihi"
#. 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 "Başlangıç Tarihi Alanı"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "Belge Türü"
@@ -11203,7 +11308,7 @@ msgstr ""
#. Label of the sender_full_name (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "From Full Name"
-msgstr "Gönderenin Tam İsmi"
+msgstr ""
#. Label of the from_user (Link) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -11217,7 +11322,7 @@ 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 "Tam"
+msgstr ""
#. Label of the full_name (Data) field in DocType 'Contact'
#. Label of the full_name (Data) field in DocType 'Activity Log'
@@ -11232,7 +11337,7 @@ msgstr "Tam"
msgid "Full Name"
msgstr "Tam Adı"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "Tam Sayfa"
@@ -11240,12 +11345,12 @@ msgstr "Tam Sayfa"
#. Label of the full_width (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Full Width"
-msgstr "Tam Genişlik"
+msgstr ""
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Fonksiyon"
@@ -11254,11 +11359,11 @@ msgstr "Fonksiyon"
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "{0} fonksiyonu beyaz listeye eklenmemiş."
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11283,7 +11388,7 @@ msgstr "Gmail"
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "GNU Affero General Public License"
-msgstr "GNU Affero Genel Kamu Lisansı"
+msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
@@ -11321,13 +11426,13 @@ msgstr "Genel"
#. Label of the generate_keys (Button) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Generate Keys"
-msgstr "Anahtar Oluştur"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "Yeni Rapor Oluştur"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "Rastgele Şifre Oluştur"
@@ -11337,8 +11442,8 @@ msgstr "Rastgele Şifre Oluştur"
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "İzleme Bağlantısı Oluştur"
@@ -11398,18 +11503,18 @@ msgstr "PDF'i Getir"
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Get a preview of generated names with a series."
-msgstr "Yeni isimlendirme serisinin önizlemesini buradan görebilirsiniz."
+msgstr ""
#. Description of the 'Email Threads on Assigned Document' (Check) field in
#. DocType 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Get notified when an email is received on any of the documents assigned to you."
-msgstr "Size atanan belgelerden herhangi biriyle ilgili bir e-posta alındığında bildirim alın."
+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'dan dünya çapında tanınan avatarınızı edinin"
+msgstr ""
#. Label of the git_branch (Data) field in DocType 'Installed Application'
#: frappe/core/doctype/installed_application/installed_application.json
@@ -11449,7 +11554,7 @@ msgstr "Genel Kısayollar"
msgid "Global Unsubscribe"
msgstr "Genel E-posta Aboneliğini İptal Et"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "Git"
@@ -11465,7 +11570,7 @@ msgstr "Bildirim Ayarları Listesine Git"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "Sayfaya Git"
+msgstr ""
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
@@ -11490,7 +11595,7 @@ msgstr "Belgeye git"
#. 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 "Formu doldurduktan sonra bu URL'ye gidin"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.js:54
#: frappe/custom/doctype/client_script/client_script.js:12
@@ -11509,7 +11614,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr "{0} Sayfasına Git"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "Hedef"
@@ -11517,12 +11622,12 @@ msgstr "Hedef"
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Google"
-msgstr "Google"
+msgstr ""
#. Label of the google_analytics_id (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics ID"
-msgstr "Google Analytics Kimliği"
+msgstr ""
#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
#. Settings'
@@ -11572,14 +11677,14 @@ msgstr "Google Takvim - Google Takvim'den etkinlik alınamadı, hata kodu {0}."
#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr "Google Takvim Etkinlik Kimliği"
+msgstr ""
#. Label of the google_calendar_id (Data) field in DocType 'Event'
#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
#: frappe/desk/doctype/event/event.json
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr "Google Takvim Etkinlik Kimliği"
+msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
@@ -11617,13 +11722,13 @@ msgstr "Google Drive"
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker"
-msgstr "Google Drive Seçici"
+msgstr ""
#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
-msgstr "Google Drive Seçici Etkinleştirildi"
+msgstr ""
#. Label of the font (Data) field in DocType 'Print Format'
#. Label of the google_font (Data) field in DocType 'Website Theme'
@@ -11631,12 +11736,12 @@ msgstr "Google Drive Seçici Etkinleştirildi"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr "Google Yazı Tipi"
+msgstr ""
#. Label of the google_meet_link (Small Text) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
-msgstr "Google Meet Bağlantısı"
+msgstr ""
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
@@ -11674,7 +11779,7 @@ msgstr "Grafik"
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Gray"
-msgstr "Gri"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:23
msgid "Greater Than"
@@ -11724,18 +11829,18 @@ msgstr "Grup"
#. 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 "Gruplandırma Referansı"
+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 "Türe Göre Gruplandır"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
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:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11815,6 +11920,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "HTML Düzenleyici"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11832,7 +11941,7 @@ msgstr "Jinja destekli 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 "Yarım"
+msgstr ""
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
@@ -11881,7 +11990,7 @@ msgstr ""
#. Label of the has_web_view (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Has Web View"
-msgstr "Web Görünümü Var"
+msgstr ""
#: frappe/templates/signup.html:19
msgid "Have an account? Login"
@@ -11896,14 +12005,14 @@ msgstr "Hesabınız Varsa Giriş Yapın"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Header"
-msgstr "Başlık"
+msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header HTML"
-msgstr "Başlık HTML"
+msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11939,7 +12048,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11960,7 +12069,7 @@ msgstr "Başlık"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr "Isı Haritası"
+msgstr ""
#: frappe/templates/emails/new_user.html:2
msgid "Hello"
@@ -11976,7 +12085,7 @@ msgstr "Merhaba,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12019,7 +12128,7 @@ msgstr ""
#. Label of the helpful (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Helpful"
-msgstr "Faydalı"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -12031,7 +12140,7 @@ msgstr "Helvetica"
msgid "Helvetica Neue"
msgstr "Helvetica Neue"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "İzleme Bağlantınız"
@@ -12067,8 +12176,8 @@ msgstr "Gizli"
msgid "Hidden Fields"
msgstr "Gizli Alanlar"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12084,7 +12193,7 @@ msgstr "Gizle"
#. 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 "Bloğu Gizle"
+msgstr ""
#. Label of the hide_border (Check) field in DocType 'DocField'
#. Label of the hide_border (Check) field in DocType 'Custom Field'
@@ -12093,24 +12202,24 @@ msgstr "Bloğu Gizle"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Border"
-msgstr "Kenarları Gizle"
+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 "Butonları Gizle"
+msgstr ""
#. Label of the allow_copy (Check) field in DocType 'DocType'
#. Label of the allow_copy (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Hide Copy"
-msgstr "Kopyayı Gizle"
+msgstr ""
#. Label of the hide_custom (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Hide Custom DocTypes and Reports"
-msgstr "Özel DocType ve Raporları Gizle"
+msgstr ""
#. Label of the hide_days (Check) field in DocType 'DocField'
#. Label of the hide_days (Check) field in DocType 'Custom Field'
@@ -12144,7 +12253,7 @@ msgstr "Etiketi Gizle"
#. Label of the hide_login (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Hide Login"
-msgstr "Kullanıcı Girişini Gizle"
+msgstr ""
#: frappe/public/js/form_builder/form_builder.bundle.js:43
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
@@ -12154,7 +12263,7 @@ msgstr "Önizlemeyi Gizle"
#. 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 "Vurgulama iletişim kutusunda Önceki, Sonraki ve Kapat düğmelerini gizle."
+msgstr ""
#. Label of the hide_seconds (Check) field in DocType 'DocField'
#. Label of the hide_seconds (Check) field in DocType 'Custom Field'
@@ -12163,7 +12272,7 @@ msgstr "Vurgulama iletişim kutusunda Önceki, Sonraki ve Kapat düğmelerini gi
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Seconds"
-msgstr "Saniyeleri Gizle"
+msgstr ""
#. Label of the hide_toolbar (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -12173,7 +12282,7 @@ msgstr "Kenar Çubuğunu, Menüyü ve Yorumları Gizle"
#. 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 "Standart Menüyü Gizle"
+msgstr ""
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
@@ -12198,7 +12307,7 @@ msgstr "Altbilgiyi gizle"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hide footer in auto email reports"
-msgstr "Otomatik E-posta Raporlarında Alt Bilgiyi Gizle"
+msgstr ""
#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -12219,12 +12328,12 @@ msgstr "Yüksek"
#. 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 "Daha yüksek öncelikli kural önce uygulanacaktır"
+msgstr ""
#. Label of the highlight (Text) field in DocType 'Company History'
#: frappe/website/doctype/company_history/company_history.json
msgid "Highlight"
-msgstr "Vurgulama"
+msgstr ""
#: frappe/www/update-password.html:301
msgid "Hint: Include symbols, numbers and capital letters in the password"
@@ -12234,7 +12343,7 @@ msgstr "İpucu: Parolaya semboller, sayılar ve büyük harfler ekleyin."
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12248,12 +12357,12 @@ msgstr "Ana Sayfa"
#: frappe/core/doctype/role/role.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Home Page"
-msgstr "Ana Sayfa"
+msgstr ""
#. Label of the home_settings (Code) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Home Settings"
-msgstr "Ana Sayfa Ayarları"
+msgstr ""
#: frappe/core/doctype/file/test_file.py:321
#: frappe/core/doctype/file/test_file.py:323
@@ -12276,14 +12385,14 @@ msgstr "Ana Sayfa/Test Klasörü 2"
#: frappe/core/doctype/server_script/server_script.json
#: frappe/core/doctype/user/user.json
msgid "Hourly"
-msgstr "Saatlik"
+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 "Saatlik Uzun"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -12294,7 +12403,7 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hourly rate limit for generating password reset links"
-msgstr "Şifre sıfırlama bağlantıları oluşturmak için saatlik limit."
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:29
msgctxt "Duration"
@@ -12317,18 +12426,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
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.
"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12358,7 +12467,7 @@ msgstr "Kimlikler yalnızca alfanümerik karakterlerden oluşmalı, boşluk içe
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "IMAP Details"
-msgstr "IMAP Ayrıntıları"
+msgstr ""
#. Label of the imap_folder (Data) field in DocType 'Communication'
#. Label of the imap_folder (Table) field in DocType 'Email Account'
@@ -12376,10 +12485,9 @@ msgstr "IMAP Klasörü"
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/user_session_display/user_session_display.json
msgid "IP Address"
-msgstr "IP Adresi"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12400,11 +12508,16 @@ msgstr "IP Adresi"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "Simge"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12415,6 +12528,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12424,7 +12541,7 @@ msgstr "Simge butonun üstünde gözükecek"
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Identity Details"
-msgstr "Kimlik Bilgileri"
+msgstr ""
#. Label of the idx (Int) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -12435,7 +12552,7 @@ msgstr ""
#. '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 "Kısıtlı Kullanıcı İzni Uygula işaretliyse ve kullanıcıya bir DocType için Kullanıcı İzni tanımlanmışsa, bağlantının değerinin boş olduğu tüm belgeler o Kullanıcıya gösterilmeyecektir."
+msgstr ""
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow'
@@ -12444,15 +12561,15 @@ msgstr "Kısıtlı Kullanıcı İzni Uygula işaretliyse ve kullanıcıya bir Do
#: 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 "İşaretliyse iş akışı durumu liste görünümündeki durumu geçersiz kılmaz"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "Sahibiyle"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "Eğer bir Rol Seviye 0'da erişime sahip değilse, daha yüksek seviyelerin bir anlamı yoktur."
@@ -12465,30 +12582,30 @@ msgstr ""
#. Description of the 'Is Active' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr "İşaretlenirse, diğer tüm iş akışları devre dışı kalır."
+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 "İşaretlenirse, Para Birimi, Miktar veya Sayım'ın negatif sayısal değerleri pozitif olarak gösterilir."
+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 "İşaretlendiğinde, kullanıcılar Erişimi Onayla iletişim kutusunu görmez."
+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 "Devre dışı bırakılırsa, bu rol tüm kullanıcılardan kaldırılacaktır."
+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 "Etkinleştirilirse, kullanıcı İki Faktörlü Kimlik Doğrulama kullanarak herhangi bir IP Adresinden oturum açabilir, bu aynı zamanda Sistem Ayarları'nda tüm kullanıcılar için de ayarlanabilir"
+msgstr ""
#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -12499,17 +12616,17 @@ msgstr "Etkinleştirilirse, web formundaki tüm yanıtlar anonim olarak gönderi
#. 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 "Kullanıcı İki Faktörlü Kimlik Doğrulama kullanarak herhangi bir IP Adresinden oturum açabilir, bu aynı zamanda Sistem Ayarları'nda tüm kullanıcılar için de ayarlanabilir"
+msgstr ""
#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, changes to the document are tracked and shown in timeline"
-msgstr "Belgede yapılan değişiklikler izlenir ve zaman akışında gösterilir."
+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 "Belge görüntülenmeleri izlenir, birden çok kez olabilir."
+msgstr ""
#. Description of the 'Only allow System Managers to upload public files'
#. (Check) field in DocType 'System Settings'
@@ -12520,13 +12637,13 @@ 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 "Kullanıcı belgeyi ilk açtığında belge görüldü olarak işaretlenir."
+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 "Etkinleştirildiğinde bildirim, gezinme çubuğunun sağ üst köşesindeki bildirimler açılır menüsünde gösterilir."
+msgstr ""
#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
#. Settings'
@@ -12538,13 +12655,13 @@ 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 "Etkinleştirilirse, Sınırlı IP Adresinden oturum açan kullanıcılardan İki Faktörlü Kimlik Doğrulaması istenmeyecektir"
+msgstr ""
#. Description of the 'Notify Users On Every Login' (Check) field in DocType
#. 'Note'
#: frappe/desk/doctype/note/note.json
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
-msgstr "Etkinleştirilirse, kullanıcılar her oturum açtıklarında bilgilendirilir. Etkinleştirilmezse, kullanıcılar yalnızca bir kez bilgilendirilir."
+msgstr ""
#. Description of the 'Default Workspace' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -12554,12 +12671,12 @@ msgstr "Boş bırakılırsa, varsayılan çalışma alanı en son ziyaret edilen
#. 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 "Standart olmayan bağlantı noktası ise (örn. 587)"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525."
-msgstr "Standart olmayan bağlantı noktasıysa (ör. 587). Google Cloud üzerindeyse 2525 numaralı bağlantı noktasını deneyin."
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
@@ -12579,12 +12696,20 @@ msgstr "Eğer belirtilmezse, döviz yuvarlaması sayı formatına göre yapılac
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr "Yalnızca bu rollere sahip kullanıcılar bu grafiğe erişebilir. Ayarlanmazsa, DocType veya Rapor izinleri kullanılır."
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+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 "Kullanıcının herhangi bir rolü işaretlenmişse, kullanıcı \"Sistem Kullanıcısı\" olur. \"Sistem Kullanıcısı\" masaüstüne erişebilir"
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "Eğer bu talimatlar yardımcı olmadıysa lütfen GitHub Sorunları'na önerilerinizi ekleyin."
@@ -12684,7 +12809,7 @@ msgstr "Bu boyuttan büyük ekleri yoksay"
msgid "Ignored Apps"
msgstr "Yoksayılan Uygulamalar"
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "{0} için Uygun Olmayan Belge Durumu"
@@ -12750,11 +12875,11 @@ msgstr ""
msgid "Image Width"
msgstr "Resim Genişliği"
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "Resim alanı geçerli bir alan adı olmalıdır"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "Resim alanı iliştirilen resim türünde olmalıdır"
@@ -12788,7 +12913,7 @@ msgstr "{0} Gibi Kullan"
msgid "Impersonated by {0}"
msgstr "{0} Olarak Kullandı"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12806,11 +12931,12 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "İçe Aktar"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "İçe Aktar"
@@ -12913,7 +13039,7 @@ msgstr "Günde"
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Filter"
-msgstr "Filtre"
+msgstr ""
#. Label of the in_global_search (Check) field in DocType 'DocField'
#. Label of the in_global_search (Check) field in DocType 'Custom Field'
@@ -12923,7 +13049,7 @@ msgstr "Filtre"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Global Search"
-msgstr "Genel Arama"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.js:88
msgid "In Grid View"
@@ -12955,7 +13081,7 @@ msgstr "Dakika"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Preview"
-msgstr "Önizleme"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
@@ -12976,18 +13102,18 @@ msgstr "Cevap Olarak"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Standard Filter"
-msgstr "Standart Filtre"
+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 "Points ölçü birimini kullanılır. Varsayılan 9'dur."
+msgstr ""
#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In seconds"
-msgstr "Saniye"
+msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:209
msgid "Inactive"
@@ -13021,7 +13147,7 @@ msgstr "Ad Alanını Dahil Et"
#. 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 "Aramayı Üst Çubuğa Dahil Et"
+msgstr ""
#: frappe/website/doctype/website_theme/website_theme.js:61
msgid "Include Theme from Apps"
@@ -13033,15 +13159,15 @@ msgid "Include Web View Link in Email"
msgstr "Web Görünümü Bağlantısını E-postaya Ekle"
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "Filtreleri dahil et"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "Girintiyi dahil et"
@@ -13059,7 +13185,7 @@ msgstr ""
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Incoming (POP/IMAP) Settings"
-msgstr "Gelen (POP/IMAP) Ayarları"
+msgstr ""
#. Label of the incoming_emails_last_7_days_column (Column Break) field in
#. DocType 'System Health Report'
@@ -13072,13 +13198,13 @@ msgstr "Gelen E-postalar (Son 7 gün)"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Server"
-msgstr "Gelen Sunucu"
+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 "Gelen Sunucu Ayarları"
+msgstr ""
#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Incoming email account not correct"
@@ -13108,11 +13234,11 @@ msgstr "Hatalı Kullanıcı Adı veya Şifre"
msgid "Incorrect Verification code"
msgstr "Hatalı Doğrulama Kodu"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "Satırlarda yanlış değer var {0}:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "Geçersiz değer: "
@@ -13136,7 +13262,7 @@ msgstr "Dizin"
#. 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 "Sayfaları Arama İçin İndeksle"
+msgstr ""
#: frappe/core/doctype/recorder/recorder.py:132
msgid "Index created successfully on column {0} of doctype {1}"
@@ -13162,9 +13288,9 @@ msgstr "Gösterge"
#. Label of the indicator_color (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Indicator Color"
-msgstr "Gösterge Rengi"
+msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "Gösterge Rengi"
@@ -13180,7 +13306,7 @@ msgstr "Gösterge Rengi"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Info"
-msgstr "Bilgi"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:144
msgid "Info:"
@@ -13211,15 +13337,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "Sonrasına Ekle"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr ""
@@ -13238,7 +13364,7 @@ msgstr ""
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Insert New Records"
-msgstr "Yeni Kayıt Ekle"
+msgstr ""
#. Label of the insert_style (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
@@ -13249,8 +13375,8 @@ msgstr "Stil Ekle"
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "{0} Uygulamasını Marketplace aracılığıyla Yükle"
@@ -13276,15 +13402,15 @@ msgstr "Yüklü Uygulamalar"
msgid "Instructions"
msgstr "Talimatlar"
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "Talimatlar E-postayla Gönderildi"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "{0} için Yetersiz İzin Seviyesi"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "{0} için Yetki Verilmemiş"
@@ -13315,7 +13441,7 @@ msgstr "Yetersiz dosya eki limiti"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Int"
-msgstr "Tam sayı"
+msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/integration_request/integration_request.json
@@ -13352,7 +13478,7 @@ msgstr "İlgi Alanları"
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "Sunucu tarafında bazı hatalar oluştu. Lütfen sayfayı yenileyin."
@@ -13361,6 +13487,11 @@ msgstr "Sunucu tarafında bazı hatalar oluştu. Lütfen sayfayı yenileyin."
msgid "Internal record of document shares"
msgstr "Belge paylaşımlarının dahili kaydı"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13400,13 +13531,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "Geçersiz \"depends_on\" ifadesi"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "{0} filtresinde geçersiz \"depends_on\" ifadesi ayarlandı"
@@ -13446,7 +13577,7 @@ msgstr "Geçersiz Tarih"
msgid "Invalid DocType"
msgstr "Geçersiz DocType"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "Geçersiz DocType: {0}"
@@ -13454,7 +13585,8 @@ msgstr "Geçersiz DocType: {0}"
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "Geçersiz Alan Adı"
@@ -13462,8 +13594,8 @@ msgstr "Geçersiz Alan Adı"
msgid "Invalid File URL"
msgstr "Geçersiz Dosya URL'si"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13487,7 +13619,7 @@ msgstr "Geçersiz Bağlantı"
msgid "Invalid Login Token"
msgstr "Geçersiz Oturum Açma Tokenı"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "Giriş başarısız. Tekrar deneyin."
@@ -13495,7 +13627,7 @@ msgstr "Giriş başarısız. Tekrar deneyin."
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "Geçersiz Posta Sunucusu. Lütfen düzeltin ve tekrar deneyin."
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "Geçersiz Adlandırma Serisi: {}"
@@ -13506,8 +13638,8 @@ msgstr "Geçersiz Adlandırma Serisi: {}"
msgid "Invalid Operation"
msgstr "Geçersiz İşlem"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "Geçersiz Seçenek"
@@ -13519,7 +13651,7 @@ msgstr "Geçersiz Giden Posta Sunucusu veya Bağlantı Noktası: {0}"
msgid "Invalid Output Format"
msgstr "Geçersiz Çıktı Formatı"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "Hatalı Geçersiz Kılma"
@@ -13532,11 +13664,11 @@ msgstr "Geçersiz Parametreler."
msgid "Invalid Password"
msgstr "Geçersiz Şifre"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "Geçersiz Telefon Numarası"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "Geçersiz İşlem. Lütfen Sayfayı Yenileyin."
@@ -13545,7 +13677,7 @@ msgstr "Geçersiz İşlem. Lütfen Sayfayı Yenileyin."
msgid "Invalid Search Field {0}"
msgstr "Geçersiz Arama Alanı {0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "Geçersiz Tablo Alanı Adı"
@@ -13564,7 +13696,7 @@ msgstr "Geçersiz URL"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "Geçersiz Kullanıcı Adı veya Destek Şifresi. Lütfen düzeltin ve tekrar deneyin."
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "Geçersiz Değerler"
@@ -13576,7 +13708,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13584,19 +13716,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13604,18 +13736,22 @@ msgstr ""
msgid "Invalid column"
msgstr "Geçersiz Sütun"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "Geçersiz docstatus"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "{0} filtresinde geçersiz \"depends_on\" ifadesi ayarlandı"
@@ -13624,11 +13760,11 @@ 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/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13636,11 +13772,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr "Geçersiz alan adı {0}"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'"
@@ -13648,11 +13784,11 @@ msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'"
msgid "Invalid file path: {0}"
msgstr "Geçersiz dosya yolu: {0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13660,7 +13796,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr "Geçersiz filtre: {0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13677,19 +13813,19 @@ msgstr "Özel seçeneklere geçersiz json eklendi: {0}"
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "Geçersiz adlandırma serisi {}: nokta (.) eksik"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13713,11 +13849,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13734,24 +13870,24 @@ msgstr "Geçersiz token durumu! Token'ın OAuth kullanıcısı tarafından oluş
msgid "Invalid username or password"
msgstr "Gerçersiz kullanıcı adı veya parola"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "Alanlar için geçersiz değerler:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "Geçersiz wkhtmltopdf sürümü"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "Geçersiz {0} koşulu"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13820,7 +13956,7 @@ msgstr "Ekler Klasörü"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Calendar and Gantt"
-msgstr "Takvim & Gantt"
+msgstr ""
#. Label of the istable (Check) field in DocType 'DocType'
#. Label of the is_child_table (Check) field in DocType 'DocType Link'
@@ -13835,12 +13971,12 @@ msgstr "Alt Tablo"
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Complete"
-msgstr "Tamamlandı"
+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 "Tamamlandı"
+msgstr ""
#. Label of the is_current (Check) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -13852,12 +13988,12 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Is Custom"
-msgstr "Özel"
+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 "Özel Alan"
+msgstr ""
#. Label of the is_default (Check) field in DocType 'Address Template'
#. Label of the is_default (Check) field in DocType 'User Permission'
@@ -13872,14 +14008,14 @@ msgstr "Varsayılan"
#. Label of the is_dynamic_url (Check) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Is Dynamic URL?"
-msgstr "Dinamik URL"
+msgstr ""
#. Label of the is_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Folder"
-msgstr "Klasör"
+msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "Herkese Açık"
@@ -13890,28 +14026,28 @@ msgstr "Grup"
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
-msgstr "Gizli"
+msgstr ""
#. Label of the is_home_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Home Folder"
-msgstr "Ana Klasör"
+msgstr ""
#. Label of the reqd (Check) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Is Mandatory Field"
-msgstr "Zorunlu Alan"
+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 "İsteğe Bağlı Durum"
+msgstr ""
#. Label of the is_primary (Check) field in DocType 'Contact Email'
#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Is Primary"
-msgstr "Birincil"
+msgstr ""
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43
msgid "Is Primary Address"
@@ -13921,36 +14057,36 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49
msgid "Is Primary Contact"
-msgstr "Birincil Kişi"
+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 "Birincil Mobil Telefon"
+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 "Birincil Telefon"
+msgstr ""
#. Label of the is_private (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Private"
-msgstr "Özel"
+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 "Herkese Açık"
+msgstr ""
#. Label of the is_published_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Published Field"
-msgstr "Yayınlanmış Alan"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "Yayınlandı Alan geçerli bir alan olmalıdır"
@@ -13958,13 +14094,13 @@ msgstr "Yayınlandı Alan geçerli bir alan olmalıdır"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
-msgstr "Sorgu Raporu"
+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 "Uzaktan İstek"
+msgstr ""
#. Label of the is_setup_complete (Check) field in DocType 'Installed
#. Application'
@@ -13983,12 +14119,12 @@ msgstr "Tek"
#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Skipped"
-msgstr "Atlandı"
+msgstr ""
#. Label of the is_spam (Check) field in DocType 'Email Rule'
#: frappe/email/doctype/email_rule/email_rule.json
msgid "Is Spam"
-msgstr "Spam"
+msgstr ""
#. Label of the is_standard (Check) field in DocType 'Navbar Item'
#. Label of the is_standard (Select) field in DocType 'Report'
@@ -14007,7 +14143,7 @@ msgstr "Spam"
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/email/doctype/notification/notification.json
msgid "Is Standard"
-msgstr "Standart"
+msgstr ""
#. Label of the is_submittable (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -14023,12 +14159,12 @@ msgstr "Gönderilebilir"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Is System Generated"
-msgstr "Sistem Tarafından Oluşturuldu"
+msgstr ""
#. Label of the istable (Check) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Table"
-msgstr "Tablo"
+msgstr ""
#. Label of the is_table_field (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -14038,7 +14174,7 @@ msgstr "Tablo Alanı"
#. Label of the is_tree (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Tree"
-msgstr "Ağaç Yapısı"
+msgstr ""
#. Label of the is_unique (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
@@ -14052,7 +14188,7 @@ msgstr "Benzersiz"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Virtual"
-msgstr "Sanal"
+msgstr ""
#. Label of the is_standard (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -14066,12 +14202,12 @@ msgstr "Bu dosyayı silmek risklidir: {0}. Lütfen Sistem Yöneticinizle iletiş
#. Label of the item_label (Data) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Label"
-msgstr "Etiket"
+msgstr ""
#. Label of the item_type (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Type"
-msgstr "Tür"
+msgstr ""
#: frappe/utils/nestedset.py:229
msgid "Item cannot be added to its own descendants"
@@ -14160,17 +14296,17 @@ msgstr "İş Kimliği"
#. 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 "İş Detayı"
+msgstr ""
#. Label of the job_name (Data) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Name"
-msgstr "İş Adı"
+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 "İş Durumu"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:191
#: frappe/core/doctype/rq_job/rq_job.js:24
@@ -14195,8 +14331,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr "{0} ile görüntülü konferansa katılın"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "Alana Git"
@@ -14272,7 +14408,7 @@ msgstr "Tüm iletişimleri takip eder"
#: frappe/integrations/doctype/webhook_header/webhook_header.json
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Key"
-msgstr "Anahtar"
+msgstr ""
#. Label of a standard help item
#. Type: Action
@@ -14317,7 +14453,7 @@ msgstr "L"
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Auth"
-msgstr "LDAP Kimlik Doğrulaması"
+msgstr ""
#. Label of the ldap_custom_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
@@ -14517,16 +14653,16 @@ msgstr "Etiket Yardımı"
#. Field'
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Label and Type"
-msgstr "Etiket ve Tür"
+msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "Etiket zorunludur"
#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr "Giriş Sayfası"
+msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:23
msgid "Landscape"
@@ -14542,7 +14678,7 @@ msgstr "Landscape"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "Dil"
@@ -14550,12 +14686,12 @@ msgstr "Dil"
#. Label of the language_code (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr "Dil Kodu"
+msgstr ""
#. Label of the language_name (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr "Dil Adı"
+msgstr ""
#. Label of the last_10_active_users (Code) field in DocType 'System Health
#. Report'
@@ -14586,7 +14722,15 @@ msgstr "Son 90 Gün"
#. Label of the last_active (Datetime) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr "Son Aktivite"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+msgstr ""
#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
@@ -14601,7 +14745,7 @@ msgstr "Son Aktif Bağlantı"
#. Label of the last_ip (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr "Son Giriş Yapılan IP"
+msgstr ""
#. Label of the last_known_versions (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -14611,7 +14755,7 @@ msgstr "Son Bilinen Sürümler"
#. Label of the last_login (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr "Son Başarılı Giriş"
+msgstr ""
#: frappe/email/doctype/notification/notification.js:32
msgid "Last Modified Date"
@@ -14626,7 +14770,7 @@ msgstr "Son Düzenleme"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/public/js/frappe/ui/filters/filter.js:643
msgid "Last Month"
-msgstr "Geçen Ay"
+msgstr ""
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
@@ -14648,7 +14792,7 @@ msgstr "Son Şifre Sıfırlama Tarihi"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/public/js/frappe/ui/filters/filter.js:647
msgid "Last Quarter"
-msgstr "Son Çeyrek"
+msgstr ""
#. Label of the last_received_at (Datetime) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -14669,12 +14813,12 @@ msgstr "Son Çalıştırma"
#. 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 "Son Senkronizasyon"
+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 "Son Senkronizasyon"
+msgstr ""
#. Label of the last_updated (Datetime) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -14694,24 +14838,29 @@ msgstr "Son Güncelleme Zamanı"
#. Label of the last_user (Link) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr "Son Kullanıcı"
+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:639
msgid "Last Week"
-msgstr "Geçen Hafta"
+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:655
msgid "Last Year"
-msgstr "Geçen Yıl"
+msgstr ""
#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
msgstr "Son sekronizasyon {0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "Düzeni Sıfırla"
@@ -14739,9 +14888,15 @@ msgstr "Bu konuşmadan ayrıl"
msgid "Ledger"
msgstr "Muhasebe Defteri"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14835,7 +14990,7 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14852,19 +15007,19 @@ msgstr ""
#. 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Image"
-msgstr "Antetli Kağıt Resmi"
+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 "Antetli Kağıt İsmi"
+msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "Antetli Kağıt hem devre dışı hem de varsayılan olamaz"
@@ -14886,7 +15041,7 @@ msgstr "Antetli Kağıt HTML"
msgid "Level"
msgstr "Seviye"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "0. seviye belge düzeyindeki izinler içindir, daha yüksek seviyeler ise alan izinleri içindir."
@@ -14907,7 +15062,7 @@ msgstr "Lisans Türü"
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Light"
-msgstr "Açık"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
@@ -14927,7 +15082,7 @@ msgstr "Açık Tema"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "Benzer"
@@ -14951,14 +15106,14 @@ msgstr ""
msgid "Limit"
msgstr "Limit"
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
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 "Çizgi"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -14996,7 +15151,7 @@ msgstr ""
#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Link Cards"
-msgstr "Bağlantı Kartları"
+msgstr ""
#. Label of the link_count (Int) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
@@ -15016,12 +15171,12 @@ msgstr "Bağlantı Ayrıntıları"
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link DocType"
-msgstr "DocType Bağlantısı"
+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 "Belge Bağlantısı Türü"
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
@@ -15032,12 +15187,12 @@ msgstr "Bağlantının Süresi Doldu"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Link Field Results Limit"
-msgstr "Bağlantı Alanı Sonuç Limiti"
+msgstr ""
#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link Fieldname"
-msgstr "Alan Bağlantısı"
+msgstr ""
#. Label of the link_filters (JSON) field in DocType 'DocField'
#. Label of the link_filters (JSON) field in DocType 'Custom Field'
@@ -15057,14 +15212,14 @@ msgstr "Filtre Bağlantıları"
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Name"
-msgstr "Bağlantı İsmi"
+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 "Bağlantı Başlığı"
+msgstr ""
#. Label of the link_to (Dynamic Link) field in DocType 'Desktop Icon'
#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
@@ -15077,11 +15232,11 @@ msgstr "Bağlantı Başlığı"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
-msgstr "Bağlantı"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
@@ -15095,10 +15250,10 @@ msgstr "Satır İçi Bağlantı"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
-msgstr "Bağlantı Türü"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
@@ -15111,7 +15266,7 @@ msgstr "Hakkımızda Sayfası için bağlantı \"/about\" şeklindedir."
#. 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 "Web Sitesinin Açılış Sayfası"
+msgstr ""
#. Description of the 'URL' (Data) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
@@ -15123,7 +15278,7 @@ msgstr "Açmak istediğiniz sayfanın bağlantısı. Bir grup ebeveyni yapmak is
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/communication/communication.json
msgid "Linked"
-msgstr "Bağlantılı"
+msgstr ""
#: frappe/public/js/frappe/form/linked_with.js:23
msgid "Linked With"
@@ -15138,6 +15293,7 @@ msgstr "LinkedIn"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15159,21 +15315,21 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
-msgstr "Liste"
+msgstr ""
#. Label of the list__search_settings_section (Section Break) field in DocType
#. 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "List / Search Settings"
-msgstr "Liste / Arama Ayarları"
+msgstr ""
#. Label of the list_columns (Table) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "List Columns"
-msgstr "Sütunları Listele"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/list_filter/list_filter.json
@@ -15190,7 +15346,7 @@ msgstr "Filtreyi Listele"
msgid "List Settings"
msgstr "Liste Ayarları"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "Liste Ayarları"
@@ -15204,7 +15360,7 @@ msgstr "Liste Görünümü"
msgid "List View Settings"
msgstr "Liste Görünümü Ayarları"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "DocType Listesi"
@@ -15231,7 +15387,7 @@ msgstr "Uygulanan yamaların listesi"
msgid "List setting message"
msgstr "Liste ayar mesajı"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "Listeler"
@@ -15240,7 +15396,7 @@ msgstr "Listeler"
msgid "Load Balancing"
msgstr "Yük Dengeleme"
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15258,10 +15414,10 @@ msgstr "Daha fazla yükle"
#: 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "Yükleniyor"
@@ -15278,8 +15434,8 @@ msgid "Loading versions..."
msgstr "Versiyonlar yükleniyor..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15289,7 +15445,8 @@ msgid "Loading..."
msgstr "Yükleniyor..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
@@ -15311,7 +15468,7 @@ msgstr "Günlük Verileri"
#. 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 "Günlük Kayıt için DocType"
+msgstr ""
#: frappe/templates/emails/login_with_email_link.html:27
msgid "Log In To {0}"
@@ -15362,15 +15519,20 @@ msgstr "Çıkış Yapıldı"
msgid "Login"
msgstr "Giriş"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
-msgstr "İlk Giriş"
+msgstr ""
#. Label of the login_before (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login Before"
-msgstr "Son Giriş"
+msgstr ""
#: frappe/public/js/frappe/desk.js:256
msgid "Login Failed please try again"
@@ -15384,13 +15546,13 @@ msgstr "Giriş Kimliği gereklidir"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login Methods"
-msgstr "Giriş Yöntemleri"
+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 "Giriş Sayfası"
+msgstr ""
#: frappe/www/login.py:156
msgid "Login To {0}"
@@ -15437,7 +15599,7 @@ msgstr "Yeni bir tartışma başlatmak için giriş yapın"
msgid "Login to {0}"
msgstr "{0} adresine giriş yapın"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "Oturum açma tokenı gerekli"
@@ -15486,7 +15648,7 @@ msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/me.html:91
msgid "Logout"
-msgstr "Çıkış"
+msgstr ""
#: frappe/core/doctype/user/user.js:195
msgid "Logout All Sessions"
@@ -15496,16 +15658,15 @@ msgstr "Tüm Oturumlardan Çıkış Yap"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Logout All Sessions on Password Reset"
-msgstr "Parola Sıfırlandığında Tüm Açık Oturumları Sonlandır"
+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 "Şifreyi Değiştirdikten Sonra Tüm Oturumları Sonlandır"
+msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "Kayıtlar"
@@ -15517,7 +15678,7 @@ msgstr "Temizlenecek Kayıtlar"
#. 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 "Temizlenecek Kayıtlar"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -15536,7 +15697,7 @@ msgstr "Değeri değiştirmemişsiniz gibi görünüyor"
msgid "Looks like you haven’t added any third party apps."
msgstr "Henüz herhangi bir üçüncü parti uygulama eklememişsiniz."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "Henüz yeni bir bildirim almadınız."
@@ -15597,7 +15758,7 @@ msgstr "Ana Sürüm"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make \"name\" searchable in Global Search"
-msgstr "Genel Aramada \"İsim\" Alanı Aranabilir"
+msgstr ""
#. Label of the make_attachment_public (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -15610,13 +15771,13 @@ msgstr "Dosya Ekini Herkese Açık Yap (varsayılan olarak)"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make Attachments Public by Default"
-msgstr "Ekleri Varsayılan Olarak Herkese Açık Hale Getir"
+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 "Kilitlemeyi önlemek için devre dışı bırakmadan önce bir Sosyal Giriş Anahtarı yapılandırdığınızdan emin olun."
+msgstr ""
#: frappe/utils/password_strength.py:92
msgid "Make use of longer keyboard patterns"
@@ -15686,7 +15847,7 @@ msgstr "Satır#{1} - {0} tablosundaki alanlar zorunlu"
msgid "Mandatory fields required in {0}"
msgstr "{0} Eklerken Aşağıdaki Alanlar Zorunludur"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "Zorunlu alanlar gereklidir:"
@@ -15716,7 +15877,7 @@ 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 "Rota parametrelerini form değişkenlerine eşleyin. Örnek /proje/<adı>"
+msgstr ""
#: frappe/core/doctype/data_import/importer.py:923
msgid "Mapping column {0} to field {1}"
@@ -15748,7 +15909,7 @@ msgstr "Üst Boşluk"
msgid "MariaDB Variables"
msgstr "MariaDB Değişkenleri"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "Hepsini Okundu İşaretle"
@@ -15783,7 +15944,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 Editörü"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -15800,9 +15961,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "Maskele"
@@ -15813,19 +15977,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 "Tek seferde en fazla 500 kayıt."
+msgstr ""
#. Label of the max_attachments (Int) field in DocType 'DocType'
#. Label of the max_attachments (Int) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr "Maksimum Dosyalar"
+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 "Maksimum Dosya Boyutu (MB)"
+msgstr ""
#. Label of the max_height (Data) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
@@ -15856,7 +16020,7 @@ msgstr "Maksimum ek boyutu"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max auto email report per user"
-msgstr "Kullanıcı başına maksimum otomatik e-posta raporu"
+msgstr ""
#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System
#. Settings'
@@ -15864,14 +16028,14 @@ msgstr "Kullanıcı başına maksimum otomatik e-posta raporu"
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "Para Birimi türü için maksimum genişlik {0} satırında 100 pikseldir"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "Maksimum"
+msgstr ""
#: frappe/core/doctype/file/file.py:342
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
@@ -15885,20 +16049,27 @@ msgstr "{0} maksimum ek sınırına ulaşıldı."
msgid "Maximum {0} rows allowed"
msgstr "İzin verilen en fazla satır sayısı {0}"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "Kendim"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "Gönder, İptal Et, Değiştir Anlamı"
+msgid "Meaning of Different Permission Types"
+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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15919,7 +16090,7 @@ msgstr "Koşulları karşılıyor mu?"
#. Group in Email Group's connections
#: frappe/email/doctype/email_group/email_group.json
msgid "Members"
-msgstr "Üyeler"
+msgstr ""
#. Label of the cache_memory_usage (Data) field in DocType 'System Health
#. Report'
@@ -15940,14 +16111,14 @@ msgstr "Bahsetme"
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr "Alıntılar"
+msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "Menü"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Varolan ile Birleştir"
@@ -15981,13 +16152,13 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "Mesaj"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Mesaj"
@@ -15995,14 +16166,14 @@ msgstr "Mesaj"
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr "Mesaj Örnekleri"
+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 "Mesaj ID"
+msgstr ""
#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -16018,7 +16189,7 @@ msgstr ""
msgid "Message Type"
msgstr "Mesaj Türü"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "Mesaj kopyalandı"
@@ -16063,7 +16234,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr "Meta Etiketleri"
+msgstr ""
#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
@@ -16113,9 +16284,9 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Yöntem"
+msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "İzin Verilmeyen Method"
@@ -16126,14 +16297,14 @@ msgstr "Bir sayı kartı oluşturmak için yöntem gereklidir"
#. 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 "Orta Merkez"
+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 "İkinci Adı"
+msgstr ""
#. Label of a field in the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
@@ -16161,7 +16332,7 @@ msgstr "Minimum"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Minimum Password Score"
-msgstr "Minimum Şifre Puanı"
+msgstr ""
#. Label of the minor (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
@@ -16204,7 +16375,7 @@ msgstr "Bayan"
msgid "Missing DocType"
msgstr "Eksik DocType"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "Eksik Veri"
@@ -16224,7 +16395,7 @@ msgstr "Eksik İzin"
msgid "Missing Value"
msgstr "Eksik Değer"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16289,7 +16460,7 @@ msgstr "Modal Tetikleyici"
#: 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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16325,7 +16496,7 @@ msgstr "Modül HTML"
#. Label of the module_name (Data) field in DocType 'Module Def'
#: frappe/core/doctype/module_def/module_def.json
msgid "Module Name"
-msgstr "Modül İsmi"
+msgstr ""
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -16336,16 +16507,15 @@ msgstr "Modül Tanıtımı"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "Modül Profili"
#. 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 "Modül Profil Adı"
+msgstr ""
#: frappe/desk/doctype/module_onboarding/module_onboarding.py:73
msgid "Module onboarding progress reset"
@@ -16355,7 +16525,7 @@ msgstr "Modül tanıtım ilerlemesini sıfırla"
msgid "Module to Export"
msgstr "Dışa Aktarılacak Modül"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "Modül {} bulunamadı"
@@ -16457,7 +16627,7 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
msgid "More Information"
-msgstr "Daha Fazla Bilgi"
+msgstr ""
#: frappe/website/doctype/help_article/templates/help_article.html:19
#: frappe/website/doctype/help_article/templates/help_article.html:33
@@ -16470,7 +16640,7 @@ msgstr "{0} hakkında daha fazla makale"
msgid "More content for the bottom of the page."
msgstr "Sayfanın alt kısmı için daha fazla içerik."
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "En Çok Kullanılan"
@@ -16485,7 +16655,7 @@ msgstr "Büyük ihtimalle şifreniz çok uzun."
msgid "Move"
msgstr "Taşı"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "Taşı"
@@ -16497,19 +16667,19 @@ msgstr "Çöp Kutusuna Taşı"
msgid "Move current and all subsequent sections to a new tab"
msgstr "Mevcut ve sonraki tüm bölümleri yeni bir sekmeye taşı"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "İmleci yukarıdaki satıra taşı"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "İmleci alt satıra taşı"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "İmleci bir sonraki sütuna taşı"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "İmleci bir önceki sütuna taşı"
@@ -16521,7 +16691,7 @@ msgstr "Bölümleri yeni sekmeye taşı"
msgid "Move the current field and the following fields to a new column"
msgstr "Mevcut alanı ve sonraki alanları yeni bir sütuna taşı"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "Taşınacak Satır Numarası"
@@ -16569,7 +16739,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Must be of type \"Attach Image\""
-msgstr "Resim Eki Formatında Olmalıdır"
+msgstr ""
#: frappe/desk/query_report.py:211
msgid "Must have report permission to access this report."
@@ -16582,7 +16752,7 @@ msgstr "Çalıştırılacak bir Sorgu belirtilmelidir"
#. Label of the mute_sounds (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Mute Sounds"
-msgstr "Sistem Seslerini Kapat"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:45
msgid "Mx"
@@ -16639,7 +16809,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr "İsim daha önce alınmış, lütfen yeni bir isim belirleyin"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "İsim, {0} gibi özel karekterler içeremez"
@@ -16651,7 +16821,7 @@ msgstr "Bu alanın bağlanmasını istediğiniz DocType adı. Örneğin \"Müşt
msgid "Name of the new Print Format"
msgstr "Yeni Yazdırma Formatının Adı"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "{0} adı {1} olamaz"
@@ -16692,7 +16862,7 @@ msgstr "Adlandırma Kuralı"
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "Seri Adlandırma Zorunludur"
@@ -16702,7 +16872,7 @@ msgstr "Seri Adlandırma Zorunludur"
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar"
-msgstr "Gezinti Çubuğu"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/navbar_item/navbar_item.json
@@ -16716,17 +16886,12 @@ msgstr "Gezinti Çubuğu Öğesi"
msgid "Navbar Settings"
msgstr "Gezinme Çubuğu"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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 "Gezinti Çubuğu Şablonu"
+msgstr ""
#. Label of the navbar_template_values (Code) field in DocType 'Website
#. Settings'
@@ -16734,39 +16899,44 @@ msgstr "Gezinti Çubuğu Şablonu"
msgid "Navbar Template Values"
msgstr "Gezinme Çubuğu Şablon Değerleri"
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "Listede Aşağı Git"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "Listede Yukarı git"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "Ana içeriğe git"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
-msgstr "Gezinme Ayarları"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
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:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "Negatif Değer"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16788,6 +16958,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16804,7 +16975,7 @@ msgstr "Yeni Aktivite"
#: 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "Yeni Adres"
@@ -16820,8 +16991,8 @@ msgstr "Yeni Kişi"
msgid "New Custom Block"
msgstr "Yeni Özel Blok"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "Yeni Yazdırma Formatı"
@@ -16870,7 +17041,7 @@ msgstr "Web Sitesi İletişim Sayfasından Yeni Mesaj"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Yeni İsim"
@@ -16891,8 +17062,8 @@ msgstr "Yeni Modül Tanıtımı"
msgid "New Password"
msgstr "Yeni Şifre"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "Yeni Baskı Formatı Adı"
@@ -16919,8 +17090,8 @@ msgstr "Yeni Kısayol"
msgid "New Users (Last 30 days)"
msgstr "Yeni Kullanıcılar (Son 30 gün)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "Yeni Değer"
@@ -16928,7 +17099,7 @@ msgstr "Yeni Değer"
msgid "New Workflow Name"
msgstr "Yeni İş Akışı Adı"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "Yeni Çalışma Alanı"
@@ -16963,7 +17134,7 @@ msgstr "Yeni güncellemeler mevcut"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "New users will have to be manually registered by system managers."
-msgstr "Yeni kullanıcıların sistem yöneticileri tarafından manuel olarak kaydedilmesi gerekecektir."
+msgstr ""
#. Description of the 'Set Value' (Small Text) field in DocType 'Property
#. Setter'
@@ -16971,32 +17142,32 @@ msgstr "Yeni kullanıcıların sistem yöneticileri tarafından manuel olarak ka
msgid "New value to be set"
msgstr "Ayarlanacak yeni değer"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "Yeni {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "Yeni {0} Oluşturuldu"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Yeni {0} {1}, {2} Panosuna eklendi."
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "Yeni {0} {1} oluşturuldu"
@@ -17008,7 +17179,7 @@ msgstr "Yeni {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Aşağıdaki uygulamalar için yeni {} sürümler kullanıma sunuldu"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "{0} kullanıcısı için rol belirlenmedi."
@@ -17029,7 +17200,7 @@ msgstr "Bülten Yöneticisi"
msgid "Next"
msgstr "Sonraki"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "Sonraki"
@@ -17054,21 +17225,25 @@ msgstr "Önümüzdeki 7 Gün"
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Next Action Email Template"
-msgstr "Sonraki Eylem E-posta Şablonu"
+msgstr ""
+
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 "Sonraki Eylemler HTML"
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr "Sonraki Belge"
#. 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 "Sonraki Çalıştırma"
+msgstr ""
#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -17095,7 +17270,7 @@ msgstr "Sonraki Planlanan Tarih"
#. Label of the next_state (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Next State"
-msgstr "Sonraki Durum"
+msgstr ""
#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -17128,20 +17303,24 @@ msgstr "Sonraki Tıklamada"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Hayır"
@@ -17167,7 +17346,7 @@ msgstr "Aktif Oturum Yok"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "No Copy"
-msgstr "Kopyalanamaz"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:162
#: frappe/email/doctype/auto_email_report/auto_email_report.py:309
@@ -17211,7 +17390,7 @@ msgstr "Filtre Ayarlanmadı"
msgid "No Google Calendar Event to sync."
msgstr "Senkronize edilecek Google Takvim Etkinliği yok."
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "Resim Yok"
@@ -17230,23 +17409,23 @@ msgstr "E-posta için LDAP Kullanıcısı bulunamadı: {0}"
msgid "No Label"
msgstr "Etiket Yok"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: 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 "Antetli Kağıt Yok"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "{0} için İsim Belirtilmemiş"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "Yeni Bildirim Yok"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "Hiçbir İzin Belirtilmemiş"
@@ -17266,11 +17445,11 @@ msgstr "Bu Gösterge Panosunda Görüntülemeniz için İzin Verilen Grafik Yok"
msgid "No Preview"
msgstr "Önizleme Yok"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "Önizleme Mevcut Değil"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "Uygun Yazıcı Bulunamadı."
@@ -17278,7 +17457,7 @@ msgstr "Uygun Yazıcı Bulunamadı."
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "Sonuç Yok"
@@ -17286,7 +17465,7 @@ msgstr "Sonuç Yok"
msgid "No Results found"
msgstr "Uygun Sonuç Bulunamadı"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "Rol Belirlenmedi"
@@ -17302,7 +17481,7 @@ msgstr "Öneri Yok"
msgid "No Tags"
msgstr "Etiket Yok"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "Yaklaşan Etkinlik Yok"
@@ -17322,7 +17501,7 @@ msgstr "Otomatik optimizasyon önerileri mevcut değil."
msgid "No changes in document"
msgstr "Belgede Değişiklik Yapılmadı"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "Hiçbir değişiklik yapılmadı"
@@ -17386,7 +17565,7 @@ msgstr "Kanban Sütunu olarak kullanılabilecek alanlar bulunamadı. \"Seçim\"
msgid "No file attached"
msgstr "Dosya eklenmedi"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "Filtre bulunamadı"
@@ -17434,11 +17613,11 @@ msgstr "Satır Sayısı (Maksimum 500)"
msgid "No of Sent SMS"
msgstr "Gönderilen SMS sayısı"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "{0} İçin Yetki Yok"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
@@ -17447,7 +17626,7 @@ msgstr ""
msgid "No permission to read {0}"
msgstr "Okuma {0} izni yok"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "{0} {1} {2} için izin yok"
@@ -17463,7 +17642,7 @@ msgstr "{0} içinde kayıt bulunamadı"
msgid "No records tagged."
msgstr "Etiketlenmiş kayıt yok."
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "Hiçbir kayıt dışa aktarılmayacak"
@@ -17471,7 +17650,7 @@ msgstr "Hiçbir kayıt dışa aktarılmayacak"
msgid "No rows"
msgstr "Sıra yok"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17483,11 +17662,12 @@ msgstr "Konu yok"
msgid "No template found at path: {0}"
msgstr "{0} yolunda şablon bulunamadı"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "Gösterilecek Veri Yok"
@@ -17499,7 +17679,7 @@ msgstr "{0} Yok"
msgid "No {0} found"
msgstr "{0} bulunamadı."
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "Filtrelere uygun {0} bulunamadı. Tüm filtreleri temizleyip tekrar deneyebilirsiniz."
@@ -17508,7 +17688,7 @@ msgid "No {0} mail"
msgstr "{0} e-posta yok"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "Sıra"
@@ -17525,7 +17705,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Non Negative"
-msgstr "Negatif Olmayan"
+msgstr ""
#: frappe/desk/page/setup_wizard/install_fixtures.py:33
msgid "Non-Conforming"
@@ -17551,12 +17731,12 @@ msgstr "Normalleştirilmiş Kopyalar"
msgid "Normalized Query"
msgstr "Normalleştirilmiş Sorgu"
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "İzin verilmedi"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "İzin Verilmedi: Devre Dışı Bırakılmış Kullanıcı"
@@ -17579,7 +17759,7 @@ msgstr "Bulunamadı"
#. Label of the not_helpful (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Not Helpful"
-msgstr "Faydalı Değil"
+msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:21
msgid "Not In"
@@ -17598,7 +17778,7 @@ msgstr "Herhangi bir kayıtla bağlantılı değil"
msgid "Not Nullable"
msgstr "Boş Bırakılamaz"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17607,7 +17787,7 @@ msgstr "Boş Bırakılamaz"
msgid "Not Permitted"
msgstr "İzin yok"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "{0} için Okuma izni yok"
@@ -17616,8 +17796,8 @@ msgstr "{0} için Okuma izni yok"
msgid "Not Published"
msgstr "Yayınlanmadı"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17637,7 +17817,7 @@ msgstr "Görülmedi"
msgid "Not Sent"
msgstr "Gönderilmedi"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "Ayarlanmamış"
@@ -17651,15 +17831,15 @@ 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:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "Geçerli bir Kullanıcı Resmi değil."
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "Geçerli bir İş Akışı Eylemi değil"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "Geçerli bir kullanıcı değil"
@@ -17667,7 +17847,7 @@ msgstr "Geçerli bir kullanıcı değil"
msgid "Not active"
msgstr "Aktif değil"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "{0} için izin verilmiyor: {1}"
@@ -17687,11 +17867,11 @@ msgstr "İptal edilen belgeleri yazdırmasına izin verilmiyor"
msgid "Not allowed to print draft documents"
msgstr "Taslak belgelerin yazdırılmasına izin verilmiyor"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "Denetleyici izin kontrolü ile izin verilmiyor"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "Bulunamadı"
@@ -17704,11 +17884,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Geliştirici Modunda değil! site_config.json dosyasına ayarlayın veya 'Özel' DocType yapın."
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "İzin verilmedi"
@@ -17736,7 +17916,7 @@ msgstr "Notu Gören"
msgid "Note:"
msgstr "Not:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Not: Sayfa Adının değiştirilmesi, bu sayfanın önceki bağlantısını bozacaktır."
@@ -17754,7 +17934,7 @@ msgstr "Not: En iyi sonuçlar için görsellerin aynı boyutta olması ve geniş
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Note: Multiple sessions will be allowed in case of mobile device"
-msgstr "Not: Mobil cihaz olması durumunda birden fazla oturuma izin verilecektir."
+msgstr ""
#: frappe/core/doctype/user/user.js:394
msgid "Note: This will be shared with user."
@@ -17768,7 +17948,7 @@ msgstr "Not: Hesap silme talebiniz {0} saat içinde yerine getirilecektir."
msgid "Notes:"
msgstr "Notlar:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "Yeni Bir Şey Yok"
@@ -17780,8 +17960,8 @@ msgstr "Yeniden yapılacak hiçbir şey kalmadı"
msgid "Nothing left to undo"
msgstr "Geri Alınacak Bir Şey Kalmadı"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17792,11 +17972,13 @@ msgid "Nothing to update"
msgstr "Güncellenecek bir şey yok"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr ""
@@ -17812,7 +17994,7 @@ msgstr "Bildirim Alıcısı"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17821,11 +18003,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr "Bildirim İçin Abone Olunan Belge"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17843,13 +18020,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "Bildirim: {0} kullanıcısının ayarlanmış bir Cep telefonu numarası yok"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "Bildirimler"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "Bildirimler Devre Dışı"
@@ -17857,7 +18036,7 @@ msgstr "Bildirimler Devre Dışı"
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Notifications and bulk mails will be sent from this outgoing server."
-msgstr "Bildirimler ve toplu postalar bu giden sunucudan gönderilecektir."
+msgstr ""
#. Label of the notify_on_every_login (Check) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -17877,17 +18056,17 @@ msgstr "E-posta ile bildir"
#. 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 "Cevaplanmazsa Bildir"
+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 "Cevaplamazsa Bildir (Dakika)"
+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 "Oturum Açıldığında Kullanıcıları Bilgilendir"
+msgstr ""
#: frappe/public/js/frappe/form/controls/datetime.js:28
#: frappe/public/js/frappe/form/controls/time.js:37
@@ -17897,7 +18076,7 @@ msgstr "Şimdi"
#. Label of the phone (Data) field in DocType 'Contact Phone'
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr "Numara"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
@@ -17914,7 +18093,7 @@ msgstr "Veri Kartı Bağlantısı"
#. Card'
#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Number Card Name"
-msgstr "Veri Kartı İsmi"
+msgstr ""
#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace'
#. Label of the number_cards (Table) field in DocType 'Workspace'
@@ -17930,22 +18109,22 @@ msgstr "Veri Kartları"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/currency/currency.json
msgid "Number Format"
-msgstr "Sayı Formatı"
+msgstr ""
#. Label of the backup_limit (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of Backups"
-msgstr "Yedekleme Sayısı"
+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 "Grup Sayısı"
+msgstr ""
#. Label of the number_of_queries (Int) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Number of Queries"
-msgstr "Sorgu Sayısı"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.py:444
#: frappe/public/js/frappe/doctype/index.js:66
@@ -17966,13 +18145,13 @@ msgstr "Liste Görünümü veya Tablodaki bir alan için sütun sayısı. (Topla
#: 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 "Liste Görünümü veya Tablodaki bir alan için sütun sayısı. (Toplam Sütun sayısı 11'den az olmalıdır.)"
+msgstr ""
#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of days after which the document Web View link shared on email will be expired"
-msgstr "E-postada paylaşılan belgenin Web Görünümü bağlantı süresinin dolması için geçen gün sayısı."
+msgstr ""
#. Label of the cache_keys (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -18054,7 +18233,7 @@ msgstr "Veya"
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP App"
-msgstr "Uygulama"
+msgstr ""
#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -18085,7 +18264,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -18098,7 +18277,7 @@ msgstr "Tekrarlama Sayısı"
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Off"
-msgstr "Kapalı"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -18125,7 +18304,7 @@ msgstr "X Ekseni"
msgid "Offset Y"
msgstr "Y Ekseni"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -18133,7 +18312,7 @@ msgstr ""
msgid "Old Password"
msgstr "Eski Şifre"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "Eski ve yeni alan adları aynıdır."
@@ -18141,7 +18320,7 @@ msgstr "Eski ve yeni alan adları aynıdır."
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Older backups will be automatically deleted"
-msgstr "Saklanacak maksimum yedek adeti."
+msgstr ""
#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health
#. Report'
@@ -18200,7 +18379,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18208,7 +18387,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
-msgstr "Modül Tanıtımı"
+msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:232
msgid "Onboarding Name"
@@ -18244,7 +18423,7 @@ msgstr "Tanıtım Tamamlandı"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "Gönderildikten sonra, gönderilebilir belgeler değiştirilemez. Sadece İptal Edilebilir veya Değiştirilebilirler."
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "Bunu ayarladıktan sonra kullanıcılar yalnızca bağlantının bulunduğu belgeler erişebilecektir."
@@ -18260,11 +18439,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "Bir istekte yalnızca 200 girişe izin verilir"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "E-posta Kuyruğunu yalnızca Yönetici silebilir"
@@ -18283,9 +18462,9 @@ msgstr "Kaydediciyi yalnızca Yönetici kullanabilir"
#. 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 "Düzenleme Yetkisi"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "Veri alanı için yalnızca şu Seçeneklere izin verilir:"
@@ -18308,11 +18487,11 @@ msgstr "Yalnızca Çalışma Alanı Yöneticisi genel çalışma alanlarını d
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
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:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18320,7 +18499,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
-msgstr "Sadece"
+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."
@@ -18355,7 +18534,7 @@ msgstr "Bu yapılacak işi yalnızca atanan kişi tamamlayabilir."
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."
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "Hata! Bir şeyler yanlış gitti."
@@ -18378,8 +18557,8 @@ msgctxt "Access"
msgid "Open"
msgstr "Açık"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18399,7 +18578,7 @@ msgstr "Açık Belge"
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Open Documents"
-msgstr "Açık Dökümanlar"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
@@ -18415,6 +18594,10 @@ msgstr "Açık Referans Belgesi"
msgid "Open Settings"
msgstr "Ayarları Aç"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "Web için Açık Kaynaklı Uygulamalar"
@@ -18429,7 +18612,7 @@ msgstr "URL'yi Yeni Sekmede Aç"
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 "Hızlı bir şekilde yeni bir kayıt oluşturmak için zorunlu alanlara sahip bir iletişim kutusu açın. İletişim kutusunda gösterilecek en az bir zorunlu alan olmalıdır."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "Modüle Git"
@@ -18441,11 +18624,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr "Yeni sekmede aç"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "Liste Öğesini Aç"
@@ -18460,23 +18643,23 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "{0} Sayfasına Git"
#. Label of the openid_configuration (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "OpenID Configuration"
-msgstr "OpenID Yapılandırması"
+msgstr ""
#: frappe/integrations/doctype/connected_app/connected_app.js:15
msgid "OpenID Configuration fetched successfully!"
@@ -18501,7 +18684,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18527,14 +18710,14 @@ msgstr "Seçenek 2"
msgid "Option 3"
msgstr "Seçenek 3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Optional: Always send to these ids. Each Email Address on a new row"
-msgstr "İsteğe bağlı: Her zaman bu kimliklere gönder. Her E-posta Adresi yeni bir satırda"
+msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -18561,7 +18744,7 @@ msgstr "İsteğe bağlı: Bu ifade doğruysa uyarı gönderilecektir"
msgid "Options"
msgstr "Şeçenekler"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "Seçenekler 'Dinamik Bağlantı' türündeki alan, 'DocType' gibi seçeneklere sahip başka bir Bağlantı Alanına işaret etmelidir"
@@ -18570,7 +18753,7 @@ msgstr "Seçenekler 'Dinamik Bağlantı' türündeki alan, 'DocType' gibi seçen
msgid "Options Help"
msgstr "Seçenekler Yardımı"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "Derecelendirme alanı için seçenekler 3 ila 10 arasında değişebilir"
@@ -18578,7 +18761,7 @@ msgstr "Derecelendirme alanı için seçenekler 3 ila 10 arasında değişebilir
msgid "Options for select. Each option on a new line."
msgstr "Seçim için seçenekler. Her seçenek yeni bir satırda."
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "Varsayılan değeri ayarlamadan önce {0} seçenekleri ayarlanmalıdır."
@@ -18586,7 +18769,7 @@ msgstr "Varsayılan değeri ayarlamadan önce {0} seçenekleri ayarlanmalıdır.
msgid "Options is required for field {0} of type {1}"
msgstr "{1} türündeki {0} alanı için seçenekler gereklidir"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "{0} bağlantı alanı için ayarlanmamış seçenekler"
@@ -18602,7 +18785,7 @@ msgstr "Turuncu"
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18622,8 +18805,12 @@ msgstr "Organizasyon Geçmişi Başlığı"
msgid "Orientation"
msgstr "Oryantasyon"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "Orijinal Değer"
@@ -18637,7 +18824,7 @@ msgstr "Orijinal Değer"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr "Diğer"
+msgstr ""
#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -18648,7 +18835,7 @@ msgstr ""
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Outgoing (SMTP) Settings"
-msgstr "Giden (SMTP) Ayarları"
+msgstr ""
#. Label of the outgoing_emails_column (Column Break) field in DocType 'System
#. Health Report'
@@ -18661,13 +18848,13 @@ msgstr "Giden E-postalar (Son 7 gün)"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Server"
-msgstr "Giden Sunucu"
+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 "Giden Sunucu Ayarları"
+msgstr ""
#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Outgoing email account not correct"
@@ -18698,42 +18885,44 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF Oluşturma İşlemi Devam Ediyor"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.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 "PDF Sayfa Yüksekliği (mm)"
+msgstr ""
#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr "Sayfa Boyutu"
+msgstr ""
#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Width (in mm)"
-msgstr "PDF Sayfa Genişliği (mm)"
+msgstr ""
#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr "PDF Ayarları"
+msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "PDF oluşturma başarısız oldu"
@@ -18741,11 +18930,11 @@ msgstr "PDF oluşturma başarısız oldu"
msgid "PDF generation failed because of broken image links"
msgstr "Bozuk resim bağlantıları nedeniyle PDF oluşturma başarısız oldu"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "PDF oluşturma işlemi beklendiği gibi çalışmayabilir."
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18835,7 +19024,7 @@ msgstr "Sayfa"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Page Break"
-msgstr "Sayfa Sonu"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.js:92
@@ -18870,7 +19059,7 @@ msgstr "Sayfa Adı"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63
msgid "Page Number"
-msgstr "Sayfa Numarası"
+msgstr ""
#. Label of the page_route (Small Text) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -18881,7 +19070,7 @@ msgstr "Sayfa Rotası"
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Page Settings"
-msgstr "Sayfa Ayarları"
+msgstr ""
#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
@@ -18894,7 +19083,7 @@ msgstr "Sayfa Boyutu"
#. 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 "Sayfa Başlığı"
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:80
msgid "Page Width (in mm)"
@@ -18904,7 +19093,7 @@ msgstr "Sayfa Genişliği (mm)"
msgid "Page has expired!"
msgstr "Sayfa süresi doldu!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "Sayfa yüksekliği ve genişliği sıfır olamaz"
@@ -18920,7 +19109,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "{1} {0} Sayfası"
@@ -18931,21 +19120,21 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "Üst Grup"
#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Parent DocType"
-msgstr "Ana DocType"
+msgstr ""
#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
#. Label of the parent_document_type (Link) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
-msgstr "Ana Belge Türü"
+msgstr ""
#: frappe/desk/doctype/number_card/number_card.py:66
msgid "Parent Document Type is required to create a number card"
@@ -18964,11 +19153,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18980,16 +19169,16 @@ 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 "Ana Etiket"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
#. Label of the parent_page (Link) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Parent Page"
-msgstr "Üst Sayfa"
+msgstr ""
#: frappe/core/doctype/data_export/exporter.py:24
msgid "Parent Table"
@@ -19007,11 +19196,11 @@ msgstr "Üst öğe, verilerin ekleneceği belgenin adıdır."
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -19030,7 +19219,7 @@ msgstr "Kısmen Başarılı"
msgid "Partially Sent"
msgstr "Kısmen Gönderildi"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "Katılımcılar"
@@ -19044,7 +19233,7 @@ msgstr "Başarılı"
#. Option for the 'Status' (Select) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr "Pasif"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the password_settings (Section Break) field in DocType 'System
@@ -19067,20 +19256,20 @@ msgstr "Pasif"
msgid "Password"
msgstr "Şifre"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "Şifre E-postası Gönderildi"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "Şifre Sıfırlama"
#. 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 "Şifre Resetleme için Bağlantı Oluşturma Limiti"
+msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "Şifre filtrelenemiyor"
@@ -19109,11 +19298,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:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Şifre sıfırlama talimatları {}'in e-postasına gönderildi"
@@ -19125,7 +19314,7 @@ msgstr "Şifre ayarlandı"
msgid "Password size exceeded the maximum allowed size"
msgstr "Şifre boyutu izin verilen maksimum boyutu aştı"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "Şifre boyutu izin verilen maksimum boyutu aştı."
@@ -19187,7 +19376,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19221,7 +19410,7 @@ msgstr ""
#. Request'
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr "Onay Bekleyen"
+msgstr ""
#. Label of the pending_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -19252,7 +19441,7 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "Yüzde"
+msgstr ""
#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
#. Report'
@@ -19265,22 +19454,22 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Perm Level"
-msgstr "Yetki Seviyesi"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Permanent"
msgstr "Kalıcı"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "{0} Kalıcı Olarak İptal Edilecek"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "{0} Kalıcı Olarak İptal Et"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "{0} Kalıcı Olarak Kaydedilecek"
@@ -19288,7 +19477,11 @@ 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/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "İzin Hatası"
@@ -19298,12 +19491,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "Yetki Seviyesi"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "Yetki Seviyeleri"
@@ -19312,11 +19505,6 @@ msgstr "Yetki Seviyeleri"
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "İzin Yöneticisi"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19325,7 +19513,7 @@ msgstr "İzin Sorgusu"
#. Label of the permission_rules (Section Break) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "Permission Rules"
-msgstr "İzin Kuralları"
+msgstr ""
#. Label of the permission_type (Select) field in DocType 'Permission
#. Inspector'
@@ -19347,7 +19535,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19358,13 +19545,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: 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 "İzinler"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "İzin Hatası"
@@ -19376,11 +19562,11 @@ msgstr "İzinler Standart Raporlara ve aramalara otomatik olarak uygulanır."
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 "İzinler, Okuma, Yazma, Oluşturma, Silme, Gönder, İptal, Değiştirme, Rapor Etme, İçe Aktarma, Gönderme, Yazdırma, E-posta ve Kullanıcı İzinlerini Ayarlama gibi hakları belirleyerek Roller ve DocType'lar üzerinde ayarlanır."
-#: frappe/core/page/permission_manager/permission_manager_help.html:26
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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 "Daha yüksek seviyelerdeki izinler Alan Seviyesi izinleridir. Tüm Alanların kendilerine göre ayarlanmış bir İzin Seviyesi vardır ve bu izinlerde tanımlanan kurallar alana uygulanır. Bu, belirli Roller için belirli alanları gizlemek veya salt okunur yapmak istediğinizde faydalıdır."
-#: frappe/core/page/permission_manager/permission_manager_help.html:24
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "0. düzeydeki izinler Belge Düzeyi izinleridir, yani belgeye erişim için birincil izinlerdir."
@@ -19404,7 +19590,7 @@ msgstr "İzin Verilen Roller"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Kişisel"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -19450,20 +19636,20 @@ msgstr ""
msgid "Phone No."
msgstr "Telefon No."
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
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:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "Sütunları Seç"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr "Pasta Dilimi"
+msgstr ""
#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -19475,7 +19661,7 @@ msgstr "Pin Kodu"
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Pink"
-msgstr "Pembe"
+msgstr ""
#. Label of the placeholder (Data) field in DocType 'DocField'
#. Label of the placeholder (Data) field in DocType 'Custom Field'
@@ -19514,7 +19700,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:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "Lütfen Tabloyu Ayarlayın"
@@ -19530,7 +19716,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:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "Lütfen yöneticinizden kayıt işleminizin doğrulamasını isteyin"
@@ -19538,11 +19724,11 @@ msgstr "Lütfen yöneticinizden kayıt işleminizin doğrulamasını isteyin"
msgid "Please attach a file first."
msgstr "Lütfen önce bir dosya yükleyin."
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19554,11 +19740,11 @@ msgstr "Lütfen paketi ekleyin"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Lütfen Gösterge Tablosu Grafiği için ayarlanan filtre değerlerini kontrol edin: {}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
@@ -19590,7 +19776,7 @@ msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki bağlantıya tıkl
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "Doğru sürümü yüklemek için lütfen sistem yöneticinizle iletişime geçin."
@@ -19620,10 +19806,10 @@ msgstr "Kullanıcı adı/şifre tabanlı girişi devre dışı bırakmadan önce
#: 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:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "Pop-up etkinleştirin"
@@ -19636,7 +19822,7 @@ msgstr "Lütfen tarayıcınızda açılır pencereleri etkinleştirin"
msgid "Please enable {} before continuing."
msgstr "Devam etmeden önce lütfen {} ayarını etkinleştirin."
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "Lütfen profilinizde bir e-posta adresi olduğundan emin olun"
@@ -19710,15 +19896,15 @@ 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:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "En son versiyonu almak için lütfen sayfayı yenileyin."
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "Lütfen Yazıcı Ayarları'ndan yazıcı eşlemesini kaldırın ve tekrar deneyin."
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "Eklemeden önce lütfen kaydedin."
@@ -19734,7 +19920,7 @@ msgstr "Lütfen atamayı kaldırmadan önce belgeyi kaydedin"
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "Lütfen önce raporu kaydedin."
@@ -19754,7 +19940,7 @@ 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:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "Lütfen X ve Y alanlarını seçin"
@@ -19762,7 +19948,7 @@ msgstr "Lütfen X ve Y alanlarını seçin"
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "Lütfen {1} alanı için bir ülke kodu seçin."
@@ -19812,11 +19998,11 @@ msgstr "Lütfen {0} seçiniz"
msgid "Please set Email Address"
msgstr "Lütfen E-posta Adresini ayarlayın"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
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:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "Lütfen filtreleri ayarlayın"
@@ -19824,7 +20010,7 @@ msgstr "Lütfen filtreleri ayarlayın"
msgid "Please set filters value in Report Filter table."
msgstr "Lütfen Rapor Filtresi tablosunda filtre değerini ayarlayın."
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "Lütfen belge adını ayarlayın"
@@ -19844,7 +20030,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr "Lütfen önce bir mesaj ayarlayın"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
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"
@@ -19856,7 +20042,7 @@ msgstr ""
msgid "Please specify"
msgstr "Lütfen belirtiniz"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "Lütfen {0} için geçerli bir üst DocType belirtin"
@@ -19884,7 +20070,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr "Lütfen hangi değer alanının kontrol edilmesi gerektiğini belirtin"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "Lütfen tekrar deneyin"
@@ -19945,7 +20131,7 @@ msgstr "Portal"
#. Label of the menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Portal Menu"
-msgstr "Portal Menüsü"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
@@ -19981,7 +20167,7 @@ msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Postal"
-msgstr "Posta"
+msgstr ""
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -20003,13 +20189,13 @@ msgstr "Gönderim Saati"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr "Kesinlik"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -20037,7 +20223,7 @@ msgstr "Varsayılan Teslimat Adresi"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr "Ön Ek"
+msgstr ""
#. Name of a DocType
#. Label of the prepared_report (Check) field in DocType 'Report'
@@ -20061,11 +20247,11 @@ msgstr "Hazır Rapor Kullanıcısı"
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:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "Rapor Hazırlama"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "Şablonu e-posta mesajının önüne ekleyin"
@@ -20073,7 +20259,7 @@ msgstr "Şablonu e-posta mesajının önüne ekleyin"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "Menü ve Kenar Çubuğunda ek kısayolları tetiklemek için Alt Tuşuna basın"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "Kaydetmek için Enter tuşuna basın."
@@ -20091,7 +20277,7 @@ msgstr "Kaydetmek için Enter tuşuna basın."
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "Önizleme"
@@ -20135,16 +20321,16 @@ msgstr "Önizleme:"
msgid "Previous"
msgstr "Önceki"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "Önceki"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "Önceki Belge"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "Önceki Gönderim"
@@ -20197,19 +20383,19 @@ msgstr "{0} belge türünün birincil anahtarı mevcut değerler olduğundan de
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "Yazdır"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "Yazdır"
@@ -20227,8 +20413,9 @@ msgstr "Belgeleri Yazdır"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20270,9 +20457,9 @@ msgstr "Yazdırma Biçimi Yardımı"
#. 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 "Yazdırma Formatı Türü"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20293,7 +20480,7 @@ msgstr "Baskı Başlığı"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide"
-msgstr "Yazdırmayı Gizle"
+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'
@@ -20303,13 +20490,13 @@ msgstr "Yazdırmayı Gizle"
#: 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 "Değer Yoksa Yazdırmayı Gizle"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "Yazdırma Dili"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20317,13 +20504,13 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "Yazdırma Sunucusu"
+msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "Yazdırma Ayarları"
@@ -20354,28 +20541,28 @@ msgstr "Baskı Önizleme"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr "Baskı Genişliği"
+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 "Alan tablodaki bir sütunsa, alanın Yazdırma Genişliği"
+msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "Belgeyi Yazdır"
#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "Antetli Kağıda Yazdır"
+msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "Yazıcı"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "Yazıcı Eşlemesi"
@@ -20383,17 +20570,17 @@ msgstr "Yazıcı Eşlemesi"
#. Settings'
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "Yazıcı Adı"
+msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "Yazıcı Ayarları"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "Yazıcı eşlemesi ayarlanmadı."
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "Yazdırma başarısız oldu"
@@ -20442,7 +20629,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:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "Yine de Devam Et"
@@ -20461,7 +20648,7 @@ msgstr "Prof"
#. Group in User's connections
#: frappe/core/doctype/user/user.json
msgid "Profile"
-msgstr "Profil"
+msgstr ""
#. Label of a field in the edit-profile Web Form
#: frappe/core/web_form/edit_profile/edit_profile.json
@@ -20482,9 +20669,9 @@ msgid "Project"
msgstr "Proje"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20529,14 +20716,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 "Dosya yüklemeleri için izin verilen dosya uzantılarının bir listesini belirleyin. Her satırda izin verilen bir dosya türü bulunmalıdır. Ayarlanmadığı takdirde tüm dosya uzantılarına izin verilir. Örnek:
CSV
JPG
PNG"
+msgstr ""
#. Label of the provider (Data) field in DocType 'User Social Login'
#. Label of the provider (Select) field in DocType 'Geolocation Settings'
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr "Sağlayıcı"
+msgstr ""
#. Label of the provider_name (Data) field in DocType 'Connected App'
#. Label of the provider_name (Data) field in DocType 'Social Login Key'
@@ -20554,7 +20741,7 @@ msgstr "Sağlayıcı Adı"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "Herkese Açık"
@@ -20615,7 +20802,7 @@ msgstr "E-postaları Çek"
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr "Google Takvim'den getirildi"
+msgstr ""
#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
#. Contacts'
@@ -20626,7 +20813,7 @@ msgstr "Google Kişilerinden Getir"
#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr "Google Takvim'den getirildi"
+msgstr ""
#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
@@ -20659,7 +20846,7 @@ msgstr "Satınalma Kullanıcısı"
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Purple"
-msgstr "Mor"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
@@ -20694,7 +20881,7 @@ msgstr "Beklemeye Alın"
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/email/doctype/notification/notification.json
msgid "Python"
-msgstr "Python"
+msgstr ""
#: frappe/www/qrcode.html:3
msgid "QR Code"
@@ -20704,7 +20891,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:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20725,18 +20912,18 @@ msgstr "3 ayda bir"
#: frappe/core/doctype/recorder_query/recorder_query.json
#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr "Sorgu"
+msgstr ""
#. Label of the section_break_6 (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr "Sorgu / Komut Dosyası"
+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 "Sorgu Seçenekleri"
+msgstr ""
#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
@@ -20764,9 +20951,9 @@ msgstr "Sorgu SELECT veya salt okunur WITH türünde olmalıdır."
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "Queue"
-msgstr "Kuyruk"
+msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20778,16 +20965,16 @@ msgstr "Kuyruk Durumu"
#. Label of the queue_type (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue Type(s)"
-msgstr "Sorgu Türleri"
+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 "Arka Plan Kuyruğu (Beta)"
+msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20828,7 +21015,7 @@ msgstr "Yedekleme sıraya alındı. İndirme bağlantısını içeren bir e-post
msgid "Queues"
msgstr "Kuyruk"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20847,13 +21034,13 @@ msgstr "İzinleri Ayarlamak için Hızlı Yardım"
#. List'
#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Quick List Filter"
-msgstr "Liste Filtresi"
+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 "Listeler"
+msgstr ""
#: frappe/public/js/frappe/views/reports/report_utils.js:314
msgid "Quoting must be between 0 and 3"
@@ -20880,7 +21067,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Random"
-msgstr "Rastgele"
+msgstr ""
#: frappe/website/report/website_analytics/website_analytics.js:20
msgid "Range"
@@ -20920,15 +21107,24 @@ msgstr ""
msgid "Raw Email"
msgstr "Ham E-posta"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Raw Printing"
-msgstr "Sade Yazdırma"
+msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20946,7 +21142,7 @@ msgstr "Cvp:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "Ynt: {0}"
@@ -20957,11 +21153,12 @@ msgstr "Ynt: {0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20998,7 +21195,7 @@ msgstr "Salt Okunur Şuna Bağlıdır"
msgid "Read Only Depends On (JS)"
msgstr "Sadece Okunur Koşulu (JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "Salt Okunur Modu"
@@ -21006,7 +21203,7 @@ msgstr "Salt Okunur Modu"
#. Label of the read_by_recipient (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient"
-msgstr "Alıcı Tarafından Okundu"
+msgstr ""
#. Label of the read_by_recipient_on (Datetime) field in DocType
#. 'Communication'
@@ -21025,7 +21222,7 @@ msgstr "Daha fazlasını öğrenmek için belgeleri okuyun"
#. Label of the readme (Markdown Editor) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "Readme"
-msgstr "Beni oku"
+msgstr ""
#. Label of the realtime_socketio_section (Section Break) field in DocType
#. 'System Health Report'
@@ -21038,7 +21235,7 @@ msgstr "Gerçek Zamanlı (Socket.IO)"
msgid "Reason"
msgstr "Nedeni"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "Yeniden Oluştur"
@@ -21080,7 +21277,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "Son İşlemler"
@@ -21089,7 +21286,7 @@ msgstr "Son İşlemler"
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr "Alıcı"
+msgstr ""
#. Label of the recipient_account_field (Data) field in DocType 'DocType'
#. Label of the recipient_account_field (Data) field in DocType 'Customize
@@ -21102,7 +21299,7 @@ msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr "Alıcı Abonelikten Çıktı"
+msgstr ""
#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
@@ -21110,7 +21307,7 @@ msgstr "Alıcı Abonelikten Çıktı"
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr "Alıcılar"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/recorder/recorder.json
@@ -21131,7 +21328,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21174,7 +21371,7 @@ msgstr "Yönlendirilen Bağlantılar"
#: frappe/core/doctype/user/user.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr "Yönlendirme URL'si"
+msgstr ""
#. Description of the 'Default App' (Select) field in DocType 'System Settings'
#. Description of the 'Default App' (Select) field in DocType 'User'
@@ -21197,19 +21394,19 @@ msgstr "Yönlendirmeler"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "İleri Al"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "Son işlemi geri al"
#. Label of the ref_doctype (Link) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Ref DocType"
-msgstr "Referans DocType"
+msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
@@ -21385,7 +21582,7 @@ msgstr "Referans Adı"
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/communication/communication.json
msgid "Reference Owner"
-msgstr "Referans Sahibi"
+msgstr ""
#. Label of the reference_report (Data) field in DocType 'Report'
#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
@@ -21394,19 +21591,19 @@ msgstr "Referans Sahibi"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr "Referans Rapor"
+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 "Referans Tipi"
+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 "Referans Adı"
+msgstr ""
#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
@@ -21418,12 +21615,12 @@ msgstr "Referans: {0} {1}"
msgid "Referrer"
msgstr "Referans Olan"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21438,9 +21635,9 @@ msgstr "Tümünü Yenile"
#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Refresh Google Sheet"
-msgstr "Google E-Tablosunu Yenile"
+msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21453,9 +21650,9 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr "Token Yenile"
+msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "Yenileniyor"
@@ -21466,7 +21663,7 @@ msgstr "Yenileniyor"
msgid "Refreshing..."
msgstr "Yenileniyor..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "Kayıtlı ancak devre dışı"
@@ -21496,7 +21693,7 @@ msgstr "Sürüm"
#. Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
-msgstr "Sürüm Notları"
+msgstr ""
#: frappe/core/doctype/communication/communication.js:48
#: frappe/core/doctype/communication/communication.js:159
@@ -21512,10 +21709,8 @@ msgstr "İletişim Bağlantısını Yenile"
msgid "Relinked"
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:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "Yeniden Yükle"
@@ -21527,7 +21722,7 @@ msgstr "Dosyayı Yeniden Yükle"
msgid "Reload List"
msgstr "Listeyi Yeniden Yükle"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "Raporu Yeniden Yükle"
@@ -21538,7 +21733,7 @@ msgstr "Raporu Yeniden Yükle"
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr "Son Seçilen Değeri Hatırla"
+msgstr ""
#. Label of the remind_at (Datetime) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
@@ -21546,7 +21741,7 @@ msgstr "Son Seçilen Değeri Hatırla"
msgid "Remind At"
msgstr "Hatırlatma Zamanı"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "Hatırlatıcı"
@@ -21626,9 +21821,9 @@ msgid "Removed"
msgstr "Kaldırıldı"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21656,7 +21851,7 @@ msgstr ""
msgid "Reopen"
msgstr "Yeniden aç"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "Tekrar"
@@ -21668,7 +21863,7 @@ msgstr "Üstbilgi ve Altbilgiyi Tekrarla"
#. Label of the repeat_on (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr "Tekrarla"
+msgstr ""
#. Label of the repeat_till (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -21693,7 +21888,7 @@ msgstr ""
#. Label of the repeat_this_event (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr "Bu Etkinliği Tekrarla"
+msgstr ""
#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
@@ -21703,7 +21898,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "Tekrarlar {0}"
@@ -21766,6 +21961,7 @@ msgstr "Tümünü Yanıtla"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21780,10 +21976,9 @@ msgstr "Tümünü Yanıtla"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "Rapor"
@@ -21818,7 +22013,7 @@ msgstr "Rapor Filtresi"
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr "Rapor Filtreleri"
+msgstr ""
#. Label of the report_hide (Check) field in DocType 'DocField'
#. Label of the report_hide (Check) field in DocType 'Custom Field'
@@ -21827,7 +22022,7 @@ msgstr "Rapor Filtreleri"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr "Raporu Gizle"
+msgstr ""
#. Label of the report_information_section (Section Break) field in DocType
#. 'Access Log'
@@ -21852,7 +22047,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "Rapor İsmi"
@@ -21880,20 +22075,16 @@ msgstr "Rapor Referans Doctype"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr "Rapor Türü"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:204
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "Hata bildir"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "Rapor Tek türler için ayarlanamaz"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21904,7 +22095,7 @@ msgstr "Raporda veri yok, lütfen filtreleri veya Rapor Adını değiştirin"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Raporda sayısal alan yok, lütfen Rapor Adını değiştirin"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "Rapor başlatıldı, durumu görüntülemek için tıklayın"
@@ -21916,7 +22107,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:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "Rapor başarıyla güncellendi"
@@ -21924,12 +22115,12 @@ 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:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
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."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "{0} Raporu"
@@ -21952,7 +22143,7 @@ msgstr "Rapor:"
#. 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "Raporlar"
@@ -21960,7 +22151,7 @@ msgstr "Raporlar"
msgid "Reports & Masters"
msgstr "Raporlar & Kayıtlar"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "Raporlar zaten Kuyrukta"
@@ -22002,30 +22193,30 @@ msgstr ""
#. Label of the request_id (Data) field in DocType 'Integration Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request ID"
-msgstr "Talep Kimliği"
+msgstr ""
#. Label of the rate_limit_count (Int) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Request Limit"
-msgstr "Talep Limiti"
+msgstr ""
#. Label of the request_method (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Method"
-msgstr "Talep Metodu"
+msgstr ""
#. Label of the request_structure (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "İstek Zaman Aşımına Uğradı"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -22127,7 +22318,7 @@ msgstr "Şifre Sıfırlama Bağlantısı Geçerlilik Süresi"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Template"
-msgstr "Şifre Sıfırlama Şablonu"
+msgstr ""
#: frappe/core/page/permission_manager/permission_manager.js:116
msgid "Reset Permissions for {0}?"
@@ -22141,7 +22332,7 @@ msgstr "Varsayılanlara Sıfırla"
msgid "Reset sorting"
msgstr "Sıralamayı Sıfırla"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "Varsayılana Dön"
@@ -22199,7 +22390,7 @@ msgstr ""
msgid "Response Type"
msgstr "Yanıt Türü"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "Günün Geri Kalanı"
@@ -22208,7 +22399,7 @@ msgstr "Günün Geri Kalanı"
msgid "Restore"
msgstr "Geri Yükle"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "Varsayılan İzinleri Geri Yükle"
@@ -22228,7 +22419,12 @@ msgstr "Silinen Belge Geri Yükleniyor"
#. Label of the restrict_ip (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr "IP Kısıtlama"
+msgstr ""
+
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
@@ -22238,27 +22434,27 @@ msgstr "IP Kısıtlama"
#: 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 "Çalışma Alanı Kısıtlaması"
+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 "Çalışma Alanını Sınırla"
+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 "Kullanıcıyı yalnızca bu IP adresinden kısıtlayın. Virgülle ayırarak birden fazla IP adresi eklenebilir. (111.111.111) gibi kısmi IP adreslerini de kabul eder."
+msgstr ""
#: frappe/public/js/frappe/list/list_view.js:199
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "Kısıtlamalar"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "Sonuç"
@@ -22297,7 +22493,7 @@ msgstr "İptal Et"
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Revoked"
-msgstr "İptal Edildi"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.js:92
@@ -22305,9 +22501,15 @@ msgstr "İptal Edildi"
msgid "Rich Text"
msgstr "Zengin Metin"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22342,8 +22544,6 @@ msgstr "Robots.txt"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22358,8 +22558,7 @@ msgstr "Robots.txt"
#: 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:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22381,7 +22580,7 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr "Rol İsmi"
+msgstr ""
#. Name of a DocType
#. Label of a Link in the Users Workspace
@@ -22403,7 +22602,7 @@ msgstr "Rol İzinleri"
msgid "Role Permissions Manager"
msgstr "Rol İzinlerini Yönet"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "Rol İzinlerini Yönet"
@@ -22411,11 +22610,9 @@ msgstr "Rol İzinlerini Yönet"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "Rol Profili"
@@ -22435,9 +22632,9 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr "Rol ve Seviye"
+msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "Rol, {0} kullanıcısı türüne göre ayarlandı"
@@ -22470,27 +22667,27 @@ msgstr "Roller"
#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Roles & Permissions"
-msgstr "Roller & İzinler"
+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 "Roller Atandı"
+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 "Roller HTML"
+msgstr ""
#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
#. and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr "Roller Html"
+msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:7
msgid "Roles can be set for users from their User page."
@@ -22508,7 +22705,7 @@ msgstr ""
#. Label of the rounding_method (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Rounding Method"
-msgstr "Yuvarlama Yöntemi"
+msgstr ""
#. Label of the route (Data) field in DocType 'DocType'
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
@@ -22556,20 +22753,20 @@ msgstr "Rota Yönlendirmeleri"
msgid "Route: Example \"/app\""
msgstr "Rota: Örnek \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "Satır"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "Satır # {0}: Yönetici olmayan kullanıcı {1} rolünü özel doctype'a ayarlayamaz"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "Satır #{0}:"
@@ -22596,7 +22793,7 @@ msgstr "Satır Adı"
msgid "Row Number"
msgstr "Satır Numarası"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "Satır Değerleri Değişti"
@@ -22615,14 +22812,14 @@ msgstr "Satır {0}: Standart alanlar için Gönder'de İzin Ver'i etkinleştirme
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "Eklenen Satırlar"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "Silinen Satırlar"
@@ -22637,15 +22834,15 @@ msgstr ""
#. Label of the rule (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr "Kural"
+msgstr ""
#. Label of the section_break_3 (Section Break) field in DocType 'Document
#. Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr "Kural Koşulları"
+msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
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."
@@ -22657,23 +22854,23 @@ 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 "İş akışında durum geçişini tanımlayan kurallar."
+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 "Bir sonraki durum ve hangi rolün durumu değiştirmesine izin verildiği gibi durum geçişlerinin nasıl yapıldığına ilişkin kurallar."
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rules with higher priority number will be applied first."
-msgstr "Öncelik numarası daha yüksek olan kurallar önce uygulanacaktır."
+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 "İnaktif Gün Sayısı"
+msgstr ""
#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System
#. Settings'
@@ -22697,7 +22894,7 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/notification/notification.json
msgid "SMS"
-msgstr "SMS"
+msgstr ""
#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -22725,7 +22922,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "SMS gönderilemedi. Lütfen Yönetici ile iletişime geçin."
@@ -22736,12 +22933,12 @@ msgstr "SMTP Sunucusu gereklidir"
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL"
-msgstr "SQL"
+msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "SQL Conditions. Example: status=\"Open\""
-msgstr "SQL Koşulları. Örnek: status=\"Açık\""
+msgstr ""
#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder/recorder.js:85
@@ -22752,21 +22949,21 @@ msgstr "SQL Açıklaması"
#. Label of the sql_output (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
-msgstr "SQL Çıktısı"
+msgstr ""
#. Label of the sql_queries (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
-msgstr "SQL Sorguları"
+msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "SSL/TLS Mode"
-msgstr "SSL/TLS Modu"
+msgstr ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
@@ -22793,7 +22990,7 @@ msgstr "Satış Kullanıcısı"
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Salesforce"
-msgstr "Satış Gücü"
+msgstr ""
#. Label of the salutation (Link) field in DocType 'Contact'
#. Name of a DocType
@@ -22810,7 +23007,7 @@ msgstr "Aynı Alana birden fazla kez girilmiş"
#. Label of the sample (HTML) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr "Örnek"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -22831,22 +23028,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22859,7 +23057,7 @@ msgid "Save Anyway"
msgstr "Yine de Kaydet"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "Farklı Kaydet"
@@ -22867,7 +23065,7 @@ msgstr "Farklı Kaydet"
msgid "Save Customizations"
msgstr "Özelleştirmeleri Kaydet"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "Raporu Kaydet"
@@ -22878,27 +23076,27 @@ msgstr "Filtreleri Kaydet"
#. 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 "Tamamlamada Kaydet"
+msgstr ""
#: frappe/public/js/frappe/form/form_tour.js:295
msgid "Save the document."
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:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "Kaydedildi"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "Kayıtlı Filitreler"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "Kaydediliyor"
@@ -22907,11 +23105,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "Kaydediliyor"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "Özelleştirmeler Kaydediliyor..."
@@ -22961,7 +23159,7 @@ 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 "Planlanmış Görev"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
@@ -23004,7 +23202,7 @@ msgstr "Zamanlayıcı"
#: frappe/core/doctype/scheduler_event/scheduler_event.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Scheduler Event"
-msgstr "Zamanlayıcı Etkinliği"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.py:124
msgid "Scheduler Inactive"
@@ -23034,7 +23232,7 @@ msgstr "Zamanlayıcı: Aktif Değil"
#. Label of the scope (Data) field in DocType 'OAuth Scope'
#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "Scope"
-msgstr "Kapsam"
+msgstr ""
#. Label of the sb_scope_section (Section Break) field in DocType 'Connected
#. App'
@@ -23049,7 +23247,7 @@ msgstr "Kapsam"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Scopes"
-msgstr "Kapsamlar"
+msgstr ""
#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings'
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -23079,7 +23277,7 @@ msgstr "Script Yöneticisi"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Script Report"
-msgstr "Komut Dosyası Raporu"
+msgstr ""
#. Label of the script_type (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -23115,7 +23313,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23126,16 +23324,16 @@ msgstr "arama"
#. Label of the search_bar (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Search Bar"
-msgstr "Arama Çubuğu"
+msgstr ""
#. Label of the search_fields (Data) field in DocType 'DocType'
#. Label of the search_fields (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr "Alanları Arama"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "Arama Yardımı"
@@ -23143,7 +23341,7 @@ msgstr "Arama Yardımı"
#. Search Settings'
#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Search Priorities"
-msgstr "Arama Öncelikleri"
+msgstr ""
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132
msgid "Search Results"
@@ -23153,7 +23351,7 @@ msgstr "Sonuçlarda Ara"
msgid "Search by filename or extension"
msgstr "Dosya adına veya uzantıya göre arama yapın"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "Arama alanı {0} geçerli değil"
@@ -23170,12 +23368,12 @@ msgstr "Alan Türlerini Ara..."
msgid "Search for anything"
msgstr "Herhangi bir şey için arama yapın"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "{0} İçin Arama Yapın"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "DocType İçinde Arama"
@@ -23221,7 +23419,7 @@ msgstr "Bölüm"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Section Break"
-msgstr "Bölüm Başlığı"
+msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:421
msgid "Section Heading"
@@ -23245,17 +23443,17 @@ msgstr "Bölümde en az bir sütun bulunmalıdır"
#. Label of the sb3 (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Security Settings"
-msgstr "Güvenlik Ayarları"
+msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "Tüm Aktiviteleri Göster"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "Tüm geçmiş raporları görün."
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "Web Sitesinde Gör"
@@ -23284,12 +23482,12 @@ msgstr "Görüldü"
#. Label of the seen_by_section (Section Break) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr "Görüntüleyenler"
+msgstr ""
#. Label of the seen_by (Table) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr "Görüntüleyenler Tablosu"
+msgstr ""
#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -23305,24 +23503,26 @@ msgstr "Görüntüleyenler Tablosu"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "Seçim"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "Tümünü Seç"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23338,7 +23538,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "Sütunları Seç"
@@ -23359,7 +23559,7 @@ msgstr "Pano Seç"
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Select Date Range"
-msgstr "Tarih Aralığı"
+msgstr ""
#. Label of the doc_type (Link) field in DocType 'Web Form'
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28
@@ -23371,7 +23571,7 @@ msgstr "Belge Tipi Seçin"
#. Label of the reference_doctype (Link) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Select Doctype"
-msgstr "Doctype Seçin"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50
#: frappe/workflow/page/workflow_builder/workflow_builder.js:50
@@ -23382,13 +23582,13 @@ msgstr "Belge Türünü Seçin"
msgid "Select Document Type or Role to start."
msgstr "Başlamak için Belge Türünü veya Rolü Seçin"
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
msgid "Select Document Types to set which User Permissions are used to limit access."
msgstr "Erişimi sınırlamak için hangi Kullanıcı İzinlerinin kullanılacağını ayarlamak üzere Belge Türlerini seçin."
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
#: frappe/public/js/frappe/doctype/index.js:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "Alan Seçin"
@@ -23397,7 +23597,7 @@ msgstr "Alan Seçin"
msgid "Select Field..."
msgstr "Alan Seçin..."
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "Alanları Seçin"
@@ -23406,19 +23606,19 @@ msgstr "Alanları Seçin"
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "Eklenecek Alanları Seçin"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "Güncellenecek Alanları Seçin"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "Filtre Seçin"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "Etkinliğin senkronize edileceği Google Takvim'i seçin."
@@ -23443,26 +23643,26 @@ msgstr "Dil Seçin"
msgid "Select List View"
msgstr "Liste Görünümünü Seçin"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "Modül Seç"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "Ağ Yazıcısını Seçin"
#. Label of the page_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Page"
-msgstr "Sayfa Seç"
+msgstr ""
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: frappe/public/js/frappe/views/communication.js:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "Baskı Formatını Seçin"
@@ -23487,7 +23687,7 @@ msgstr "Saat Dilimini Seçin"
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr "İşlem Seçimi"
+msgstr ""
#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
@@ -23496,13 +23696,7 @@ msgstr "İş Akışını Seçin"
#. Label of the workspace_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Workspace"
-msgstr "Çalışma Alanını Seçin"
-
-#. 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 "Çalışma Alanı Seçin"
+msgstr ""
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
@@ -23520,11 +23714,11 @@ msgstr "Düzenlemek için bir alan seçin."
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "E-postadan belge oluşturmak için geçerli bir Gönderen Alanı seçin"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "E-postadan belge oluşturmak için geçerli bir Konu alanı seçin"
@@ -23540,7 +23734,7 @@ msgstr "Düzenlemek için mevcut bir formatı seçin veya yeni bir format oluşt
#. 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 "Transparan arka plana sahip yaklaşık 150 piksel genişliğinde bir resim seçin."
+msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
@@ -23550,13 +23744,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:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "Liste Öğesini Seç"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "Birden Fazla Öğe Seçin"
@@ -23590,7 +23784,7 @@ msgstr "Farkı görmek için iki versiyonuda seçin."
msgid "Select {0}"
msgstr "{0} Seçimi"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "Kendi kendini onaylamaya izin verilmiyor"
@@ -23620,10 +23814,15 @@ msgstr "Gönderdikten Sonra"
msgid "Send Alert On"
msgstr "Uyarı Gönder"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr "E-Posta Uyarısı Gönder"
+msgstr ""
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
@@ -23634,7 +23833,7 @@ msgstr ""
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr "E-Posta Gönder Ekleri PDF Olarak Yazdır (Önerilen)"
+msgstr ""
#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
#. Transition'
@@ -23645,23 +23844,23 @@ 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 "E-postaların Kopyasını Gönder"
+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 "Bildirim Gönder"
+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 "Takip Ettiğim Dökümanlarla İlgili Bildirim Gönder"
+msgstr ""
#. Label of the thread_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr "E-posta Konuları İçin Bildirim Gönder"
+msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
@@ -23670,9 +23869,9 @@ msgstr "Şimdi Gönder"
#. 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 "Yazıcıya PDF Olarak Gönder"
+msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "Okundu Bilgisi Gönder"
@@ -23690,7 +23889,7 @@ msgstr "Tüm Atananlara 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"
+msgstr ""
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -23711,7 +23910,7 @@ msgstr "Bu alanın değeri değişirse uyarı gönder"
#. 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 "Sabah bir e-posta hatırlatıcısı gönderin"
+msgstr ""
#. Description of the 'Days Before or After' (Int) field in DocType
#. 'Notification'
@@ -23729,26 +23928,26 @@ msgstr ""
#. 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr "Sorularınızı bu e-posta adresine gönderin"
+msgstr ""
#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:220
msgid "Send login link"
msgstr "Giriş bağlantısını gönder"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "Bir Kopyasını Bana 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"
-msgstr "Yalnızca herhangi bir veri varsa gönder"
+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 "Abonelikten çıkma mesajını e-posta ile gönder"
+msgstr ""
#. Label of the sender (Data) field in DocType 'Event'
#. Label of the sender (Data) field in DocType 'ToDo'
@@ -23774,21 +23973,21 @@ msgstr ""
msgid "Sender Email Field"
msgstr "Gönderen E-posta Alanı"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
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'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sender Name"
-msgstr "Gönderenin Adı"
+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 "Gönderen Adı Alanı"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23827,7 +24026,7 @@ msgstr "Gönderim Zamanı"
#. Label of the read_receipt (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr "Okundu Bildirimi Gönderildi"
+msgstr ""
#. Label of the sent_to (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
@@ -23837,17 +24036,17 @@ msgstr "Gönderildiği Kişi"
#. Label of the sent_or_received (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr "Gönderildi veya Alındı"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sent/Received Email"
-msgstr "Gönderilen/Alınan E-posta"
+msgstr ""
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Separator"
-msgstr "Ayırıcı"
+msgstr ""
#. Label of the sequence_id (Float) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -23858,7 +24057,7 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Series List for this Transaction"
-msgstr "Bu İşlem İçin Adlandırma Serisi"
+msgstr ""
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
@@ -23868,7 +24067,7 @@ msgstr "Seriler {} İçin Güncellendi"
msgid "Series counter for {} updated to {} successfully"
msgstr "{} için seri sayacı başarıyla {} olarak güncellendi"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "Seri {0} zaten {1} adresinde kullanılıyor"
@@ -23876,9 +24075,9 @@ msgstr "Seri {0} zaten {1} adresinde kullanılıyor"
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
-msgstr "Sunucu Aksiyonu"
+msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Sunucu Hatası"
@@ -23886,7 +24085,7 @@ msgstr "Sunucu Hatası"
#. 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 "Sunucu IP"
+msgstr ""
#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
@@ -23905,11 +24104,15 @@ msgstr "Sunucu Komut Dosyaları devre dışı. Lütfen bench yapılandırmasınd
msgid "Server Scripts feature is not available on this site."
msgstr "Bu sitede Sunucu Scriptleri özelliği bulunmamaktadır."
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "Sunucu bu isteği işleyemeyecek kadar meşguldü. Lütfen tekrar deneyin."
@@ -23937,16 +24140,14 @@ msgstr "Oturum Varsayılanı"
msgid "Session Default Settings"
msgstr "Oturum Varsayılanı Ayarları"
-#. 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:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "Oturum Varsayılanları"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "Oturum Varsayılanları Kaydedildi"
@@ -23957,7 +24158,7 @@ msgstr "Oturum Sonlandırıldı"
#. 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 "Oturum Sonlanma Süresi"
+msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:125
msgid "Session Expiry must be in format {0}"
@@ -23985,16 +24186,16 @@ msgstr "Ayarla"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr "Resimden Banner Ayarla"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "Grafiği Ayarla"
#. 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 "Bu Panodaki tüm grafikler için Varsayılan Seçenekleri Ayarlayın (Örnek: \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
#: frappe/desk/doctype/number_card/number_card.js:384
@@ -24013,7 +24214,7 @@ msgstr "Filtreleri Ayarlayın"
msgid "Set Filters for {0}"
msgstr "{0} İçin Filtreleri Ayarla"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "Seviye Ayarla"
@@ -24025,12 +24226,12 @@ msgstr "Limit Ayarla"
#. DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
-msgstr "İşlemlerinizde Seri Adlandırma seçeneklerini ayarlayın."
+msgstr ""
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr "Yeni Şifre Belirle"
+msgstr ""
#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
@@ -24056,8 +24257,8 @@ msgstr "Özellikleri Ayarla"
msgid "Set Property After Alert"
msgstr "Uyarıdan Sonra Özelliği Ayarla"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -24075,14 +24276,14 @@ msgstr "Kullanıcı İzinlerini Ayarla"
#. Label of the value (Small Text) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr "Değer Ayarla"
+msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "Özel"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "Herkese Açık"
@@ -24210,8 +24411,8 @@ msgstr "Sisteminiz Yapılandırılıyor"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24220,7 +24421,7 @@ msgstr "Ayarlar"
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr "Ayarlar Menüsü"
+msgstr ""
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -24234,11 +24435,11 @@ msgstr "Hakkımızda Sayfasının Ayarları"
#. 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "Kurulum"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "Kurulum > Form Özelleştir"
@@ -24246,12 +24447,12 @@ msgstr "Kurulum > Form Özelleştir"
msgid "Setup > User"
msgstr "Kurulum > Kullanıcı"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "Kurulum > Kullanıcı İzinleri"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "Otomatik E-Postayı Ayarla"
@@ -24265,7 +24466,7 @@ msgstr "Kurulum Tamamlandı"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
-msgstr "İşlemler için Seri Ayarlama"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
@@ -24280,13 +24481,14 @@ msgstr "Kurulum başarısız oldu"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "Paylaş"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "Paylaş"
@@ -24294,14 +24496,14 @@ msgstr "Paylaş"
msgid "Share this document with"
msgstr "Dökümanı Paylaş"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "{0} Paylaş"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "Paylaşıldı"
+msgstr ""
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
@@ -24319,7 +24521,7 @@ msgstr "Sevkiyat Adresi"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Mağaza"
+msgstr ""
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
@@ -24354,16 +24556,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr "Mutlak Değerleri Göster"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "Tümünü Göster"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24382,7 +24578,7 @@ msgstr "Takvimi Göster"
#. 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 "Para Birimi Sembolünü Sağ Tarafta Göster"
+msgstr ""
#. Label of the show_dashboard (Check) field in DocType 'DocField'
#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
@@ -24409,7 +24605,7 @@ msgstr "Hatayı Göster"
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24422,18 +24618,18 @@ msgstr "İlk Belge Turunu Göster"
#. 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 "Form Turunu Göster"
+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 "Tam Hatayı Göster ve Sorunların Geliştiriciye Bildirilmesine İzin Ver"
+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 "Formun Tamamını Göster?"
+msgstr ""
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -24454,14 +24650,14 @@ msgstr "Etiketleri Göster"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
-msgstr "Dil Seçiciyi Göster"
+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 "Bölümlerden Sonra Satır Sonlarını Göster"
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "Bağlantıları Göster"
@@ -24473,7 +24669,7 @@ msgstr "Yalnızca Başarısız Kayıtları Göster"
#. 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 "İstatistik Yüzdesini Göster"
+msgstr ""
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
@@ -24491,12 +24687,12 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr "Açılır Pencereyi Göster"
+msgstr ""
#. Label of the show_processlist (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
-msgstr "İşlem Listesini Göster"
+msgstr ""
#. Label of the show_protected_resource_metadata (Check) field in DocType
#. 'OAuth Settings'
@@ -24518,12 +24714,12 @@ msgstr "Raporu Göster"
#. 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 "Bölüm Başlıklarını Göster"
+msgstr ""
#. Label of the show_sidebar (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr "Kenar Çubuğunu Göster"
+msgstr ""
#. Label of the show_social_login_key_as_authorization_server (Check) field in
#. DocType 'OAuth Settings'
@@ -24539,7 +24735,7 @@ msgstr "Etiketleri Göster"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr "Başlığı Göster"
+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
@@ -24547,7 +24743,7 @@ msgstr "Başlığı Göster"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
-msgstr "Bağlantı Alanlarında Başlığı Göster"
+msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1523
msgid "Show Totals"
@@ -24579,9 +24775,9 @@ msgstr "Hafta Sonlarını Göster"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
-msgstr "Hesabım sayfasında hesap silme bağlantısını göster"
+msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "Tüm Versiyonları Göster"
@@ -24603,18 +24799,18 @@ msgstr "Ekleri göster"
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
-msgstr "Giriş Sayfasında Altbilgiyi Göster"
+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 "Hızlı giriş modu yerine tam formu göster"
+msgstr ""
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Modül Bölümünde Göster"
+msgstr ""
#. Label of the show_in_resource_metadata (Check) field in DocType 'Social
#. Login Key'
@@ -24651,7 +24847,7 @@ msgstr "Zaman Akışında Göster"
#. Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr "Seçilen zaman aralığına göre yüzde farkını gösterir."
+msgstr ""
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
@@ -24683,7 +24879,7 @@ msgstr "{1} satırdan yalnızca ilk {0} satır gösteriliyor"
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/sidebar_item_group/sidebar_item_group.json
msgid "Sidebar"
-msgstr "Kenar Çubuğu"
+msgstr ""
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace Sidebar Item'
@@ -24700,17 +24896,17 @@ msgstr ""
#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr "Kenar Çubuğu Öğeleri"
+msgstr ""
#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr "Kenar Çubuğu Ayarları"
+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 "Kenar Çubuğu ve Yorumlar"
+msgstr ""
#. Label of the sign_out (Button) field in DocType 'User Session Display'
#: frappe/core/doctype/user_session_display/user_session_display.json
@@ -24721,9 +24917,9 @@ msgstr ""
#. DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
-msgstr "Kayıt ve Doğrulama"
+msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "Kaydolma devre dışı bırakıldı"
@@ -24735,7 +24931,7 @@ msgstr "Yeni Kayıt"
#. 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 "Kayıtlar"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -24750,7 +24946,7 @@ msgstr "Kayıtlar"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr "İmza"
+msgstr ""
#: frappe/www/login.html:168
msgid "Signup Disabled"
@@ -24781,7 +24977,7 @@ msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr "Eşzamanlı Oturumlar"
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Single DocTypes cannot be customized."
@@ -24823,7 +25019,7 @@ msgstr "Geç"
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/oauth_settings/oauth_settings.json
msgid "Skip Authorization"
-msgstr "Yetkilendirmeyi Geç"
+msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
@@ -24846,7 +25042,7 @@ msgstr "Başlıksız Sütun Atlanıyor"
msgid "Skipping column {0}"
msgstr "Sütun atlanıyor {0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "{1} dosyasından {0} doctype için fikstür senkronizasyonu atlanıyor"
@@ -24884,7 +25080,7 @@ msgstr "Slack Webhook URL'si"
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr "Slayt Gösterisi"
+msgstr ""
#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
@@ -24921,7 +25117,7 @@ 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 "Küçük Yazı"
+msgstr ""
#. Label of the smallest_currency_fraction_value (Currency) field in DocType
#. 'Currency'
@@ -24966,7 +25162,7 @@ msgstr "Sosyal Giriş Sağlayıcısı"
#. Label of the social_logins (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr "Sosyal Medya Girişleri"
+msgstr ""
#. Label of the socketio_ping_check (Select) field in DocType 'System Health
#. Report'
@@ -25021,15 +25217,15 @@ msgstr "Bir şeyler yanlış gitti"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "Token oluşturma sırasında bir şeyler ters gitti. Yeni bir tane oluşturmak için {0} bağlantısına tıklayın."
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "Bir şeyler yanlış gitti."
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "Girmeye çalıştığınız sayfa bulunamadı. Silinmiş veya ismi değiştirilmiş olabilir."
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "Üzgünüm! Bu sayfayı görüntülemenize izin verilmiyor."
@@ -25044,7 +25240,7 @@ msgstr "Azalan Sıralama"
#. Label of the sort_field (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr "Sıralama Alanı"
+msgstr ""
#. Label of the sort_options (Check) field in DocType 'DocField'
#. Label of the sort_options (Check) field in DocType 'Custom Field'
@@ -25058,15 +25254,15 @@ msgstr "Sıralama Seçenekleri"
#. Label of the sort_order (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr "Sıralama"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
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/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25115,7 +25311,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr "Özel Karakterlere izin verilmez"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "'-', '#', '.', '/', '{{' and '}}' dışındaki özel karakterlere {0} adlandırma serisinde izin verilmez"
@@ -25133,7 +25329,7 @@ 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 "Açılış Görüntüsü"
+msgstr ""
#: frappe/desk/reportview.py:458
#: frappe/public/js/frappe/web_form/web_form_list.js:176
@@ -25154,6 +25350,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25161,6 +25358,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25204,7 +25402,7 @@ msgstr "Standart Raporlar düzenlenemez"
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr "Standart Kenar Çubuğu Menüsü"
+msgstr ""
#: frappe/website/doctype/web_form/web_form.js:40
msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
@@ -25228,8 +25426,8 @@ msgstr "Standart kullanıcı türü {0} silinemez."
#: 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:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "Başlangıç"
@@ -25247,7 +25445,7 @@ msgstr "Başlangıç Tarihi"
#. 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 "Başlangıç Tarihi Alanı"
+msgstr ""
#: frappe/core/doctype/data_import/data_import.js:111
msgid "Start Import"
@@ -25287,7 +25485,7 @@ msgstr "Başladı"
#. Label of the started_at (Datetime) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Started At"
-msgstr "Başlangıç"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:286
msgid "Starting Frappe ..."
@@ -25296,7 +25494,7 @@ msgstr "Frappe Başlatılıyor..."
#. Label of the starts_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr "Başlangıç"
+msgstr ""
#. Label of the state (Data) field in DocType 'Token Cache'
#. Label of the state (Link) field in DocType 'Workflow Document State'
@@ -25329,17 +25527,17 @@ msgstr "Mahalle"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr "Durumlar"
+msgstr ""
#. Label of the parameters (Table) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr "Statik Parametreler"
+msgstr ""
#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Statistics"
-msgstr "İstatistik"
+msgstr ""
#. Label of the stats_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -25351,7 +25549,7 @@ msgstr "İstatistikler"
#. 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 "Zaman Aralığı"
+msgstr ""
#. Label of the status (Select) field in DocType 'Auto Repeat'
#. Label of the status (Select) field in DocType 'Contact'
@@ -25401,7 +25599,7 @@ msgstr "Zaman Aralığı"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25439,7 +25637,7 @@ msgstr "Giriş bilgilerinizi doğrulama adımları"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25467,7 +25665,7 @@ msgstr "Tabloya Göre Depolama Kullanımı"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Store Attached PDF Document"
-msgstr "Eklenen PDF Belgesini Sakla"
+msgstr ""
#: frappe/core/doctype/user/user.js:504
msgid "Store the API secret securely. It won't be displayed again."
@@ -25476,7 +25674,7 @@ msgstr ""
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr "Çeşitli yüklü uygulamaların bilinen son sürümlerinin JSON verisini depolar. Bu, sürüm notlarını göstermek için kullanılır."
+msgstr ""
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
@@ -25492,7 +25690,7 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Strip EXIF tags from uploaded images"
-msgstr "Yüklenen Resimlerin EXIF Etiketlerini Temizle"
+msgstr ""
#: frappe/public/js/frappe/form/controls/password.js:89
msgid "Strong"
@@ -25503,12 +25701,12 @@ msgstr "Güçlü"
#: frappe/website/doctype/web_page/web_page.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr "Stil"
+msgstr ""
#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr "Stil Ayarları"
+msgstr ""
#. Description of the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
@@ -25518,12 +25716,12 @@ msgstr "Stil, düğme rengini temsil eder: Başarı - Yeşil, Tehlike - Kırmız
#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr "Stil Dosyası"
+msgstr ""
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr "Alt para birimi. Örneğin \"Kuruş\""
+msgstr ""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
@@ -25534,7 +25732,7 @@ msgstr "Alt alan adı erpnext.com tarafından sağlanmıştır"
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr "Alt Alan Adı"
+msgstr ""
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -25553,7 +25751,7 @@ msgstr "Alt Alan Adı"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "Konu"
@@ -25565,9 +25763,9 @@ msgstr "Konu"
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr "Konu"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25588,14 +25786,14 @@ msgstr "Gönderim Kuyruğu"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "Gönder"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "Gönder/İşle"
@@ -25623,9 +25821,9 @@ msgstr "Gönder/İşle"
#. 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 "İçe Aktardıktan Sonra Gönder"
+msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "Hata Bildir"
@@ -25649,11 +25847,11 @@ msgstr "Oluştururken Gönder"
msgid "Submit this document to complete this step."
msgstr "Bu adımı tamamlamak için bu belgeyi gönderin."
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "Onaylamak için bu belgeyi gönderin"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "{0} belge gönderilsin mi?"
@@ -25679,7 +25877,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "Gönderiliyor"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "{0} Gönderiliyor"
@@ -25714,12 +25912,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25734,7 +25932,7 @@ msgstr "Eylem Başarılı"
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr "Başarılı Mesajı"
+msgstr ""
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
@@ -25759,9 +25957,9 @@ msgstr "Başarılı başlığı"
#. 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 "Başarılı İş Sayısı"
+msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "Başarılı İşlemler"
@@ -25786,7 +25984,7 @@ msgstr "{1} kayıttan {0} tanesi başarıyla içe aktarıldı."
msgid "Successfully reset onboarding status for all users."
msgstr "Tüm kullanıcılar için tanıtım durumu başarıyla sıfırlandı."
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25811,7 +26009,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "Önerilen Kullanıcı Adı: {0}"
@@ -25852,7 +26050,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr "Gönderimi Askıya Al"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "Kamerayı Değiştir"
@@ -25865,14 +26063,14 @@ msgstr "Temayı Değiştir"
msgid "Switch To Desk"
msgstr "Uygulamaya Git"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "Kamerayı Değiştiriliyor"
#. Label of the symbol (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr "Sembol"
+msgstr ""
#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
#. Label of the sync (Section Break) field in DocType 'Google Contacts'
@@ -25905,12 +26103,12 @@ msgstr "Senkronizasyon belirteci (token) geçersizdi ve sıfırlandı, Senkroniz
#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr "Google Takvim ile senkronize et"
+msgstr ""
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr "Google Kişiler ile Senkronize Et"
+msgstr ""
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
@@ -25934,11 +26132,9 @@ msgid "Syntax Error"
msgstr "Sözdizimi Hatası"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
-msgstr "Sistem"
+msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/system_console/system_console.json
@@ -25946,7 +26142,7 @@ msgstr "Sistem"
msgid "System Console"
msgstr "Sistem Konsolu"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "Sistem Tarafından Oluşturulan Alanlar yeniden adlandırılamaz"
@@ -26073,6 +26269,7 @@ msgstr "Sistem Günlükleri"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26087,7 +26284,6 @@ msgstr "Sistem Günlükleri"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26163,6 +26359,11 @@ msgstr "Sistem Sayfası"
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26179,6 +26380,12 @@ msgstr "T"
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26186,7 +26393,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Tab Break"
-msgstr "Sekme"
+msgstr ""
#: frappe/public/js/form_builder/components/Tabs.vue:135
msgid "Tab Label"
@@ -26212,25 +26419,25 @@ msgstr "Tablo"
#. 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 "Sekme Sonu"
+msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "Tablo Alanı"
#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Table Fieldname"
-msgstr "Tablo Alan Adı"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "Tablo Alanı Adı Eksik"
#. Label of the table_html (HTML) field in DocType 'Version'
#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr "HTML Tablosu"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -26239,9 +26446,9 @@ msgstr "HTML Tablosu"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr "Tablo Çoklu Seçim"
+msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26249,11 +26456,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr "Tablo Temizlendi"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "Tablo güncellendi"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "Tablo {0} boş olamaz"
@@ -26273,17 +26480,17 @@ msgid "Tag Link"
msgstr "Etiket Bağlantısı"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "Etiketler"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "Fotoğraf Çek"
@@ -26329,7 +26536,7 @@ msgstr "Ekip Üyeleri Alt Başlık"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Telemetry"
-msgstr "Telemetri"
+msgstr ""
#. Label of the template (Link) field in DocType 'Auto Repeat'
#. Label of the template (Code) field in DocType 'Address Template'
@@ -26356,18 +26563,18 @@ msgstr "Şablon Dosyası"
#. Label of the template_options (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr "Şablon Seçenekleri"
+msgstr ""
#. Label of the template_warnings (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr "Şablon Uyarıları"
+msgstr ""
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
msgstr "Şablonlar"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "Geçici Olarak Devre Dışı"
@@ -26401,12 +26608,12 @@ msgstr "Test_Klasoru"
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr "Yazı"
+msgstr ""
#. Label of the text_align (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr "Metin Hizala"
+msgstr ""
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
@@ -26427,7 +26634,7 @@ msgstr "Metin İçeriği"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr "Yazı Editorü"
+msgstr ""
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
@@ -26465,7 +26672,7 @@ msgstr "Teşekkürler"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Bu belge için Otomatik Tekrarlama devre dışı bırakıldı."
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "CSV formatı büyük/küçük harfe duyarlıdır"
@@ -26521,7 +26728,7 @@ msgstr "Google Cloud Konsolu'ndan altında elde edilen tarayıcı API anahtarı"
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr "Değişiklikler geri alındı."
@@ -26537,7 +26744,7 @@ msgstr "Yorum alanı boş olamaz"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "Bu e-postanın içeriği kesinlikle gizlidir. Lütfen bu e-postayı kimseye iletmeyin."
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "Gösterilen sayı tahmini bir sayıdır. Kesin sayıyı görmek için buraya tıklayın."
@@ -26563,11 +26770,15 @@ msgstr "Belge {0} kullanıcısına atanmıştır"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "Seçilen belge türü bir alt tablo olduğundan, üst belge türü gereklidir."
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr ""
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr ""
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr ""
@@ -26618,22 +26829,26 @@ msgstr "Meta görseli, sayfanın içeriğini temsil eden benzersiz bir görseldi
#. 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 Takvim'de görünecek ad"
+msgstr ""
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
-msgstr "Bir sonraki tur kullanıcının kaldığı yerden başlayacaktır."
+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 "İsteğin süresinin dolmasına kadar geçecek saniye sayısı"
+msgstr ""
#: frappe/www/update-password.html:101
msgid "The password of your account has expired."
msgstr "Şifrenizin süresi doldu."
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+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} ile ilişkili {0} verilerinin silinmesi işlemi başlatıldı."
@@ -26651,15 +26866,15 @@ msgstr "Google Cloud Console'dan
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
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:1049
+#: frappe/core/doctype/user/user.py:1052
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:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "Aradığınız kaynak mevcut değil"
@@ -26671,7 +26886,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:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem güncelleniyor. Lütfen birkaç dakika sonra tekrar yenileyin."
@@ -26683,6 +26898,42 @@ msgstr "Sistem önceden tanımlanmış birçok rol sağlar. Daha ince izinler ay
msgid "The total number of user document types limit has been crossed."
msgstr "Toplam kullanıcı belge türü sayısı sınırı aşıldı."
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 "Yapıştırdığınız değer {0} karakter uzunluğunda. İzin verilen maksimum karakter {1}."
@@ -26690,7 +26941,7 @@ msgstr "Yapıştırdığınız değer {0} karakter uzunluğunda. İzin verilen m
#. 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 "Bu ifade doğruysa web kancası tetiklenecektir"
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183
msgid "The {0} is already on auto repeat {1}"
@@ -26703,7 +26954,7 @@ msgstr "{0} zaten otomatik tekrarda {1}"
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr "Tema"
+msgstr ""
#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
@@ -26713,18 +26964,18 @@ msgstr "Tema Değiştirildi"
#. Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr "Tema Yapılandırması"
+msgstr ""
#. Label of the theme_url (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme URL"
-msgstr "Tema URL'si"
+msgstr ""
#: frappe/workflow/doctype/workflow/workflow.js:125
msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
msgstr "Bu İş Akışında bulunmayan iş akışı durumlarına sahip belgeler var. Bu durumları kaldırmadan önce bu durumları İş Akışına eklemeniz ve durumlarını değiştirmeniz önerilir."
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "Sizin için yaklaşan bir etkinlik bulunamadı."
@@ -26732,7 +26983,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "Aynı filtrelere sahip {0} zaten kuyrukta mevcut:"
@@ -26741,7 +26992,7 @@ msgstr "Aynı filtrelere sahip {0} zaten kuyrukta mevcut:"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26753,11 +27004,11 @@ msgstr "Adres Şablonunuzda bir hata var {0}"
msgid "There is no data to be exported"
msgstr "Dışarı aktarılacak veri yok"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "Şu anda size gösterecek yeni bir şey yok."
@@ -26765,7 +27016,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:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "Aynı filtrelere sahip {0} kuyrukta zaten mevcut:"
@@ -26781,7 +27032,7 @@ msgstr "Bu sayfayı oluştururken bir hata oluştu."
msgid "There was an error saving filters"
msgstr "Filtreleri kaydederken bir hata oluştu"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "Hatalar oluştu"
@@ -26789,11 +27040,11 @@ 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:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "E-posta gönderirken hatalar vardı. Lütfen tekrar deneyin."
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "Adı ayarlarken bazı hatalar oluştu, lütfen yöneticiyle iletişime geçin"
@@ -26818,7 +27069,7 @@ msgstr ""
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr "Bu değerler işlemlerde otomatik olarak güncellenecek ve ayrıca bu değerleri içeren işlemlerde bu kullanıcıya ait yetkileri kısıtlamak için de kullanışlı olacaktır."
+msgstr ""
#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
@@ -26828,7 +27079,7 @@ msgstr "Üçüncü Parti Uygulamalar"
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr "Üçüncü Taraf Kimlik Doğrulama"
+msgstr ""
#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
@@ -26862,11 +27113,11 @@ 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:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "Bu eylem yalnızca {} için izin verilir"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Bu işlem geri alınamaz"
@@ -26879,18 +27130,18 @@ 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 "Bu Veri Kartı tüm kullanıcılar tarafından erişilebilir olacak."
+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 "Bu ayar seçilirse, tüm Kullanıcılar tarafından kullanılabilir olacak."
+msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:212
msgid "This doctype has no orphan fields to trim"
msgstr "Bu dcotype için temizlenecek artık alan yok"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26906,15 +27157,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr "Bu belge, e-posta gönderildikten sonra değiştirildi."
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "Bu belgede son PDF'de görünmeyebilecek kaydedilmemiş değişiklikler var.
Yazdırmadan önce belgeyi kaydetmeyi düşünün."
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
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:509
+#: frappe/model/document.py:508
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."
@@ -26927,7 +27178,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26952,11 +27203,11 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr "Bu dosya herkese açıktır. Kimlik doğrulaması olmadan erişilebilir."
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "Bu form siz açtıktan sonra değiştirildi."
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
@@ -26973,9 +27224,9 @@ msgstr ""
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr "Bu slayt gösterisinin üstüne gelir."
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
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."
@@ -27007,7 +27258,7 @@ msgstr ""
#. 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 "Bu önekle en son oluşturulan işlemin numarasıdır."
+msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
@@ -27017,15 +27268,15 @@ msgstr "Bu bağlantı doğrulama için zaten etkinleştirildi."
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "Bu bağlantı geçersiz veya süresi dolmuş. Lütfen bağlantıyı doğru yapıştırdığınızdan emin olun."
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr ""
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "Bu Ay"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
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."
@@ -27033,7 +27284,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:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "Bu rapor {0} oluşturuldu."
@@ -27057,7 +27308,7 @@ msgstr ""
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "Bu başlık, web sayfasının başlığı ve meta etiketlerinde kullanılacaktır"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -27101,7 +27352,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:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
@@ -27132,6 +27383,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27139,6 +27391,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Zaman"
@@ -27148,7 +27401,7 @@ msgstr "Zaman"
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time Format"
-msgstr "Zaman Formatı"
+msgstr ""
#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -27158,17 +27411,17 @@ msgstr ""
#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr "Zaman Serisi"
+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 "Zaman Serisinin Veri Kaynağı"
+msgstr ""
#. Label of the time_taken (Duration) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Time Taken"
-msgstr "Geçen Süre"
+msgstr ""
#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
@@ -27190,12 +27443,12 @@ msgstr "Zaman Dilimi"
#. Label of the time_zones (Text) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time Zones"
-msgstr "Zaman Dilimi"
+msgstr ""
#. Label of the time_format (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "Time format"
-msgstr "Saat Formatı"
+msgstr ""
#. Label of the time_in_queries (Float) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -27206,7 +27459,7 @@ msgstr ""
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time in seconds to retain QR code image on server. Min:240"
-msgstr "QR kod görüntüsünü sunucuda saniye cinsinden saklama süresi. Minimum: 240."
+msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
msgid "Time series based on is required to create a dashboard chart"
@@ -27221,11 +27474,6 @@ msgstr "Tarih {0} şu biçimde olmalıdır: {1}"
msgid "Timed Out"
msgstr "Zaman Aşımı"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "Koyu Tema"
@@ -27233,42 +27481,42 @@ msgstr "Koyu Tema"
#. Label of the timeline (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Timeline"
-msgstr "Zaman cetveli"
+msgstr ""
#. Label of the timeline_doctype (Link) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline DocType"
-msgstr "DocType Zaman Akışı"
+msgstr ""
#. Label of the timeline_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Timeline Field"
-msgstr "Zaman Akışı Alanı"
+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 "Zaman Çizelgesi Bağlantıları"
+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 "Zaman Çizelgesi Adı"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
#. Label of the timeout (Duration) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Timeout"
-msgstr "Zaman Aşımı"
+msgstr ""
#. Label of the timeout (Int) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
@@ -27278,7 +27526,7 @@ msgstr "Zaman Aşımı (Saniye)"
#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source'
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Timeseries"
-msgstr "Zaman Serisi"
+msgstr ""
#. Label of the timespan (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -27332,7 +27580,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27348,14 +27596,14 @@ msgstr "Başlık"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr "Başlık Alanı"
+msgstr ""
#. Label of the title_prefix (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr "Başlık Öneki"
+msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27384,7 +27632,7 @@ msgstr "Bitiş Tarihi"
#. 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 "Bitiş Tarihi Alanı"
+msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:6
msgid "To Do"
@@ -27419,13 +27667,13 @@ msgstr "Daha fazla rapora izin vermek için Sistem Ayarları'ndaki güncelleme s
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr "Alıcı & Bilgi"
+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 "Tarih aralığını seçilen dönemin başlangıcından başlatmak için, dönem olarak 'Yıl' seçilirse, rapor yılın ilk günü olan 1 Ocak tarihinden itibaren başlar."
+msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
@@ -27447,7 +27695,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:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "Güncellenmiş raporu almak için {0} adresine tıklayın."
@@ -27500,31 +27748,14 @@ msgstr "Yapılacaklar"
msgid "Today"
msgstr "Bugün"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "Grafiği Aç/Kapat"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "Geniş Görünüm"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "Izgara Görünümü"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "Kenar Çubuğunu Aç/Kapat"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "Temayı Değiştir"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27560,7 +27791,7 @@ msgid "Tomorrow"
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "Çok Fazla Seçim Yapıldı"
@@ -27568,15 +27799,19 @@ msgstr "Çok Fazla Seçim Yapıldı"
msgid "Too Many Requests"
msgstr "Çok Fazla İstek"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "Tek bir işlemde veritabanında çok fazla değişiklik yapıldı."
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
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"
@@ -27584,7 +27819,7 @@ msgstr "Son zamanlarda çok fazla kullanıcı kaydoldu, bu yüzden kayıt devre
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr "Üst"
+msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
@@ -27598,7 +27833,7 @@ msgstr ""
#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr "Üst Menü Elemanları"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -27606,7 +27841,7 @@ msgstr "Üst Menü Elemanları"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
msgid "Top Center"
-msgstr "Üst Merkez"
+msgstr ""
#. Label of the top_errors (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -27617,7 +27852,7 @@ msgstr "En Önemli Hatalar"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
msgid "Top Left"
-msgstr "Üst Sol"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -27625,17 +27860,17 @@ msgstr "Üst Sol"
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
msgid "Top Right"
-msgstr "Sağ Üst"
+msgstr ""
#. Label of the topic (Link) field in DocType 'Discussion Reply'
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
msgstr "Konu"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "Toplam"
@@ -27650,7 +27885,7 @@ msgstr "Toplam Arkaplan Görevleri"
msgid "Total Errors (last 1 day)"
msgstr "Toplam Hatalar (Son 1 Gün)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "Toplam Görüntüler"
@@ -27663,7 +27898,7 @@ msgstr "Toplam Giden E-postalar"
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Total Subscribers"
-msgstr "Toplam Abone Sayısı"
+msgstr ""
#. Label of the total_users (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
@@ -27708,12 +27943,12 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr "Değişiklik Takibi"
+msgstr ""
#. Label of the track_email_status (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr "E-posta Durumunu Takip Et"
+msgstr ""
#. Label of the track_field (Data) field in DocType 'Milestone'
#: frappe/automation/doctype/milestone/milestone.json
@@ -27723,7 +27958,7 @@ msgstr ""
#. Label of the track_seen (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr "Görüldü Takibi"
+msgstr ""
#. Label of the track_steps (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -27735,7 +27970,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr "Görüntüleme Takibi"
+msgstr ""
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
@@ -27743,16 +27978,14 @@ msgstr "Görüntüleme Takibi"
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 "E-postanızın alıcı tarafından açılıp açılmadığını takip edin.\n"
-"
\n"
-"Not: Birden fazla alıcıya gönderiyorsanız, 1 alıcı e-postayı okusa bile \"Açıldı\" olarak kabul edilir."
+msgstr ""
#. Description of a DocType
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "İzleme bağlantısı oluşturuldu ve panoya kopyalandı"
@@ -27767,7 +28000,7 @@ msgstr ""
#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr "Geçiş Kuralları"
+msgstr ""
#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
@@ -27786,9 +28019,9 @@ msgstr "Geçişler"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr "Çevirilebilir"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27797,9 +28030,9 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Translate Link Fields"
-msgstr "Bağlantı Alanlarını Çevir"
+msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "Değerleri çevir"
@@ -27835,9 +28068,9 @@ msgstr "Çöp Kutusu"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
-msgstr "Ağaç Görünümü"
+msgstr ""
#: frappe/public/js/frappe/list/base_list.js:211
msgid "Tree View"
@@ -27846,7 +28079,7 @@ msgstr "Ağaç Görünümü"
#. 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 "Ağaç yapıları iç içe küme şeklinde yapılandırılır."
+msgstr ""
#: frappe/public/js/frappe/views/treeview.js:19
msgid "Tree view is not available for {0}"
@@ -27882,10 +28115,10 @@ msgstr "Tekrar Deneyin"
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Try a Naming Series"
-msgstr "Adlandırma Serisi Önizleme"
+msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "Yeni Yazdırma Tasarımcısını Deneyin"
@@ -27919,18 +28152,19 @@ msgstr ""
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication"
-msgstr "2 Adımlı Doğrulama"
+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 "2 Adımlı Doğrulama Metodu"
+msgstr ""
#. Label of the communication_medium (Select) field in DocType 'Communication'
#. Label of the fieldtype (Select) field in DocType 'DocField'
#. Label of the fieldtype (Select) field in DocType 'Customize Form Field'
#. Label of the type (Data) field in DocType 'Console Log'
#. Label of the type (Select) field in DocType 'Dashboard Chart'
+#. Label of the type (Select) field in DocType 'Event Notifications'
#. 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'
@@ -27944,6 +28178,7 @@ msgstr "2 Adımlı Doğrulama Metodu"
#: 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/event_notifications/event_notifications.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
@@ -27952,7 +28187,7 @@ msgstr "2 Adımlı Doğrulama Metodu"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28042,12 +28277,12 @@ msgstr "Kullanıcı erişime izin verdiğinde yetkilendirme kodunu ve hata yanı
#: 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 "Dökümatasyon yardımıcı için URL bağlantısı."
+msgstr ""
#: frappe/core/doctype/file/file.py:241
msgid "URL must start with http:// or https://"
@@ -28120,7 +28355,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -28128,7 +28363,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "Kamera Yüklenemedi"
@@ -28144,7 +28379,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:180
+#: frappe/core/doctype/communication/email.py:204
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"
@@ -28165,20 +28400,20 @@ msgstr "Koşulu Kaldır"
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "Değişmedi"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "Geri Al"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "Son işlemi geri al"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "Takibi Bırak"
@@ -28199,7 +28434,7 @@ msgstr "İşlenmeyen E-postalar"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Unique"
-msgstr "Benzersiz"
+msgstr ""
#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
@@ -28246,15 +28481,16 @@ msgstr "Okunmamış"
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr "Okunmamış Bildirim Gönderildi"
+msgstr ""
#: frappe/utils/safe_exec.py:498
msgid "Unsafe SQL query"
msgstr "Güvenli olmayan SQL sorgusu"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "Tüm Seçimi Kaldır"
@@ -28287,11 +28523,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "Kaydolmamış"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28311,7 +28547,7 @@ msgstr "Sıkıştırılmamış {0} dosya"
msgid "Unzipping files..."
msgstr "Dosyalar açılıyor..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "Bugünün Yaklaşan Etkinlikleri"
@@ -28319,13 +28555,13 @@ msgstr "Bugünün Yaklaşan Etkinlikleri"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "Güncelle"
@@ -28333,18 +28569,18 @@ msgstr "Güncelle"
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Amendment Naming"
-msgstr "Değiştirilen Serileri Güncelle"
+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 "Mevcut Kayıtları Güncelle"
+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 "Alanı Güncelle"
+msgstr ""
#: frappe/core/doctype/installed_applications/installed_applications.js:6
#: frappe/core/doctype/installed_applications/installed_applications.js:13
@@ -28368,13 +28604,13 @@ msgstr ""
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
-msgstr "İsim Serilerini Güncelle"
+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 "Seri Numarasını Güncelle"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28390,13 +28626,13 @@ msgstr "Çevirileri güncelle"
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr "Güncellenen Değer"
+msgstr ""
#: frappe/utils/change_log.py:381
msgid "Update from Frappe Cloud"
msgstr "Frappe Cloud'dan Güncelle"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "{0} Kaydı Güncelle"
@@ -28404,8 +28640,7 @@ msgstr "{0} Kaydı Güncelle"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "Güncellendi"
@@ -28417,11 +28652,11 @@ msgstr "Başarıyla Güncellendi"
msgid "Updated To A New Version 🎉"
msgstr "Yeni Bir Sürüme Güncellendi 🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "Başarıyla Güncellendi"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "Güncelleniyor"
@@ -28446,11 +28681,11 @@ msgstr "Genel ayarlar güncelleniyor"
msgid "Updating naming series options"
msgstr "Adlandırma serisi seçenekleri güncelleniyor"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "İlgili Alanlar Güncelleniyor..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "{0} Güncelleniyor"
@@ -28458,12 +28693,12 @@ msgstr "{0} Güncelleniyor"
msgid "Updating {0} of {1}, {2}"
msgstr ""
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28484,12 +28719,12 @@ msgstr "{0} dosya yükle"
#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Dropbox"
-msgstr "Dropbox'a Yüklendi"
+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 "Google Drive'a Yüklendi"
+msgstr ""
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
@@ -28501,16 +28736,17 @@ msgstr "Boş olmayan herhangi bir değer için % kullanın."
#. 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 "Parola için ASCII kodlamasını kullanın"
+msgstr ""
#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Use First Day of Period"
-msgstr "Dönemin İlk Gününü Kullan"
+msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "HTML Kullan"
@@ -28519,7 +28755,7 @@ msgstr "HTML Kullan"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr "IMAP Kullan"
+msgstr ""
#. Label of the use_number_format_from_currency (Check) field in DocType
#. 'System Settings'
@@ -28535,7 +28771,7 @@ msgstr ""
#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr "Rapor Grafiğini Kullan"
+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'
@@ -28544,21 +28780,21 @@ msgstr "Rapor Grafiğini Kullan"
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr "SSL kullan"
+msgstr ""
#. Label of the use_starttls (Check) field in DocType 'Email Account'
#. Label of the use_starttls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
-msgstr "STARTTLS Kullan"
+msgstr ""
#. Label of the use_tls (Check) field in DocType 'Email Account'
#. Label of the use_tls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use TLS"
-msgstr "TLS Kullan"
+msgstr ""
#: frappe/utils/password_strength.py:191
msgid "Use a few uncommon words together."
@@ -28571,7 +28807,7 @@ 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 "Farklı E-posta Kimliği kullan"
+msgstr ""
#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -28582,14 +28818,14 @@ msgstr "Varsayılan ayarların verilerinizi doğru şekilde algılamadığını
msgid "Use of sub-query or function is restricted"
msgstr ""
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "Yeni Yazdırma Formatı Oluşturucuyu Kullan"
#. 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 "Başlığı oluşturmak için bu alanı kullanın."
+msgstr ""
#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
#. Account'
@@ -28600,7 +28836,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 Kullanıldı"
+msgstr ""
#. Label of the user (Link) field in DocType 'Assignment Rule User'
#. Label of the user (Link) field in DocType 'Auto Repeat User'
@@ -28616,9 +28852,8 @@ msgstr "OAuth Kullanıldı"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28645,11 +28880,11 @@ msgstr "OAuth Kullanıldı"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28690,12 +28925,12 @@ msgstr ""
#. Label of the in_create (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr "Kullanıcı Oluşturamaz"
+msgstr ""
#. Label of the read_only (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr "Kullanıcı Arama Yapamaz"
+msgstr ""
#: frappe/public/js/frappe/desk.js:550
msgid "User Changed"
@@ -28704,12 +28939,12 @@ msgstr "Kullanıcı Değiştirildi"
#. Label of the defaults (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr "Kullanıcı Varsayılanları"
+msgstr ""
#. Label of the user_details_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Details"
-msgstr "Kullanıcı Detayları"
+msgstr ""
#. Name of a report
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
@@ -28733,7 +28968,7 @@ msgstr "Kullanıcı E-Posta"
#. Label of the user_emails (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr "Kullanıcı E-postalar"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/user_group/user_group.json
@@ -28749,27 +28984,27 @@ msgstr "Kullanıcı Grubu Üyesi"
#. Group'
#: frappe/core/doctype/user_group/user_group.json
msgid "User Group Members"
-msgstr "Kullanıcı Grubu Üyeleri"
+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 "Kullanıcı ID"
+msgstr ""
#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "User ID Property"
-msgstr "Kullanıcı Kimliği Özelliği"
+msgstr ""
#. Label of the user (Link) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr "Kullanıcı 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 "Kullanıcı Kimliği Alanı"
+msgstr ""
#: frappe/core/doctype/user_type/user_type.py:283
msgid "User Id Field is mandatory in the user type {0}"
@@ -28785,7 +29020,7 @@ msgstr "Kullanıcı Resmi"
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "Kullanıcı Menüsü"
@@ -28801,19 +29036,19 @@ msgid "User Permission"
msgstr "Kullanıcı İzinleri"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "Kullanıcı İzinleri"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "Kullanıcı İzinleri"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "Kullanıcı İzinleri, kullanıcıları belirli kayıtlarla sınırlamak için kullanılır."
@@ -28826,7 +29061,7 @@ msgstr "Kullanıcı İzinleri başarıyla oluşturuldu"
#: frappe/core/doctype/user_role/user_role.json
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "User Role"
-msgstr "Kullanıcı Rolü"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/user_role_profile/user_role_profile.json
@@ -28857,7 +29092,7 @@ msgstr "Sosyal Medya Girişi"
#. Label of the _user_tags (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "User Tags"
-msgstr "Kullanıcı Etiketleri"
+msgstr ""
#. Label of the user_type (Link) field in DocType 'User'
#. Name of a DocType
@@ -28878,15 +29113,15 @@ msgstr "Kullanıcı Türü Modülü"
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr "Kullanıcı E-posta kimliği veya Cep telefonu numarası kullanarak giriş yapabilir."
+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 "Kullanıcı E-posta kimliği veya Kullanıcı Adı kullanarak giriş yapabilir."
+msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "Kullanıcı bulunamadı."
@@ -28906,7 +29141,7 @@ msgstr "Paylaşım için kullanıcı zorunludur"
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr "Kullanıcı Her Zaman Seçmeli"
+msgstr ""
#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
@@ -28920,27 +29155,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "Kullanıcı {0} silinemez"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "Kullanıcı {0} devre dışı bırakılamaz"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "Kullanıcı {0} yeniden adlandırılamaz"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "{0} kullanıcısı bu erişim için gerekli yetkiye sahip değil"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "Kullanıcı {0} bir Çalışma Alanı oluşturma iznine sahip değil."
@@ -28949,11 +29184,11 @@ 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:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "{0}, {1} olarak kullanıyor"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "Kullanıcı {0} devre dışı"
@@ -28978,18 +29213,17 @@ msgstr ""
msgid "Username"
msgstr "Kullanıcı Adı"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "Kullanıcı adı {0} zaten var"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29021,13 +29255,13 @@ msgstr ""
#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Utilization %"
-msgstr "Kullanım %"
+msgstr ""
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr "Geçerli"
+msgstr ""
#: frappe/templates/includes/login/login.js:52
#: frappe/templates/includes/login/login.js:65
@@ -29060,14 +29294,14 @@ msgstr "Frappe Posta Ayarlarını Doğrulama"
msgid "Validate SSL Certificate"
msgstr "SSL Sertifikasını Doğrula"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "Doğrulama Hatası"
#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr "Geçerlilik"
+msgstr ""
#. Label of the value (Data) field in DocType 'Milestone'
#. Label of the defvalue (Text) field in DocType 'DefaultValue'
@@ -29089,7 +29323,7 @@ msgstr "Geçerlilik"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29099,7 +29333,7 @@ msgstr "Değer"
#. 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 "Değerin Temel Aldığı Parametre"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -29116,15 +29350,19 @@ msgstr "Değer Değişti"
msgid "Value To Be Set"
msgstr "Ayarlanacak Değer"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "{0} Değeri Değiştirilemez"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "Değer negatif olamaz"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "{0} için değer negatif olamaz : {1}"
@@ -29136,7 +29374,7 @@ msgstr "Bir kontrol alanı için değer 0 veya 1 olabilir"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "{0} alanı için değer {1} için çok uzun. Uzunluk {2} karakterden daha az olmalıdır"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "{0} için değer bir liste olamaz"
@@ -29161,7 +29399,13 @@ msgstr ""
msgid "Value to Validate"
msgstr "Doğrulanacak Değer"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "Değer çok büyük"
@@ -29178,7 +29422,7 @@ msgstr "Değer {0} geçerli süre biçiminde olmalıdır: d h m s"
msgid "Value {0} must in {1} format"
msgstr "{0} değeri {1} biçiminde olmalıdır"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "Değerler Değişti"
@@ -29187,11 +29431,11 @@ msgstr "Değerler Değişti"
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "Doğrulama"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "Doğrulama Kodu"
@@ -29199,7 +29443,7 @@ msgstr "Doğrulama Kodu"
msgid "Verification Link"
msgstr "Doğrulama Bağlantısı"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "Doğrulama kodu e-postası gönderilemedi. Lütfen Yönetici ile iletişime geçin."
@@ -29210,10 +29454,10 @@ msgstr "Doğrulama kodu kayıtlı e-posta adresinize gönderildi."
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr "Doğrulandı"
+msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "Doğrula"
@@ -29237,7 +29481,7 @@ msgstr "Yeni Versiyon Yüklendi"
#. Label of the video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr "Video Linki"
+msgstr ""
#. Label of the view_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -29249,7 +29493,7 @@ msgstr ""
msgid "View All"
msgstr "Tümünü Göster"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "Denetim İzini Görüntüle"
@@ -29261,7 +29505,7 @@ msgstr "Doctype İzinlerini Görüntüle"
msgid "View File"
msgstr "Dosyayı Göster"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "Tam Günlüğü Görüntüle"
@@ -29283,7 +29527,7 @@ msgstr "İzin Verilen Belgeleri Görüntüle"
#. Label of the view_properties (Button) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr "Özellikleri Görüntüle (Formu Özelleştir)"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -29296,25 +29540,22 @@ msgstr "Raporu Göster"
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr "Görüntüleme Ayarları"
+msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
#. Label of the view_switcher (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "View Switcher"
-msgstr "Tema Değiştirici"
+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 "Websitesine Git"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29330,7 +29571,7 @@ msgstr "Raporu tarayıcınızda görüntüleyin"
msgid "View this in your browser"
msgstr "Bunu tarayıcınızda görüntüleyin"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "Yanıtınızı görüntüleyin"
@@ -29366,7 +29607,7 @@ msgstr "Sanal DocType {}, {} adlı statik bir yöntem gerektirir {} bulundu"
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "Sanal DocType {}, {} adlı bir örnek yönteminin geçersiz kılınmasını gerektirir {} bulundu"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29414,7 +29655,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29423,7 +29664,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "Uyarı: VERİ KAYBI YAKLAŞIYOR! Devam edilmesi durumunda aşağıdaki veritabanı sütunları {0} DocType'ı için kalıcı olarak silinecektir:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "Uyarı: Adlandırma ayarlanmamış"
@@ -29434,7 +29675,7 @@ msgstr "Uyarı: {1} ile ilgili herhangi bir tabloda {0} bulunamadı"
#. 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 "Uyarı: Sayacın güncellenmesi düzgün yapılmazsa belge adı çakışmalarına yol açabilir"
+msgstr ""
#: frappe/core/doctype/doctype/doctype.py:458
msgid "Warning: Usage of 'format:' is discouraged."
@@ -29490,7 +29731,7 @@ msgstr "Web Formu Alanı"
#. 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 "Web Formu Alanları"
+msgstr ""
#. Name of a DocType
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
@@ -29507,7 +29748,7 @@ msgstr "Web Sayfası"
msgid "Web Page Block"
msgstr "Web Sayfası Bloğu"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "Web Sayfası URL'si"
@@ -29531,7 +29772,7 @@ msgstr "Web Şablonu Alanı"
#. 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 "Web Şablonu Değerleri"
+msgstr ""
#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
@@ -29540,7 +29781,7 @@ msgstr "Web Şablonu Belirtilmedi"
#. Label of the web_view (Tab Break) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Web View"
-msgstr "Web Görünümü"
+msgstr ""
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
@@ -29604,7 +29845,7 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29659,7 +29900,7 @@ msgstr ""
msgid "Website Search Field"
msgstr "Web Sitesi Arama Alanı"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "Web Sitesi Arama Alanı geçerli bir alan adı olmalıdır"
@@ -29724,6 +29965,11 @@ msgstr "Web sitesi Tema resim bağlantısı"
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29758,7 +30004,7 @@ msgstr "Haftalık"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Weekdays"
-msgstr "Hafta İçi"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -29787,7 +30033,7 @@ msgstr "Haftalık"
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Weekly Long"
-msgstr "Haftalık Uzun"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
@@ -29799,7 +30045,7 @@ msgstr "Hoşgeldiniz"
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr "Hoş Geldiniz E-postası Şablonu"
+msgstr ""
#. Label of the welcome_url (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
@@ -29811,15 +30057,15 @@ msgstr "Hoş Geldiniz Bağlantısı"
msgid "Welcome Workspace"
msgstr "Çalışma Alanına Hoşgeldiniz"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "Hoşgeldiniz e-postası gönderildi"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "Hoşgeldiniz {0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "Yenilikler"
@@ -29827,13 +30073,13 @@ msgstr "Yenilikler"
#. '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 "Etkinleştirildiğinde, misarif kullanıcıların siteme dosya yüklemelerine izin verir. Örneğin iş başvuruları web formunda, oturum açmalarına gerek kalmadan kullanıcıdan dosya almak istiyorsanız bunu etkinleştirebilirsiniz."
+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 "Belgeyi e-posta kullanarak gönderirken PDF dosyasını saklayın. Uyarı: Bu, depolama alanı kullanımınızı artırabilir."
+msgstr ""
#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
#. DocType 'System Settings'
@@ -29841,10 +30087,6 @@ msgstr "Belgeyi e-posta kullanarak gönderirken PDF dosyasını saklayın. Uyar
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 "Dosyaları yüklerken, web tabanlı görüntü yakalamayı zorla. Bu seçenek işaretlenmezse, mobil kullanımı algılandığında varsayılan davranış mobil yerel kamerayı kullanmaktır."
-#: 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 "İptal ettikten sonra bir belgeyi düzelttiğinizde ve kaydettiğinizde, eski numaranın bir versiyonu olan yeni bir numara alacaktır."
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29862,7 +30104,7 @@ msgstr "Bu kısayol sizi ilişkili DocType'ın hangi görünümüne götürmelid
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "Genişlik"
@@ -29880,7 +30122,7 @@ msgstr "Genel Filtre"
#. Filter'
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Will add \"%\" before and after the query"
-msgstr "Sorgudan önce ve sonra \"%\" eklenecek"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
@@ -29937,7 +30179,7 @@ msgstr ""
#. Master'
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr "İş Akışı Eylem Adı"
+msgstr ""
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
@@ -29948,7 +30190,7 @@ msgstr "İş Akışı Eylemine İzin Verilen Rol"
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr "İsteğe bağlı durumlar için İş Akışı Eylemi oluşturulmaz"
+msgstr ""
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.js:25
@@ -29963,7 +30205,7 @@ msgstr "İş Akışı Oluşturucu"
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Builder ID"
-msgstr "İş Akışı Oluşturucu ID"
+msgstr ""
#: frappe/workflow/doctype/workflow/workflow.js:11
msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update their properties from the sidebar."
@@ -29972,7 +30214,7 @@ msgstr ""
#. Label of the workflow_data (JSON) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Data"
-msgstr "İş Akışı Verileri"
+msgstr ""
#: frappe/public/js/workflow_builder/components/Properties.vue:44
msgid "Workflow Details"
@@ -29983,10 +30225,14 @@ msgstr "İş Akışı Ayrıntıları"
msgid "Workflow Document State"
msgstr "İş Akışı Belge Durumu"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr "İş Akışı Adı"
+msgstr ""
#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
@@ -29998,13 +30244,13 @@ msgstr ""
#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr "İş Akışı Durum Alanı"
+msgstr ""
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "İş Akışı Durumu ayarlanmamış"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "İş Akışı Durumu geçişine {0} adresinden {1} adresine izin verilmiyor"
@@ -30012,7 +30258,7 @@ msgstr "İş Akışı Durumu geçişine {0} adresinden {1} adresine izin verilmi
msgid "Workflow States Don't Exist"
msgstr ""
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "İş Akışı Durumu"
@@ -30047,18 +30293,15 @@ msgstr "İş akışı başarıyla güncellendi"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "Çalışma Alanı"
@@ -30085,7 +30328,6 @@ msgstr "Çalışma Alanı Bağlantısı"
#. 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 "Çalışma Alanı Yöneticisi"
@@ -30099,27 +30341,15 @@ msgstr "Veri Kartı"
msgid "Workspace Quick List"
msgstr "Çalışma Alanı Listesi"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "Çalışma Alanı Ayarları"
-
-#. 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 "Çalışma Alanı Kurulumu Tamamlandı"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "Çalışma Alanı Kısayolu"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -30129,20 +30359,14 @@ msgstr ""
msgid "Workspace Sidebar Item"
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 "Çalışma Alanı Görünürlüğü"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "{0} Çalışma Alanı Oluşturuldu"
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Workspaces"
-msgstr "Çalışma Alanları"
+msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:757
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
@@ -30164,11 +30388,12 @@ msgstr "Son dokunuşlar"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
-msgstr "Yazma"
+msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr ""
@@ -30179,21 +30404,21 @@ msgstr "X Ekseni Alanı"
#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "X Field"
-msgstr "X Alanı"
+msgstr ""
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Y Axis"
-msgstr "Y Ekseni"
+msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:496
msgid "Y Axis Fields"
@@ -30201,7 +30426,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y Alanı"
@@ -30245,14 +30470,18 @@ msgstr "Yıllık"
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Yellow"
-msgstr "Sarı"
+msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30261,10 +30490,10 @@ msgstr "Sarı"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Evet"
@@ -30300,7 +30529,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30308,7 +30537,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr "İnternete bağlısınız."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30316,11 +30545,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr "Bu kaynağa erişim izniniz yok"
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30343,7 +30572,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:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor"
@@ -30351,10 +30580,14 @@ 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:778
+#: frappe/public/js/frappe/views/communication.js:845
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/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "Bu Web Form Belgesini güncelleme izniniz yok"
@@ -30371,7 +30604,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:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30379,7 +30612,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
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."
@@ -30392,7 +30625,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "{0} eklediniz"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "Belgeye dinamik özellikler eklemek için Jinja şablonu kullanabilirsiniz."
@@ -30416,10 +30649,6 @@ msgstr "Ayrıca bu {0} adresini tarayıcınıza kopyalayıp yapıştırabilirsin
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "Gönderilen dokümanları İptal edip daha sonra değişiklik yapıp değiştirebilirsiniz."
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "Saklama ayalarlarını {0} konumundan değiştirebilirsiniz."
@@ -30474,7 +30703,7 @@ msgstr "Aynı ağdan birden fazla kullanıcı giriş yapacaksa buraya yüksek bi
msgid "You can try changing the filters of your report."
msgstr "Raporunuzun filtrelerini değiştirmeyi deneyebilirsiniz."
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "Alanların yetki seviyelerini ayarlamak için Formu Özelleştir'i kullanabilirsiniz."
@@ -30504,6 +30733,10 @@ msgstr "Bu belgeyi iptal ettiniz {1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "Tek DocType'lardan bir gösterge tablosu grafiği oluşturamazsınız"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "{0} alanı için 'Salt Okunur' ayarını değiştiremezsiniz"
@@ -30530,7 +30763,6 @@ msgid "You changed {0} to {1}"
msgstr "{0} değerini {1} olarak değiştirdiniz"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "Oluşturdunuz"
@@ -30539,11 +30771,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "{} için Okuma veya Seçme İzniniz yok"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
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."
@@ -30555,15 +30783,19 @@ msgstr "İşlemi tamamlamak için yeterli izniniz yok"
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "Bağlantılı tüm belgeleri iptal etme yetkiniz yok."
@@ -30599,7 +30831,7 @@ msgstr "Başarıyla çıkış yaptınız"
msgid "You have hit the row size limit on database table: {0}"
msgstr "Veritabanı tablosunda satır boyutu sınırına ulaştınız: {0}"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "Herhang bir değer girilmedi. Alan boş olarak ayarlanacak."
@@ -30619,7 +30851,7 @@ msgstr "Görüntülenmeyen {0} Var"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "Henüz herhangi bir Gösterge Tablosu ve Sayı Kartı eklemediniz."
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30628,7 +30860,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Çok fazla istek nedeniyle izin verilen sınıra ulaştınız. Lütfen bir süre sonra tekrar deneyin."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "Düzenlediniz"
@@ -30644,12 +30875,12 @@ msgstr "Bu formu kullanabilmek için giriş yapmalısınız."
msgid "You must login to submit this form"
msgstr "Bu formu göndermek için giriş yapmalısınız"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "Herkese Açık ayarlanan bir çalışma alanını silmek için Çalışma Alanı Yöneticisi rolüne sahip olmanız gerekir."
@@ -30657,7 +30888,7 @@ msgstr "Herkese Açık ayarlanan bir çalışma alanını silmek için Çalışm
msgid "You need to be Workspace Manager to edit this document"
msgstr "Bu belgeyi düzenlemek için Çalışma Alanı Yöneticisi olmanız gerekir"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "Bu sayfaya erişebilmek için sistem kullanıcısı olmanız gerekmektedir."
@@ -30689,7 +30920,7 @@ msgstr "Uygulamanızın çalışması için JavaScript'i etkinleştirmeniz gerek
msgid "You need to have \"Share\" permission"
msgstr "\"Paylaş\" iznine sahip olmanız gerekir"
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "Bu özelliği kullanmak için pycups yüklemeniz gerekir!"
@@ -30709,7 +30940,7 @@ msgstr "Birleştirmek için {0} {1} üzerinde yazma iznine ihtiyacınız var"
msgid "You need write permission on {0} {1} to rename"
msgstr "Yeniden adlandırmak için {0} {1} üzerinde yazma iznine ihtiyacınız var"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "{1} {2} adresinden değer almak için {0} iznine ihtiyacınız var"
@@ -30756,7 +30987,7 @@ msgstr "Bu belgeyi takip etmeyi bıraktınız"
msgid "You viewed this"
msgstr "Bunu görüntülediniz"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30833,7 +31064,7 @@ msgstr "E-posta Adresiniz"
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "Formunuz başarıyla güncellendi"
@@ -30861,7 +31092,7 @@ msgstr "Eski şifreniz hatalı."
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr "E-posta alt bilgisi için kuruluşunuzun adı ve adresi."
+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."
@@ -30875,7 +31106,7 @@ msgstr ""
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."
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30897,7 +31128,7 @@ msgstr "Sıfır, herhangi bir zamanda güncellenen kayıtları göndermek anlam
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30914,9 +31145,9 @@ msgstr ""
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "amend"
-msgstr "değiştir"
+msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "ve"
@@ -30928,7 +31159,7 @@ msgstr "artan"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr "mavi"
+msgstr ""
#: frappe/public/js/frappe/form/workflow.js:35
msgid "by Role"
@@ -30937,9 +31168,9 @@ msgstr "Role Göre"
#. Label of the profile (Code) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "cProfile Output"
-msgstr "cProfile Çıktısı"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "takvim"
@@ -30947,15 +31178,17 @@ msgstr "takvim"
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "cancel"
-msgstr "i̇ptal"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "canceled"
-msgstr "i̇ptal Edildi"
+msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30971,15 +31204,15 @@ msgstr "yorum yaptı"
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "create"
-msgstr "oluştur"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "cyan"
-msgstr "açık Mavi"
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "g"
@@ -31019,25 +31252,25 @@ msgstr "dd/mm/yyyy"
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "default"
-msgstr "varsayılan"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "deferred"
-msgstr "ertelendi"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "delete"
-msgstr "sil"
+msgstr ""
#: frappe/public/js/frappe/ui/sort_selector.html:5
#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "descending"
msgstr "azalan"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "belge türü..., örneğin müşteri"
@@ -31045,9 +31278,9 @@ msgstr "belge türü..., örneğin müşteri"
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
-msgstr "Örneğin \"Destek\", \"Satış\""
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "örneğin (55 + 434) / 4 veya =Math.sin(Math.PI/2)..."
@@ -31056,7 +31289,7 @@ msgstr "örneğin (55 + 434) / 4 veya =Math.sin(Math.PI/2)..."
#: 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 "Örneğin; pop.gmail.com / imap.gmail.com"
+msgstr ""
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
@@ -31069,7 +31302,7 @@ msgstr "örneğin cevap@firmaniz.com. Tüm yanıtlar bu gelen kutusuna gelecekti
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr "Örneğin; smtp.gmail.com"
+msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
@@ -31089,12 +31322,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "e-posta gelen kutusu"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "boş"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "boş"
@@ -31106,7 +31343,7 @@ msgstr ""
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "export"
-msgstr "dışarı Aktar"
+msgstr ""
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
@@ -31117,7 +31354,7 @@ msgstr "facebook"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "failed"
-msgstr "başarısız oldu"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -31128,12 +31365,12 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "finished"
-msgstr "bitti"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "gray"
-msgstr "gri"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
@@ -31150,25 +31387,39 @@ 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:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "s"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr ""
#. Label of the icon (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr "simge"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "import"
-msgstr "i̇çe Aktar"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
@@ -31206,19 +31457,14 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "long"
-msgstr "uzun"
+msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "d"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr ""
@@ -31237,15 +31483,15 @@ msgstr "mm-dd-yyyy"
msgid "mm/dd/yyyy"
msgstr "mm/dd/yyyy"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "modül adı..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "yeni"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "yeni belge türü"
@@ -31275,7 +31521,7 @@ msgstr "/"
#. Label of the old_parent (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "old_parent"
-msgstr "eski_ebeveyn"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
@@ -31307,7 +31553,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "veya"
@@ -31320,7 +31566,7 @@ msgstr "turuncu"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "pink"
-msgstr "pembe"
+msgstr ""
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
@@ -31332,7 +31578,7 @@ msgstr ""
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "print"
-msgstr "yazdır"
+msgstr ""
#. Label of the processlist (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
@@ -31342,23 +31588,23 @@ msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr "mor"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "queued"
-msgstr "kuyrukta"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "read"
-msgstr "okuma"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr "kırmızı"
+msgstr ""
#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
@@ -31368,19 +31614,19 @@ msgstr "Önceki değer {0}, {1} olacak şekilde yeniden adlandırıldı."
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "report"
-msgstr "rapor"
+msgstr ""
#. Label of the response (HTML) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr "yanıt"
+msgstr ""
#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "s"
@@ -31394,7 +31640,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "scheduled"
-msgstr "zamanlandı"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -31406,14 +31652,14 @@ msgstr "Seçim"
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr "paylaş"
+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 "kısa"
+msgstr ""
#: frappe/public/js/frappe/widgets/number_card_widget.js:310
msgid "since last month"
@@ -31434,7 +31680,7 @@ msgstr "dünden beri"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "started"
-msgstr "başladı"
+msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:201
msgid "starting the setup..."
@@ -31462,13 +31708,13 @@ msgstr ""
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "submit"
-msgstr "gönder"
+msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "etiket adı..., örneğin #etiket"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "belge türündeki metin"
@@ -31535,7 +31781,7 @@ msgstr "Veri İçe Aktarma ile"
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
-msgstr "Google Meet ile"
+msgstr ""
#: frappe/email/doctype/notification/notification.py:410
msgid "via Notification"
@@ -31566,11 +31812,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "öğeye tıklandığında, varsa açılır pencereyi odaklayacaktır."
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31583,12 +31831,12 @@ msgstr ""
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "write"
-msgstr "yazma"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr "sarı"
+msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
@@ -31606,11 +31854,11 @@ msgstr "yyyy-mm-dd"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31627,8 +31875,8 @@ msgstr "{0} ({1}) (1 satır zorunlu)"
msgid "{0} ({1}) - {2}%"
msgstr "{0} ({1}) - {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31641,13 +31889,13 @@ msgid "{0} Chart"
msgstr "{0} Grafiği"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0} Gösterge Paneli"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31681,11 +31929,11 @@ msgstr "{0} A"
msgid "{0} Map"
msgstr "{0} Harita"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0} İsmi"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31693,7 +31941,7 @@ msgstr ""
msgid "{0} Report"
msgstr "{0} Raporu"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0} Raporları"
@@ -31706,11 +31954,11 @@ msgid "{0} Tree"
msgstr "{0} Ağacı"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0} Sayfa Görüntülemesi"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} eklendi"
@@ -31772,7 +32020,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} bu belgeyi iptal etti {1}"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
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."
@@ -31801,16 +32049,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0} {1} değerini {2} olarak değiştirdi"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0} başarıyla oluşturuldu"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "{0} oluşturdu."
@@ -31827,11 +32078,19 @@ msgstr "{0} g"
msgid "{0} days ago"
msgstr "{0} gün önce"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{1} satırında {0} mevcut değil"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
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"
@@ -31856,7 +32115,7 @@ msgstr "{0} s"
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31877,7 +32136,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0} zorunlu bir alandır"
@@ -31885,7 +32148,15 @@ msgstr "{0} zorunlu bir alandır"
msgid "{0} is a not a valid zip file"
msgstr "{0} geçerli bir zip dosyası değil"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0} geçersiz bir Veri alanıdır."
@@ -31893,6 +32164,15 @@ msgstr "{0} geçersiz bir Veri alanıdır."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} 'Alıcılar' bölümünde geçersiz bir e-posta adresi var"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31902,22 +32182,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0} ile {1} eşittir"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0} değeri {1} değerinden büyük veya eşittir"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0} değeri {1} değerinden büyüktür"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0} değeri {1} değerinden küçük veya eşittir"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0} değeri {1} değerinden küçüktür"
@@ -31930,10 +32224,14 @@ msgstr "{0} {1} gibi"
msgid "{0} is mandatory"
msgstr "{0} yaşam alanı"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31950,12 +32248,12 @@ msgstr "{0} geçerli bir Takvim değil. Varsayılan Takvime yönlendiriliyor."
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
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:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} geçerli bir E-Posta Adresi değil."
@@ -31963,23 +32261,23 @@ 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:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0} geçerli bir İsim değil"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0} geçerli bir Telefon Numarası değil"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
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:824
+#: frappe/permissions.py:830
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:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0}, {1} için geçerli bir üst alan değil"
@@ -31995,6 +32293,11 @@ msgstr "{0} bir zip dosyası değil"
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0} ile {1} eşit değildir"
@@ -32003,10 +32306,12 @@ msgstr "{0} ile {1} eşit değildir"
msgid "{0} is not like {1}"
msgstr "{0} ile {1} benzer değil"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0} ayarlanmamış"
@@ -32015,36 +32320,50 @@ msgstr "{0} ayarlanmamış"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} artık {1} belge türü için varsayılan yazdırma biçimidir"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0} içerir"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0} ayarlandı"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "{0} Kayıt Seçildi"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr "{0} düzenledi."
@@ -32072,35 +32391,35 @@ msgstr "{0} dakika önce"
msgid "{0} months ago"
msgstr "{0} ay önce"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0} '{1}' ile başlamalıdır"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0} '{1}' değerine eşit olmalıdır"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0} hiçbiri {1} olmamalıdır"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0} önce ayarlanmalıdır"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0} benzersiz olmalıdır"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -32117,11 +32436,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0} yeniden adlandırılmasına izin verilmiyor"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "{0}/{1} Kayıt Listeleniyor"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -32150,7 +32469,7 @@ msgstr "{0} kayıtları {1} gün boyunca saklanmaktadır."
msgid "{0} records deleted"
msgstr "{0} kayıt silindi"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "{0} kayıt dışa aktarılacak"
@@ -32175,7 +32494,7 @@ msgstr ""
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:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0} satır #{1}:"
@@ -32189,7 +32508,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0} başarıyla kaydedildi"
@@ -32197,7 +32516,7 @@ msgstr "{0} başarıyla kaydedildi"
msgid "{0} self assigned this task: {1}"
msgstr "{0} kendi kendine bu görevi atadı: {1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0} bir belgeyi {1} {2} sizinle paylaştı"
@@ -32265,7 +32584,7 @@ msgstr "{0} h"
msgid "{0} weeks ago"
msgstr "{0} hafta önce"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32277,7 +32596,7 @@ msgstr "{0} y"
msgid "{0} years ago"
msgstr "{0} yıl önce"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "{0} {1} Eklendi"
@@ -32285,11 +32604,11 @@ msgstr "{0} {1} Eklendi"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0}: {1}, {2} Panosuna eklendi."
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} zaten mevcut."
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32301,11 +32620,11 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1} mevcut değil, birleştirmek için yeni bir hedef seçin"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
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:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1} bulunamadı."
@@ -32313,87 +32632,59 @@ msgstr "{0} {1} bulunamadı."
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Gönderilen kayıt silinemez. Önce {2} İptal {3} işlemini gerçekleştirin."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0}, Satır {1}"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Oluşturmadan İçe Aktarma ayarlanamıyor"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}: Yeni yinelenen belge eklenemedi. Otomatik tekrarlama bildirim e-postasına belge eklemeyi etkinleştirmek için Yazdırma Ayarları'nda {1} adresini etkinleştirin"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}: {2} satırındaki {1} alanı varsayılan olmadan gizlenemez ve zorunlu olamaz"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}: {2} türündeki {1} alanı zorunlu olamaz"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0}: Basit izinler ayarlanamadı"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}: Aynı Rol, Seviye ve {1} ile sadece bir kurala izin verilir"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}: Seçenekler, {2} satırındaki {1} alanı için geçerli bir DocType olmalıdır"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}: {1} satırındaki Bağlantı veya Tablo türü alanı {2} için olması gerekli seçenekler"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}: Seçenekler {1} , {3}alanı için doctype adı {2} ile aynı olmalıdır"
@@ -32401,15 +32692,59 @@ msgstr "{0}: Seçenekler {1} , {3}alanı için doctype adı {2} ile aynı olmal
msgid "{0}: Other permission rules may also apply"
msgstr "{0}: Diğer izin kuralları da geçerli olabilir"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0}: Daha yüksek seviyeler ayarlanmadan önce seviye 0'daki izin ayarlanmalıdır"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32422,15 +32757,15 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} ile {2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1} kaydedildi"
@@ -32450,11 +32785,11 @@ msgstr "{count} satır seçildi"
msgid "{count} rows selected"
msgstr "{count} satır seçildi"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "{} Tamamlandı"
diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po
index d849a724e6..af4c8a4af2 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:51\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr ""
msgid "\"Team Members\" or \"Management\""
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr ""
@@ -66,7 +66,7 @@ msgstr ""
msgid "<head> HTML"
msgstr ""
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr ""
@@ -90,19 +90,19 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr ""
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr ""
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr ""
@@ -158,7 +158,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr ""
@@ -189,7 +189,7 @@ msgstr ""
msgid "1 of 2"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr ""
@@ -587,7 +587,7 @@ msgstr ""
msgid ">="
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
@@ -601,7 +601,7 @@ msgstr ""
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr ""
@@ -920,7 +920,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr ""
@@ -969,13 +969,13 @@ msgstr ""
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr ""
@@ -1032,20 +1032,20 @@ msgstr ""
msgid "Activity Log"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr ""
@@ -1053,11 +1053,11 @@ msgstr ""
msgid "Add / Update"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr ""
@@ -1077,11 +1077,15 @@ msgstr ""
msgid "Add Border at Top"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1090,8 +1094,8 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1135,11 +1139,7 @@ msgstr ""
msgid "Add Indexes"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr ""
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr ""
@@ -1152,17 +1152,13 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr ""
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr ""
@@ -1181,16 +1177,16 @@ msgstr ""
msgid "Add Subscribers"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr ""
@@ -1240,19 +1236,19 @@ msgstr ""
msgid "Add a new section"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr ""
@@ -1270,6 +1266,10 @@ msgstr ""
msgid "Add field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1283,6 +1283,10 @@ msgstr ""
msgid "Add page break"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr ""
@@ -1301,7 +1305,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr ""
@@ -1341,8 +1345,8 @@ msgstr ""
msgid "Added default log doctypes: {}"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr ""
@@ -1432,7 +1436,7 @@ msgstr ""
msgid "Adds a custom field to a DocType"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr ""
@@ -1459,15 +1463,15 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr ""
@@ -1484,8 +1488,8 @@ msgstr ""
msgid "Advanced Control"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr ""
@@ -1566,7 +1570,7 @@ msgstr ""
msgid "Alert"
msgstr ""
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr ""
@@ -1590,6 +1594,15 @@ msgstr ""
msgid "Align Value"
msgstr ""
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1622,7 +1635,7 @@ msgstr ""
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr ""
@@ -1634,11 +1647,11 @@ msgstr ""
msgid "All Records"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr ""
@@ -1949,7 +1962,7 @@ msgstr ""
msgid "Allowed embedding domains"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
@@ -1983,13 +1996,61 @@ msgstr ""
msgid "Allows enabled Social Login Key Base URL to be shown as authorization server."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:52
+msgid "Allows printing or PDF download of documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:77
+msgid "Allows sharing document access with other users."
+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:1081
+#: frappe/core/page/permission_manager/permission_manager_help.html:62
+msgid "Allows the user to access reports related to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:42
+msgid "Allows the user to create new documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:47
+msgid "Allows the user to delete documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:37
+msgid "Allows the user to edit existing records they have access to."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:57
+msgid "Allows the user to email from the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:67
+msgid "Allows the user to export data from the Report view."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "Allows the user to search and see records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:72
+msgid "Allows the user to use Data Import tool to create / update records."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "Allows the user to view the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:82
+msgid "Allows users to enable the mask property for any field of the respective doctype."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1084
msgid "Already Registered"
msgstr ""
@@ -2084,7 +2145,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:586
+#: frappe/model/document.py:585
msgid "Amendment Not Allowed"
msgstr ""
@@ -2097,7 +2158,7 @@ msgstr ""
msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:257
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:242
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2148,7 +2209,7 @@ msgstr ""
msgid "Anonymous responses"
msgstr ""
-#: frappe/public/js/frappe/request.js:189
+#: frappe/public/js/frappe/request.js:187
msgid "Another transaction is blocking this one. Please try again in a few seconds."
msgstr ""
@@ -2161,7 +2222,7 @@ msgstr ""
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:36
+#: frappe/core/page/permission_manager/permission_manager_help.html:103
msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type."
msgstr ""
@@ -2211,11 +2272,11 @@ msgstr ""
msgid "App Name (Client Name)"
msgstr ""
-#: frappe/modules/utils.py:300
+#: frappe/modules/utils.py:343
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1112
+#: frappe/__init__.py:1110
msgid "App {0} is not installed"
msgstr ""
@@ -2289,7 +2350,7 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2213
+#: frappe/public/js/frappe/list/list_view.js:2221
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
msgstr ""
@@ -2298,6 +2359,10 @@ msgstr ""
msgid "Apply Filters"
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:271
+msgid "Apply Module Export Filter"
+msgstr ""
+
#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -2337,7 +2402,7 @@ msgstr ""
msgid "Apply to all Documents Types"
msgstr ""
-#: frappe/model/workflow.py:322
+#: frappe/model/workflow.py:343
msgid "Applying: {0}"
msgstr ""
@@ -2345,18 +2410,11 @@ msgstr ""
msgid "Approval Required"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Route
-#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/templates/includes/navbar/navbar_login.html:18
#: frappe/website/js/website.js:619
msgid "Apps"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Apps with Search"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
@@ -2379,16 +2437,16 @@ msgstr ""
msgid "Are you sure you want to cancel the invitation?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2192
+#: frappe/public/js/frappe/list/list_view.js:2200
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:296
-msgid "Are you sure you want to delete all rows?"
+#: frappe/public/js/frappe/form/grid.js:319
+msgid "Are you sure you want to delete all {0} rows?"
msgstr ""
#: frappe/public/js/frappe/form/controls/attach.js:38
-#: frappe/public/js/frappe/form/sidebar/attachments.js:169
+#: frappe/public/js/frappe/form/sidebar/attachments.js:135
msgid "Are you sure you want to delete the attachment?"
msgstr ""
@@ -2407,19 +2465,19 @@ msgctxt "Confirmation dialog message"
msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab."
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:203
+#: frappe/public/js/frappe/web_form/web_form.js:199
msgid "Are you sure you want to delete this record?"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:191
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:980
+#: frappe/public/js/frappe/views/reports/query_report.js:992
msgid "Are you sure you want to generate a new report?"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:131
+#: frappe/public/js/frappe/form/toolbar.js:130
msgid "Are you sure you want to merge {0} with {1}?"
msgstr ""
@@ -2439,7 +2497,7 @@ msgstr ""
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:57
+#: frappe/public/js/frappe/list/list_filter.js:73
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
@@ -2488,7 +2546,7 @@ msgstr ""
msgid "Ask"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:68
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:89
msgid "Assign"
msgstr ""
@@ -2501,7 +2559,7 @@ msgstr ""
msgid "Assign To"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2174
+#: frappe/public/js/frappe/list/list_view.js:2182
msgctxt "Button in list view actions menu"
msgid "Assign To"
msgstr ""
@@ -2551,7 +2609,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:809
+#: frappe/model/meta.py:62 frappe/public/js/frappe/list/base_list.js:808
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:37
#: frappe/public/js/frappe/model/meta.js:218
#: frappe/public/js/frappe/model/model.js:136
@@ -2640,7 +2698,7 @@ msgstr ""
msgid "Asynchronous"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:696
+#: frappe/public/js/frappe/form/grid_row.js:698
msgid "At least one column is required to show in the grid."
msgstr ""
@@ -2665,7 +2723,7 @@ msgstr ""
msgid "Attach"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:146
+#: frappe/public/js/frappe/views/communication.js:173
msgid "Attach Document Print"
msgstr ""
@@ -2763,19 +2821,26 @@ msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:83
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:104
#: frappe/website/doctype/web_form/templates/web_form.html:113
msgid "Attachments"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:138
msgid "Attempting Connection to QZ Tray..."
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:135
+#: frappe/public/js/frappe/form/print_utils.js:154
msgid "Attempting to launch QZ Tray..."
msgstr ""
+#. Label of the attending (Select) field in DocType 'Event'
+#. Label of the attending (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Attending"
+msgstr ""
+
#: frappe/www/attribution.html:9
msgid "Attribution"
msgstr ""
@@ -3100,11 +3165,6 @@ msgstr ""
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Awesomebar"
-msgstr ""
-
#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
@@ -3210,17 +3270,12 @@ msgstr ""
msgid "Background Image"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Background Job Activity"
-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/sidebar/sidebar.js:289
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:333
msgid "Background Jobs"
msgstr ""
@@ -3333,8 +3388,8 @@ msgstr ""
#. Label of the based_on (Link) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
-#: frappe/printing/page/print/print.js:305
-#: frappe/printing/page/print/print.js:359
+#: frappe/printing/page/print/print.js:313
+#: frappe/printing/page/print/print.js:367
msgid "Based On"
msgstr ""
@@ -3358,6 +3413,8 @@ msgstr ""
msgid "Basic Info"
msgstr ""
+#. Label of the before (Int) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/public/js/frappe/ui/filters/filter.js:63
#: frappe/public/js/frappe/ui/filters/filter.js:69
msgid "Before"
@@ -3427,7 +3484,7 @@ msgstr ""
msgid "Beta"
msgstr ""
-#: frappe/core/doctype/user/user.py:1290 frappe/utils/password_strength.py:73
+#: frappe/core/doctype/user/user.py:1293 frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
msgstr ""
@@ -3555,18 +3612,11 @@ msgstr ""
msgid "Brand Image"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Brand Logo with Search"
-msgstr ""
-
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
@@ -3637,7 +3687,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1211
+#: frappe/public/js/frappe/form/grid.js:1248
msgid "Bulk Edit {0}"
msgstr ""
@@ -3658,7 +3708,7 @@ msgstr ""
msgid "Bulk Update"
msgstr ""
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Bulk approval only support up to 500 documents."
msgstr ""
@@ -3670,7 +3720,7 @@ msgstr ""
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: frappe/model/workflow.py:299
+#: frappe/model/workflow.py:320
msgid "Bulk {0} is enqueued in background."
msgstr ""
@@ -3819,7 +3869,7 @@ msgstr ""
msgid "Cache Cleared"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:248
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:255
msgid "Calculate"
msgstr ""
@@ -3869,12 +3919,12 @@ msgid "Callback Title"
msgstr ""
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
-#: frappe/public/js/frappe/ui/capture.js:334
+#: frappe/public/js/frappe/ui/capture.js:335
msgid "Camera"
msgstr ""
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/public/js/frappe/utils/utils.js:1881
+#: frappe/public/js/frappe/utils/utils.js:2012
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
@@ -3886,11 +3936,11 @@ msgstr ""
msgid "Campaign Description (Optional)"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:411
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1178
+#: frappe/core/doctype/doctype/doctype.py:1181
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
@@ -3900,7 +3950,7 @@ msgstr ""
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: frappe/desk/form/document_follow.py:48
+#: frappe/desk/form/document_follow.py:54
msgid "Can't follow since changes are not tracked."
msgstr ""
@@ -3922,7 +3972,7 @@ msgstr ""
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2283
+#: frappe/public/js/frappe/list/list_view.js:2291
msgctxt "Button in list view actions menu"
msgid "Cancel"
msgstr ""
@@ -3932,11 +3982,11 @@ msgctxt "Secondary button in warning dialog"
msgid "Cancel"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:982
+#: frappe/public/js/frappe/form/form.js:1011
msgid "Cancel All"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:969
+#: frappe/public/js/frappe/form/form.js:998
msgid "Cancel All Documents"
msgstr ""
@@ -3948,7 +3998,7 @@ msgstr ""
msgid "Cancel Prepared Report"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2288
+#: frappe/public/js/frappe/list/list_view.js:2296
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
msgstr ""
@@ -3981,7 +4031,7 @@ msgstr ""
msgid "Cancelling documents"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:91
+#: frappe/desk/doctype/bulk_update/bulk_update.py:92
msgid "Cancelling {0}"
msgstr ""
@@ -3989,7 +4039,7 @@ msgstr ""
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: frappe/client.py:455
+#: frappe/client.py:504
msgid "Cannot Fetch Values"
msgstr ""
@@ -3997,7 +4047,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1266
+#: frappe/model/base_document.py:1283
msgid "Cannot Update After Submit"
msgstr ""
@@ -4017,11 +4067,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1062
+#: frappe/model/document.py:1061
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1076
+#: frappe/model/document.py:1075
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4033,7 +4083,7 @@ msgstr ""
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
@@ -4041,10 +4091,14 @@ msgstr ""
msgid "Cannot create a {0} against a child document: {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr ""
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr ""
@@ -4053,15 +4107,15 @@ msgstr ""
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
@@ -4072,11 +4126,11 @@ msgstr ""
msgid "Cannot delete standard field. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr ""
@@ -4104,7 +4158,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4117,7 +4171,7 @@ msgstr ""
msgid "Cannot edit filters for standard number cards"
msgstr ""
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr ""
@@ -4133,15 +4187,15 @@ msgstr ""
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4153,7 +4207,7 @@ msgstr ""
msgid "Cannot match column {0} with any field"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr ""
@@ -4178,7 +4232,7 @@ msgid "Cannot submit {0}."
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr ""
@@ -4198,7 +4252,7 @@ msgstr ""
msgid "Capitalization doesn't help very much."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr ""
@@ -4212,7 +4266,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr ""
@@ -4241,17 +4295,19 @@ msgstr ""
msgid "Category Name"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4339,7 +4395,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4404,6 +4460,12 @@ msgstr ""
msgid "Check the Error Log for more information: {0}"
msgstr ""
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr ""
@@ -4455,7 +4517,7 @@ msgstr ""
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr ""
@@ -4465,7 +4527,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr ""
@@ -4473,7 +4535,7 @@ msgstr ""
msgid "Choose Existing Card or create New Card"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr ""
@@ -4493,10 +4555,6 @@ msgstr ""
msgid "Choose authentication method to be used by all users"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr ""
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4513,11 +4571,11 @@ msgstr ""
msgid "Clear"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr ""
@@ -4525,7 +4583,7 @@ msgstr ""
msgid "Clear All"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr ""
@@ -4551,7 +4609,7 @@ msgstr ""
msgid "Clear User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr ""
@@ -4619,7 +4677,7 @@ msgstr ""
msgid "Click to Set Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr ""
@@ -4727,7 +4785,7 @@ msgstr ""
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr ""
@@ -4737,7 +4795,7 @@ msgstr ""
msgid "Close Condition"
msgstr ""
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr ""
@@ -4793,12 +4851,12 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4855,7 +4913,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -4866,7 +4924,7 @@ msgstr ""
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
-#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -4911,11 +4969,11 @@ msgstr ""
msgid "Column Name cannot be empty"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr ""
@@ -4958,7 +5016,7 @@ msgstr ""
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5105,12 +5163,12 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr ""
@@ -5125,7 +5183,7 @@ msgstr ""
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr ""
@@ -5216,7 +5274,7 @@ msgstr ""
msgid "Configure Chart"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr ""
@@ -5305,8 +5363,8 @@ msgstr ""
msgid "Connected User"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr ""
@@ -5424,7 +5482,7 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5493,11 +5551,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5509,12 +5567,12 @@ msgstr ""
msgid "Copy embed code"
msgstr ""
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr ""
@@ -5535,7 +5593,7 @@ msgstr ""
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr ""
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr ""
@@ -5543,7 +5601,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr ""
@@ -5551,11 +5609,11 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr ""
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr ""
@@ -5563,7 +5621,7 @@ msgstr ""
msgid "Could not start up:"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr ""
@@ -5615,7 +5673,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr ""
@@ -5642,15 +5700,16 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr ""
@@ -5663,13 +5722,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr ""
@@ -5703,7 +5762,7 @@ msgstr ""
msgid "Create New"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr ""
@@ -5716,7 +5775,7 @@ msgstr ""
msgid "Create New Kanban Board"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5732,18 +5791,18 @@ msgstr ""
msgid "Create a Reminder"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr ""
@@ -5760,7 +5819,7 @@ msgstr ""
msgid "Create or Edit Workflow"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr ""
@@ -5779,13 +5838,21 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr ""
@@ -5979,7 +6046,7 @@ msgstr ""
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr ""
@@ -5990,15 +6057,15 @@ msgstr ""
msgid "Custom Field"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr ""
@@ -6024,7 +6091,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:190
-#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr ""
@@ -6070,7 +6137,7 @@ msgstr ""
msgid "Custom Report"
msgstr ""
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr ""
@@ -6095,11 +6162,11 @@ msgstr ""
msgid "Custom Translation"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr ""
@@ -6122,26 +6189,26 @@ msgstr ""
msgid "Customization"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr ""
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr ""
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr ""
@@ -6238,7 +6305,7 @@ msgstr ""
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr ""
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr ""
@@ -6295,8 +6362,8 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr ""
@@ -6546,7 +6613,7 @@ msgstr ""
msgid "Days Before or After"
msgstr ""
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr ""
@@ -6743,11 +6810,11 @@ msgstr ""
msgid "Default display currency"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr ""
@@ -6804,11 +6871,12 @@ msgstr ""
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -6816,7 +6884,7 @@ msgstr ""
msgid "Delete"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr ""
@@ -6830,10 +6898,6 @@ msgstr ""
msgid "Delete Account"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr ""
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -6863,7 +6927,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr ""
@@ -6891,6 +6963,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -6905,16 +6981,20 @@ msgstr ""
msgid "Delete this record to allow sending to this email address"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -6945,7 +7025,7 @@ msgstr ""
msgid "Deleted all documents successfully"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr ""
@@ -7052,6 +7132,7 @@ msgstr ""
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7134,16 +7215,21 @@ msgstr ""
msgid "Desk User"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7173,11 +7259,11 @@ msgstr ""
msgid "Detect CSV type"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr ""
@@ -7325,10 +7411,11 @@ msgstr ""
msgid "Disabled Auto Reply"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr ""
@@ -7342,11 +7429,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr ""
@@ -7420,11 +7507,11 @@ msgstr ""
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr ""
@@ -7432,7 +7519,7 @@ msgstr ""
msgid "Do you still want to proceed?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr ""
@@ -7487,7 +7574,6 @@ msgstr ""
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7510,7 +7596,6 @@ msgstr ""
#: 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/desktop_icon/desktop_icon.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
@@ -7523,7 +7608,7 @@ msgstr ""
msgid "DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr ""
@@ -7591,10 +7676,6 @@ msgstr ""
msgid "DocType must be Submittable for the selected Doc Event"
msgstr ""
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr ""
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
@@ -7612,15 +7693,15 @@ msgstr ""
msgid "DocType required"
msgstr ""
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr ""
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr ""
@@ -7634,7 +7715,7 @@ msgstr ""
msgid "Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
@@ -7673,7 +7754,7 @@ msgstr ""
msgid "Document Follow"
msgstr ""
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr ""
@@ -7696,19 +7777,19 @@ msgstr ""
msgid "Document Links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
@@ -7727,8 +7808,8 @@ msgstr ""
msgid "Document Name"
msgstr ""
-#: frappe/client.py:409
-msgid "Document Name must be a string"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
msgstr ""
#. Name of a DocType
@@ -7746,7 +7827,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr ""
@@ -7850,7 +7931,7 @@ msgstr ""
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -7870,11 +7951,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr ""
@@ -7903,27 +7984,27 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr ""
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr ""
@@ -7935,11 +8016,11 @@ msgstr ""
msgid "Document not Relinked"
msgstr ""
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
@@ -7955,10 +8036,6 @@ msgstr ""
msgid "Document {0} has been set to state {1} by {2}"
msgstr ""
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr ""
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8096,7 +8173,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr ""
@@ -8180,7 +8257,7 @@ msgid "Due Date Based On"
msgstr ""
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr ""
@@ -8188,19 +8265,15 @@ msgstr ""
msgid "Duplicate Entry"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr ""
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr ""
@@ -8208,6 +8281,18 @@ msgstr ""
msgid "Duplicate field"
msgstr ""
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8295,9 +8380,10 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8308,7 +8394,7 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr ""
@@ -8318,7 +8404,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr ""
@@ -8339,15 +8425,15 @@ msgstr ""
msgid "Edit Custom Block"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr ""
@@ -8361,7 +8447,7 @@ msgstr ""
msgid "Edit Filters"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr ""
@@ -8374,7 +8460,7 @@ msgstr ""
msgid "Edit Format"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr ""
@@ -8432,7 +8518,7 @@ msgstr ""
msgid "Edit Shortcut"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8455,11 +8541,11 @@ msgstr ""
msgid "Edit the {0} Doctype"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr ""
@@ -8515,6 +8601,7 @@ msgstr ""
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8530,12 +8617,14 @@ msgstr ""
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8570,7 +8659,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr ""
@@ -8768,7 +8857,7 @@ msgstr ""
msgid "Email is mandatory to create User Email"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr ""
@@ -8807,7 +8896,7 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr ""
@@ -8815,7 +8904,7 @@ msgstr ""
msgid "Empty column"
msgstr ""
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr ""
@@ -9134,11 +9223,11 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr ""
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9165,6 +9254,10 @@ msgstr ""
msgid "Enter folder name"
msgstr ""
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9195,7 +9288,7 @@ msgstr ""
msgid "Entity Type"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr ""
@@ -9229,7 +9322,7 @@ msgstr ""
msgid "Error"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr ""
@@ -9244,12 +9337,12 @@ msgstr ""
msgid "Error Logs"
msgstr ""
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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 ""
@@ -9287,15 +9380,15 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr ""
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9311,15 +9404,15 @@ msgstr ""
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9329,6 +9422,12 @@ msgstr ""
msgid "Errors"
msgstr ""
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9347,6 +9446,11 @@ msgstr ""
msgid "Event Frequency"
msgstr ""
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9372,11 +9476,11 @@ msgstr ""
msgid "Event Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr ""
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr ""
@@ -9398,6 +9502,7 @@ msgid "Exact Copies"
msgstr ""
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr ""
@@ -9468,7 +9573,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9489,21 +9594,21 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr ""
@@ -9555,20 +9660,21 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr ""
@@ -9607,11 +9713,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr ""
@@ -9627,6 +9733,10 @@ msgstr ""
msgid "Export not allowed. You need {0} role to export."
msgstr ""
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9639,7 +9749,7 @@ msgstr ""
msgid "Export without main header"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr ""
@@ -9679,7 +9789,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr ""
@@ -9728,12 +9838,17 @@ msgstr ""
msgid "Failed Jobs"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr ""
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr ""
@@ -9796,7 +9911,7 @@ msgstr ""
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr ""
@@ -9808,7 +9923,7 @@ msgstr ""
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr ""
@@ -9824,7 +9939,7 @@ msgstr ""
msgid "Failed to request login to Frappe Cloud"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr ""
@@ -9866,7 +9981,7 @@ msgstr ""
msgid "Fax"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr ""
@@ -9926,8 +10041,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9937,7 +10052,7 @@ msgstr ""
msgid "Field \"route\" is mandatory for Web Views"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
@@ -9945,7 +10060,7 @@ msgstr ""
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr ""
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -9954,7 +10069,7 @@ msgstr ""
msgid "Field Description"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr ""
@@ -10002,7 +10117,7 @@ msgstr ""
msgid "Field type cannot be changed for {0}"
msgstr ""
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr ""
@@ -10010,11 +10125,11 @@ msgstr ""
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr ""
@@ -10036,7 +10151,7 @@ msgstr ""
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr ""
@@ -10045,7 +10160,7 @@ msgstr ""
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
@@ -10053,7 +10168,7 @@ msgstr ""
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr ""
@@ -10069,7 +10184,7 @@ msgstr ""
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr ""
@@ -10117,7 +10232,7 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
-#: frappe/database/query.py:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr ""
@@ -10141,7 +10256,7 @@ msgstr ""
msgid "Fieldtype"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
@@ -10217,12 +10332,12 @@ msgstr ""
msgid "File not attached"
msgstr ""
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr ""
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr ""
@@ -10249,12 +10364,17 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr ""
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10273,7 +10393,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr ""
@@ -10282,11 +10402,11 @@ msgstr ""
msgid "Filter Values"
msgstr ""
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr ""
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10305,10 +10425,14 @@ msgid "Filtered Records"
msgstr ""
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10332,7 +10456,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr ""
@@ -10363,10 +10487,6 @@ msgstr ""
msgid "Filters Section"
msgstr ""
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr ""
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr ""
@@ -10384,14 +10504,14 @@ msgstr ""
msgid "Filters:"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr ""
@@ -10479,11 +10599,11 @@ msgstr ""
msgid "Fold"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr ""
@@ -10512,12 +10632,12 @@ msgstr ""
msgid "Folio"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr ""
@@ -10525,7 +10645,7 @@ msgstr ""
msgid "Following Report Filters have missing values:"
msgstr ""
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr ""
@@ -10533,7 +10653,7 @@ msgstr ""
msgid "Following fields are missing:"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr ""
@@ -10541,7 +10661,7 @@ msgstr ""
msgid "Following fields have missing values"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr ""
@@ -10610,7 +10730,7 @@ msgstr ""
msgid "Footer HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr ""
@@ -10647,7 +10767,7 @@ msgstr ""
msgid "Footer Template Values"
msgstr ""
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr ""
@@ -10680,15 +10800,6 @@ msgstr ""
msgid "For Example: {} Open"
msgstr ""
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr ""
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10712,20 +10823,16 @@ msgstr ""
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:19
-msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
-msgstr ""
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr ""
@@ -10753,7 +10860,7 @@ msgstr ""
msgid "For updating, you can update only selective columns."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr ""
@@ -10803,7 +10910,8 @@ msgstr ""
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
@@ -10982,7 +11090,7 @@ msgstr ""
msgid "From"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr ""
@@ -11003,7 +11111,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr ""
@@ -11044,7 +11152,7 @@ msgstr ""
msgid "Full Name"
msgstr ""
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr ""
@@ -11057,7 +11165,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
@@ -11066,11 +11174,11 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr ""
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr ""
@@ -11135,11 +11243,11 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr ""
@@ -11149,8 +11257,8 @@ msgstr ""
msgid "Generate Separate Documents For Each Assignee"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr ""
@@ -11261,7 +11369,7 @@ msgstr ""
msgid "Global Unsubscribe"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr ""
@@ -11321,7 +11429,7 @@ msgstr ""
msgid "Go to {0} Page"
msgstr ""
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr ""
@@ -11547,7 +11655,7 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr ""
@@ -11627,6 +11735,10 @@ msgstr ""
msgid "HTML Editor"
msgstr ""
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11715,7 +11827,7 @@ msgstr ""
msgid "Header HTML"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr ""
@@ -11751,7 +11863,7 @@ msgstr ""
msgid "Headers"
msgstr ""
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr ""
@@ -11788,7 +11900,7 @@ msgstr "xin chào,"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -11843,7 +11955,7 @@ msgstr ""
msgid "Helvetica Neue"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr ""
@@ -11879,8 +11991,8 @@ msgstr ""
msgid "Hidden Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+msgid "Hidden columns include:
{0}"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -12046,7 +12158,7 @@ msgstr ""
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12129,18 +12241,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr ""
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12191,7 +12303,6 @@ msgid "IP Address"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12212,11 +12323,16 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr ""
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12227,6 +12343,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12258,13 +12378,13 @@ msgstr ""
msgid "If Checked workflow status will not override status in list view"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr ""
@@ -12391,12 +12511,20 @@ msgstr ""
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
@@ -12496,7 +12624,7 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr ""
@@ -12562,11 +12690,11 @@ msgstr ""
msgid "Image Width"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr ""
@@ -12600,7 +12728,7 @@ msgstr ""
msgid "Impersonated by {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr ""
@@ -12618,11 +12746,12 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr ""
@@ -12845,15 +12974,15 @@ msgid "Include Web View Link in Email"
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr ""
@@ -12920,11 +13049,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr ""
@@ -12976,7 +13105,7 @@ msgstr ""
msgid "Indicator Color"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr ""
@@ -13023,15 +13152,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr ""
@@ -13061,8 +13190,8 @@ msgstr ""
msgid "Instagram"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr ""
@@ -13088,15 +13217,15 @@ msgstr ""
msgid "Instructions"
msgstr ""
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13164,7 +13293,7 @@ msgstr ""
msgid "Intermediate"
msgstr ""
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr ""
@@ -13173,6 +13302,11 @@ msgstr ""
msgid "Internal record of document shares"
msgstr ""
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13212,13 +13346,13 @@ msgid "Invalid"
msgstr ""
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr ""
@@ -13258,7 +13392,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13266,7 +13400,8 @@ msgstr ""
msgid "Invalid Doctype"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr ""
@@ -13274,8 +13409,8 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr ""
@@ -13299,7 +13434,7 @@ msgstr ""
msgid "Invalid Login Token"
msgstr ""
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr ""
@@ -13307,7 +13442,7 @@ msgstr ""
msgid "Invalid Mail Server. Please rectify and try again."
msgstr ""
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr ""
@@ -13318,8 +13453,8 @@ msgstr ""
msgid "Invalid Operation"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr ""
@@ -13331,7 +13466,7 @@ msgstr ""
msgid "Invalid Output Format"
msgstr ""
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr ""
@@ -13344,11 +13479,11 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr ""
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr ""
@@ -13357,7 +13492,7 @@ msgstr ""
msgid "Invalid Search Field {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr ""
@@ -13376,7 +13511,7 @@ msgstr ""
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr ""
@@ -13388,7 +13523,7 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr ""
@@ -13396,19 +13531,19 @@ msgstr ""
msgid "Invalid app"
msgstr ""
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr ""
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr ""
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr ""
@@ -13416,18 +13551,22 @@ msgstr ""
msgid "Invalid column"
msgstr ""
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr ""
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr ""
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr ""
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr ""
@@ -13436,11 +13575,11 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr ""
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr ""
@@ -13448,11 +13587,11 @@ msgstr ""
msgid "Invalid field name {0}"
msgstr ""
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13460,11 +13599,11 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr ""
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr ""
@@ -13472,7 +13611,7 @@ msgstr ""
msgid "Invalid filter: {0}"
msgstr ""
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr ""
@@ -13489,19 +13628,19 @@ msgstr ""
msgid "Invalid key"
msgstr ""
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr ""
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13525,11 +13664,11 @@ msgstr ""
msgid "Invalid role"
msgstr ""
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr ""
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr ""
@@ -13546,24 +13685,24 @@ msgstr ""
msgid "Invalid username or password"
msgstr ""
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr ""
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13691,7 +13830,7 @@ msgstr ""
msgid "Is Folder"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr ""
@@ -13762,7 +13901,7 @@ msgstr ""
msgid "Is Published Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr ""
@@ -14007,8 +14146,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr ""
@@ -14331,7 +14470,7 @@ msgstr ""
msgid "Label and Type"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr ""
@@ -14354,7 +14493,7 @@ msgstr ""
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr ""
@@ -14400,6 +14539,14 @@ msgstr ""
msgid "Last Active"
msgstr ""
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14524,6 +14671,11 @@ msgstr ""
msgid "Last synced {0}"
msgstr ""
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
@@ -14551,9 +14703,15 @@ msgstr ""
msgid "Ledger"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14647,7 +14805,7 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14676,7 +14834,7 @@ msgstr ""
msgid "Letter Head Scripts"
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr ""
@@ -14698,7 +14856,7 @@ msgstr ""
msgid "Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr ""
@@ -14739,7 +14897,7 @@ msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr ""
@@ -14763,7 +14921,7 @@ msgstr ""
msgid "Limit"
msgstr ""
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr ""
@@ -14889,7 +15047,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -14907,7 +15065,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
@@ -14950,6 +15108,7 @@ msgstr ""
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -14971,8 +15130,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr ""
@@ -15002,7 +15161,7 @@ msgstr ""
msgid "List Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr ""
@@ -15016,7 +15175,7 @@ msgstr ""
msgid "List View Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr ""
@@ -15043,7 +15202,7 @@ msgstr ""
msgid "List setting message"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr ""
@@ -15052,7 +15211,7 @@ msgstr ""
msgid "Load Balancing"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15070,10 +15229,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr ""
@@ -15090,8 +15249,8 @@ msgid "Loading versions..."
msgstr ""
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15101,7 +15260,8 @@ msgid "Loading..."
msgstr ""
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr ""
@@ -15174,6 +15334,11 @@ msgstr ""
msgid "Login"
msgstr ""
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15249,7 +15414,7 @@ msgstr ""
msgid "Login to {0}"
msgstr ""
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr ""
@@ -15316,8 +15481,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr ""
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr ""
@@ -15348,7 +15512,7 @@ msgstr ""
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr ""
@@ -15498,7 +15662,7 @@ msgstr ""
msgid "Mandatory fields required in {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
@@ -15560,7 +15724,7 @@ msgstr ""
msgid "MariaDB Variables"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr ""
@@ -15612,9 +15776,12 @@ msgstr ""
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr ""
@@ -15676,7 +15843,7 @@ msgstr ""
msgid "Max signups allowed per hour"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr ""
@@ -15697,20 +15864,27 @@ msgstr ""
msgid "Maximum {0} rows allowed"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr ""
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
+msgid "Meaning of Different Permission Types"
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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15754,12 +15928,12 @@ msgstr ""
msgid "Mentions"
msgstr ""
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15793,13 +15967,13 @@ msgstr ""
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr ""
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
@@ -15830,7 +16004,7 @@ msgstr ""
msgid "Message Type"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr ""
@@ -15927,7 +16101,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr ""
@@ -16016,7 +16190,7 @@ msgstr ""
msgid "Missing DocType"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr ""
@@ -16036,7 +16210,7 @@ msgstr ""
msgid "Missing Value"
msgstr ""
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16101,7 +16275,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16148,9 +16322,8 @@ msgstr ""
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr ""
@@ -16167,7 +16340,7 @@ msgstr ""
msgid "Module to Export"
msgstr ""
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr ""
@@ -16282,7 +16455,7 @@ msgstr ""
msgid "More content for the bottom of the page."
msgstr ""
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr ""
@@ -16297,7 +16470,7 @@ msgstr ""
msgid "Move"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr ""
@@ -16309,19 +16482,19 @@ msgstr ""
msgid "Move current and all subsequent sections to a new tab"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr ""
@@ -16333,7 +16506,7 @@ msgstr ""
msgid "Move the current field and the following fields to a new column"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr ""
@@ -16451,7 +16624,7 @@ msgstr ""
msgid "Name already taken, please set a new name"
msgstr ""
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr ""
@@ -16463,7 +16636,7 @@ msgstr ""
msgid "Name of the new Print Format"
msgstr ""
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr ""
@@ -16502,7 +16675,7 @@ msgstr ""
msgid "Naming Series"
msgstr ""
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr ""
@@ -16526,11 +16699,6 @@ msgstr ""
msgid "Navbar Settings"
msgstr ""
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16544,39 +16712,44 @@ msgstr ""
msgid "Navbar Template Values"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr ""
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr ""
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr ""
@@ -16598,6 +16771,7 @@ msgstr ""
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16614,7 +16788,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr ""
@@ -16630,8 +16804,8 @@ msgstr ""
msgid "New Custom Block"
msgstr ""
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr ""
@@ -16680,7 +16854,7 @@ msgstr ""
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16701,8 +16875,8 @@ msgstr ""
msgid "New Password"
msgstr ""
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr ""
@@ -16729,8 +16903,8 @@ msgstr ""
msgid "New Users (Last 30 days)"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr ""
@@ -16738,7 +16912,7 @@ msgstr ""
msgid "New Workflow Name"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr ""
@@ -16781,32 +16955,32 @@ msgstr ""
msgid "New value to be set"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr ""
@@ -16818,7 +16992,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16839,7 +17013,7 @@ msgstr ""
msgid "Next"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr ""
@@ -16866,12 +17040,16 @@ msgstr ""
msgid "Next Action Email Template"
msgstr ""
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+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 ""
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr ""
@@ -16938,20 +17116,24 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -17021,7 +17203,7 @@ msgstr ""
msgid "No Google Calendar Event to sync."
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr ""
@@ -17040,23 +17222,23 @@ msgstr ""
msgid "No Label"
msgstr ""
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr ""
@@ -17076,11 +17258,11 @@ msgstr ""
msgid "No Preview"
msgstr ""
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr ""
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr ""
@@ -17088,7 +17270,7 @@ msgstr ""
msgid "No RQ Workers connected. Try restarting the bench."
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr ""
@@ -17096,7 +17278,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr ""
@@ -17112,7 +17294,7 @@ msgstr ""
msgid "No Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr ""
@@ -17132,7 +17314,7 @@ msgstr ""
msgid "No changes in document"
msgstr ""
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr ""
@@ -17196,7 +17378,7 @@ msgstr ""
msgid "No file attached"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr ""
@@ -17244,11 +17426,11 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
@@ -17257,7 +17439,7 @@ msgstr ""
msgid "No permission to read {0}"
msgstr ""
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr ""
@@ -17273,7 +17455,7 @@ msgstr ""
msgid "No records tagged."
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr ""
@@ -17281,7 +17463,7 @@ msgstr ""
msgid "No rows"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17293,11 +17475,12 @@ msgstr ""
msgid "No template found at path: {0}"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr ""
@@ -17309,7 +17492,7 @@ msgstr ""
msgid "No {0} found"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
@@ -17318,7 +17501,7 @@ msgid "No {0} mail"
msgstr ""
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
@@ -17361,12 +17544,12 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr ""
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr ""
@@ -17408,7 +17591,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17417,7 +17600,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17426,8 +17609,8 @@ msgstr ""
msgid "Not Published"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17447,7 +17630,7 @@ msgstr ""
msgid "Not Sent"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr ""
@@ -17461,15 +17644,15 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr ""
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr ""
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr ""
@@ -17477,7 +17660,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17497,11 +17680,11 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr ""
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr ""
@@ -17514,11 +17697,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr ""
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17546,7 +17729,7 @@ msgstr ""
msgid "Note:"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17578,7 +17761,7 @@ msgstr ""
msgid "Notes:"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr ""
@@ -17590,8 +17773,8 @@ msgstr ""
msgid "Nothing left to undo"
msgstr ""
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17602,11 +17785,13 @@ msgid "Nothing to update"
msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr ""
@@ -17622,7 +17807,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr ""
@@ -17631,11 +17816,6 @@ msgstr ""
msgid "Notification Subscribed Document"
msgstr ""
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr ""
@@ -17653,13 +17833,15 @@ 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:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr ""
@@ -17895,7 +18077,7 @@ msgstr ""
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr ""
@@ -17935,7 +18117,7 @@ msgstr ""
msgid "Offset Y"
msgstr ""
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr ""
@@ -17943,7 +18125,7 @@ msgstr ""
msgid "Old Password"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr ""
@@ -18010,7 +18192,7 @@ msgstr ""
msgid "On or Before"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr ""
@@ -18054,7 +18236,7 @@ msgstr ""
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr ""
@@ -18070,11 +18252,11 @@ msgstr ""
msgid "One of"
msgstr ""
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr ""
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr ""
@@ -18095,7 +18277,7 @@ msgstr ""
msgid "Only Allow Edit For"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr ""
@@ -18118,11 +18300,11 @@ msgstr ""
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr ""
@@ -18165,7 +18347,7 @@ msgstr ""
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr ""
@@ -18188,8 +18370,8 @@ msgctxt "Access"
msgid "Open"
msgstr ""
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18225,6 +18407,10 @@ msgstr ""
msgid "Open Settings"
msgstr ""
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr ""
@@ -18239,7 +18425,7 @@ msgstr ""
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr ""
@@ -18251,11 +18437,11 @@ msgstr ""
msgid "Open in a new tab"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr ""
@@ -18270,16 +18456,16 @@ msgstr ""
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr ""
@@ -18311,7 +18497,7 @@ msgstr ""
msgid "Operator must be one of {0}"
msgstr ""
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18337,7 +18523,7 @@ msgstr ""
msgid "Option 3"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr ""
@@ -18371,7 +18557,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr ""
@@ -18380,7 +18566,7 @@ msgstr ""
msgid "Options Help"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
@@ -18388,7 +18574,7 @@ msgstr ""
msgid "Options for select. Each option on a new line."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr ""
@@ -18396,7 +18582,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr ""
@@ -18412,7 +18598,7 @@ msgstr ""
msgid "Order"
msgstr ""
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr ""
@@ -18432,8 +18618,12 @@ msgstr ""
msgid "Orientation"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr ""
@@ -18508,18 +18698,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr ""
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr ""
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr ""
@@ -18543,7 +18735,7 @@ msgstr ""
msgid "PDF Settings"
msgstr ""
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr ""
@@ -18551,11 +18743,11 @@ msgstr ""
msgid "PDF generation failed because of broken image links"
msgstr ""
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr ""
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
@@ -18714,7 +18906,7 @@ msgstr ""
msgid "Page has expired!"
msgstr ""
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
@@ -18730,7 +18922,7 @@ msgstr ""
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr ""
@@ -18741,7 +18933,7 @@ msgid "Parameter"
msgstr ""
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr ""
@@ -18774,11 +18966,11 @@ msgstr ""
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr ""
@@ -18792,7 +18984,7 @@ msgstr ""
msgid "Parent Label"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr ""
@@ -18817,11 +19009,11 @@ msgstr ""
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
@@ -18840,7 +19032,7 @@ msgstr ""
msgid "Partially Sent"
msgstr ""
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr ""
@@ -18877,11 +19069,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr ""
@@ -18890,7 +19082,7 @@ msgstr ""
msgid "Password Reset Link Generation Limit"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr ""
@@ -18919,11 +19111,11 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18935,7 +19127,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18997,7 +19189,7 @@ msgstr ""
msgid "Path to private Key File"
msgstr ""
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19082,15 +19274,15 @@ msgstr ""
msgid "Permanent"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr ""
@@ -19098,7 +19290,11 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr ""
@@ -19108,12 +19304,12 @@ msgid "Permission Inspector"
msgstr ""
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr ""
@@ -19122,11 +19318,6 @@ msgstr ""
msgid "Permission Log"
msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr ""
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19157,7 +19348,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19168,13 +19358,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr ""
@@ -19186,11 +19375,11 @@ msgstr ""
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr ""
@@ -19260,13 +19449,13 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr ""
@@ -19324,7 +19513,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr ""
@@ -19340,7 +19529,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19348,11 +19537,11 @@ msgstr ""
msgid "Please attach a file first."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
@@ -19364,11 +19553,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr ""
@@ -19400,7 +19589,7 @@ msgstr ""
msgid "Please confirm your action to {0} this document."
msgstr ""
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr ""
@@ -19430,10 +19619,10 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr ""
@@ -19446,7 +19635,7 @@ msgstr ""
msgid "Please enable {} before continuing."
msgstr ""
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr ""
@@ -19520,15 +19709,15 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr ""
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr ""
@@ -19544,7 +19733,7 @@ msgstr ""
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr ""
@@ -19564,7 +19753,7 @@ msgstr ""
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr ""
@@ -19572,7 +19761,7 @@ msgstr ""
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19622,11 +19811,11 @@ msgstr ""
msgid "Please set Email Address"
msgstr ""
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr ""
@@ -19634,7 +19823,7 @@ msgstr ""
msgid "Please set filters value in Report Filter table."
msgstr ""
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr ""
@@ -19654,7 +19843,7 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
@@ -19666,7 +19855,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19694,7 +19883,7 @@ msgstr ""
msgid "Please specify which value field must be checked"
msgstr ""
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr ""
@@ -19815,11 +20004,11 @@ msgstr ""
msgid "Precision"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr ""
@@ -19871,11 +20060,11 @@ msgstr ""
msgid "Prepared report render failed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr ""
@@ -19883,7 +20072,7 @@ msgstr ""
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr ""
@@ -19901,7 +20090,7 @@ msgstr ""
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr ""
@@ -19945,16 +20134,16 @@ msgstr ""
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr ""
@@ -20007,19 +20196,19 @@ msgstr ""
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr ""
@@ -20037,8 +20226,9 @@ msgstr ""
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20082,7 +20272,7 @@ msgstr ""
msgid "Print Format Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr ""
@@ -20115,11 +20305,11 @@ msgstr ""
msgid "Print Hide If No Value"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr ""
@@ -20132,8 +20322,8 @@ msgstr ""
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr ""
@@ -20172,7 +20362,7 @@ msgstr ""
msgid "Print Width of the field, if the field is a column in a table"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr ""
@@ -20181,11 +20371,11 @@ msgstr ""
msgid "Print with letterhead"
msgstr ""
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr ""
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr ""
@@ -20195,15 +20385,15 @@ msgstr ""
msgid "Printer Name"
msgstr ""
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr ""
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr ""
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr ""
@@ -20252,7 +20442,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr ""
@@ -20292,9 +20482,9 @@ msgid "Project"
msgstr ""
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr ""
@@ -20364,7 +20554,7 @@ msgstr ""
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr ""
@@ -20514,7 +20704,7 @@ msgstr ""
msgid "QR Code for Login Verification"
msgstr ""
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr ""
@@ -20576,7 +20766,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr ""
@@ -20597,7 +20787,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr ""
@@ -20638,7 +20828,7 @@ msgstr ""
msgid "Queues"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20730,6 +20920,15 @@ msgstr ""
msgid "Raw Email"
msgstr ""
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20738,7 +20937,7 @@ msgstr ""
msgid "Raw Printing"
msgstr ""
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr ""
@@ -20756,7 +20955,7 @@ msgstr ""
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr ""
@@ -20767,11 +20966,12 @@ msgstr ""
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -20808,7 +21008,7 @@ msgstr ""
msgid "Read Only Depends On (JS)"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
@@ -20848,7 +21048,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr ""
@@ -20890,7 +21090,7 @@ msgstr ""
msgid "Recent years are easy to guess."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr ""
@@ -20941,7 +21141,7 @@ msgstr ""
msgid "Records for following doctypes will be filtered"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr ""
@@ -21007,12 +21207,12 @@ msgstr ""
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr ""
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr ""
@@ -21228,12 +21428,12 @@ msgstr ""
msgid "Referrer"
msgstr ""
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21250,7 +21450,7 @@ msgstr ""
msgid "Refresh Google Sheet"
msgstr ""
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr ""
@@ -21265,7 +21465,7 @@ msgstr ""
msgid "Refresh Token"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr ""
@@ -21276,7 +21476,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr ""
@@ -21322,10 +21522,8 @@ msgstr ""
msgid "Relinked"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr ""
@@ -21337,7 +21535,7 @@ msgstr ""
msgid "Reload List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr ""
@@ -21356,7 +21554,7 @@ msgstr ""
msgid "Remind At"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr ""
@@ -21436,9 +21634,9 @@ msgid "Removed"
msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21466,7 +21664,7 @@ msgstr ""
msgid "Reopen"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr ""
@@ -21513,7 +21711,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr ""
@@ -21576,6 +21774,7 @@ msgstr ""
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21590,10 +21789,9 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr ""
@@ -21662,7 +21860,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr ""
@@ -21696,14 +21894,10 @@ msgstr ""
msgid "Report View"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr ""
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21714,7 +21908,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr ""
@@ -21726,7 +21920,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr ""
@@ -21734,12 +21928,12 @@ msgstr ""
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr ""
@@ -21762,7 +21956,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr ""
@@ -21770,7 +21964,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr ""
@@ -21829,13 +22023,13 @@ msgstr ""
msgid "Request Structure"
msgstr ""
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr ""
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr ""
@@ -21951,7 +22145,7 @@ msgstr ""
msgid "Reset sorting"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr ""
@@ -22009,7 +22203,7 @@ msgstr ""
msgid "Response Type"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr ""
@@ -22018,7 +22212,7 @@ msgstr ""
msgid "Restore"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr ""
@@ -22040,6 +22234,11 @@ msgstr ""
msgid "Restrict IP"
msgstr ""
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22067,8 +22266,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr ""
@@ -22115,9 +22314,15 @@ msgstr ""
msgid "Rich Text"
msgstr ""
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22152,8 +22357,6 @@ msgstr ""
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22168,8 +22371,7 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22213,7 +22415,7 @@ msgstr ""
msgid "Role Permissions Manager"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr ""
@@ -22221,11 +22423,9 @@ msgstr ""
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr ""
@@ -22247,7 +22447,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22366,20 +22566,20 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr ""
@@ -22406,7 +22606,7 @@ msgstr ""
msgid "Row Number"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr ""
@@ -22425,14 +22625,14 @@ msgstr ""
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr ""
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr ""
@@ -22455,7 +22655,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22535,7 +22735,7 @@ msgstr ""
msgid "SMS sent successfully"
msgstr ""
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr ""
@@ -22569,7 +22769,7 @@ msgstr ""
msgid "SQL Queries"
msgstr ""
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22641,22 +22841,23 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22669,7 +22870,7 @@ msgid "Save Anyway"
msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr ""
@@ -22677,7 +22878,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr ""
@@ -22695,20 +22896,20 @@ msgid "Save the document."
msgstr ""
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr ""
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr ""
@@ -22717,11 +22918,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr ""
@@ -22925,7 +23126,7 @@ msgstr ""
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -22945,7 +23146,7 @@ msgstr ""
msgid "Search Fields"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr ""
@@ -22963,7 +23164,7 @@ msgstr ""
msgid "Search by filename or extension"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr ""
@@ -22980,12 +23181,12 @@ msgstr ""
msgid "Search for anything"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr ""
@@ -23057,15 +23258,15 @@ msgstr ""
msgid "Security Settings"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr ""
@@ -23115,24 +23316,26 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23148,7 +23351,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr ""
@@ -23192,13 +23395,13 @@ msgstr ""
msgid "Select Document Type or Role to start."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr ""
@@ -23207,7 +23410,7 @@ msgstr ""
msgid "Select Field..."
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr ""
@@ -23216,19 +23419,19 @@ msgstr ""
msgid "Select Fields (Up to {0})"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr ""
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr ""
@@ -23253,16 +23456,16 @@ msgstr ""
msgid "Select List View"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr ""
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr ""
@@ -23272,7 +23475,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr ""
@@ -23308,12 +23511,6 @@ msgstr ""
msgid "Select Workspace"
msgstr ""
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr ""
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr ""
@@ -23330,11 +23527,11 @@ msgstr ""
msgid "Select a group {0} first."
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr ""
@@ -23360,13 +23557,13 @@ msgstr ""
msgid "Select atleast 2 actions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr ""
@@ -23400,7 +23597,7 @@ msgstr ""
msgid "Select {0}"
msgstr ""
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr ""
@@ -23430,6 +23627,11 @@ msgstr ""
msgid "Send Alert On"
msgstr ""
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23482,7 +23684,7 @@ msgstr ""
msgid "Send Print as PDF"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr ""
@@ -23545,7 +23747,7 @@ msgstr ""
msgid "Send login link"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr ""
@@ -23584,7 +23786,7 @@ msgstr ""
msgid "Sender Email Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr ""
@@ -23678,7 +23880,7 @@ msgstr ""
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr ""
@@ -23688,7 +23890,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23715,11 +23917,15 @@ msgstr ""
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr ""
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr ""
@@ -23747,16 +23953,14 @@ msgstr ""
msgid "Session Default Settings"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr ""
@@ -23797,7 +24001,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr ""
@@ -23823,7 +24027,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr ""
@@ -23866,8 +24070,8 @@ msgstr ""
msgid "Set Property After Alert"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr ""
@@ -23887,12 +24091,12 @@ msgstr ""
msgid "Set Value"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr ""
@@ -23996,8 +24200,8 @@ msgstr ""
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24020,11 +24224,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr ""
@@ -24032,12 +24236,12 @@ msgstr ""
msgid "Setup > User"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr ""
@@ -24066,13 +24270,14 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr ""
@@ -24080,7 +24285,7 @@ msgstr ""
msgid "Share this document with"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr ""
@@ -24140,16 +24345,10 @@ msgstr ""
msgid "Show Absolute Values"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr ""
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24195,7 +24394,7 @@ msgstr ""
msgid "Show External Link Warning"
msgstr ""
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
@@ -24247,7 +24446,7 @@ msgstr ""
msgid "Show Line Breaks after Sections"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr ""
@@ -24367,7 +24566,7 @@ msgstr ""
msgid "Show account deletion link in My Account page"
msgstr ""
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr ""
@@ -24509,7 +24708,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr ""
@@ -24632,7 +24831,7 @@ msgstr ""
msgid "Skipping column {0}"
msgstr ""
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
@@ -24807,15 +25006,15 @@ msgstr ""
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr ""
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr ""
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr ""
@@ -24846,13 +25045,13 @@ msgstr ""
msgid "Sort Order"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr ""
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -24901,7 +25100,7 @@ msgstr ""
msgid "Special Characters are not allowed"
msgstr ""
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr ""
@@ -24940,6 +25139,7 @@ msgstr ""
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -24947,6 +25147,7 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25014,8 +25215,8 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr ""
@@ -25187,7 +25388,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25225,7 +25426,7 @@ msgstr ""
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr ""
@@ -25339,7 +25540,7 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr ""
@@ -25353,7 +25554,7 @@ msgstr ""
msgid "Subject Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr ""
@@ -25374,14 +25575,14 @@ msgstr ""
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr ""
@@ -25411,7 +25612,7 @@ msgstr ""
msgid "Submit After Import"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr ""
@@ -25435,11 +25636,11 @@ msgstr ""
msgid "Submit this document to complete this step."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr ""
@@ -25465,7 +25666,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr ""
@@ -25500,12 +25701,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25547,7 +25748,7 @@ msgstr ""
msgid "Successful Job Count"
msgstr ""
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr ""
@@ -25572,7 +25773,7 @@ msgstr ""
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr ""
@@ -25597,7 +25798,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr ""
@@ -25638,7 +25839,7 @@ msgstr ""
msgid "Suspend Sending"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr ""
@@ -25651,7 +25852,7 @@ msgstr ""
msgid "Switch To Desk"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr ""
@@ -25720,9 +25921,7 @@ msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr ""
@@ -25732,7 +25931,7 @@ msgstr ""
msgid "System Console"
msgstr ""
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr ""
@@ -25859,6 +26058,7 @@ msgstr ""
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -25873,7 +26073,6 @@ msgstr ""
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -25949,6 +26148,11 @@ msgstr ""
msgid "System Settings"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -25965,6 +26169,12 @@ msgstr ""
msgid "TOS URI"
msgstr ""
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26000,7 +26210,7 @@ msgstr ""
msgid "Table Break"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr ""
@@ -26009,7 +26219,7 @@ msgstr ""
msgid "Table Fieldname"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr ""
@@ -26027,7 +26237,7 @@ msgstr ""
msgid "Table MultiSelect"
msgstr ""
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26035,11 +26245,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr ""
@@ -26059,17 +26269,17 @@ msgid "Tag Link"
msgstr ""
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr ""
@@ -26153,7 +26363,7 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr ""
@@ -26249,7 +26459,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26301,7 +26511,7 @@ msgid "The browser API key obtained from the Google Cloud Console under
Click here to download:
{0}
This link will expire in {1} hours."
msgstr ""
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26449,7 +26667,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26461,6 +26679,42 @@ msgstr ""
msgid "The total number of user document types limit has been crossed."
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+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 ""
@@ -26502,7 +26756,7 @@ msgstr ""
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr ""
@@ -26510,7 +26764,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:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26519,7 +26773,7 @@ msgstr ""
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr ""
@@ -26531,11 +26785,11 @@ msgstr ""
msgid "There is no data to be exported"
msgstr ""
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr ""
@@ -26543,7 +26797,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26559,7 +26813,7 @@ msgstr ""
msgid "There was an error saving filters"
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr ""
@@ -26567,11 +26821,11 @@ msgstr ""
msgid "There were errors while creating the document. Please try again."
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr ""
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr ""
@@ -26640,11 +26894,11 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26668,7 +26922,7 @@ msgstr ""
msgid "This doctype has no orphan fields to trim"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr ""
@@ -26684,15 +26938,15 @@ msgstr ""
msgid "This document has been modified after the email was sent."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26705,7 +26959,7 @@ 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:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr ""
@@ -26730,11 +26984,11 @@ msgstr ""
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr ""
@@ -26753,7 +27007,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26795,15 +27049,15 @@ msgstr ""
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr ""
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr ""
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26811,7 +27065,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr ""
@@ -26835,7 +27089,7 @@ msgstr ""
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr ""
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr ""
@@ -26877,9 +27131,9 @@ msgstr ""
#: frappe/core/doctype/prepared_report/prepared_report.js:68
#: 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 "Điều này sẽ kết thúc công việc ngay lập tức và có thể nguy hiểm, bạn có chắc chắn không?"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr ""
@@ -26910,6 +27164,7 @@ msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -26917,6 +27172,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26999,11 +27255,6 @@ msgstr ""
msgid "Timed Out"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
@@ -27035,11 +27286,11 @@ msgstr ""
msgid "Timeline Name"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr ""
@@ -27110,7 +27361,7 @@ msgstr ""
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27133,7 +27384,7 @@ msgstr ""
msgid "Title Prefix"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr ""
@@ -27219,7 +27470,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -27272,31 +27523,14 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr ""
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr ""
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr ""
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27332,7 +27566,7 @@ msgid "Tomorrow"
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr ""
@@ -27340,15 +27574,19 @@ msgstr ""
msgid "Too Many Requests"
msgstr ""
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr ""
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -27404,10 +27642,10 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr ""
@@ -27422,7 +27660,7 @@ msgstr ""
msgid "Total Errors (last 1 day)"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr ""
@@ -27522,7 +27760,7 @@ msgstr ""
msgid "Track milestones for any document"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
@@ -27558,7 +27796,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr ""
@@ -27569,7 +27807,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr ""
@@ -27605,7 +27843,7 @@ msgstr ""
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr ""
@@ -27654,8 +27892,8 @@ msgstr ""
msgid "Try a Naming Series"
msgstr ""
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr ""
@@ -27701,6 +27939,7 @@ msgstr ""
#. 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 'Event Notifications'
#. 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'
@@ -27714,6 +27953,7 @@ msgstr ""
#: 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/event_notifications/event_notifications.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
@@ -27722,7 +27962,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -27889,7 +28129,7 @@ msgstr ""
msgid "UUID"
msgstr ""
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr ""
@@ -27897,7 +28137,7 @@ msgstr ""
msgid "Unable to find DocType {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr ""
@@ -27913,7 +28153,7 @@ msgstr ""
msgid "Unable to read file format for {0}"
msgstr ""
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
@@ -27934,20 +28174,20 @@ msgstr ""
msgid "Uncaught Exception"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr ""
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr ""
@@ -28021,9 +28261,10 @@ msgstr ""
msgid "Unsafe SQL query"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr ""
@@ -28056,11 +28297,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28080,7 +28321,7 @@ msgstr ""
msgid "Unzipping files..."
msgstr ""
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr ""
@@ -28088,13 +28329,13 @@ msgstr ""
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr ""
@@ -28165,7 +28406,7 @@ msgstr ""
msgid "Update from Frappe Cloud"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr ""
@@ -28173,8 +28414,7 @@ msgstr ""
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr ""
@@ -28186,11 +28426,11 @@ msgstr ""
msgid "Updated To A New Version 🎉"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr ""
@@ -28215,11 +28455,11 @@ msgstr ""
msgid "Updating naming series options"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr ""
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr ""
@@ -28227,12 +28467,12 @@ msgstr ""
msgid "Updating {0} of {1}, {2}"
msgstr ""
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28280,6 +28520,7 @@ msgstr ""
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr ""
@@ -28351,7 +28592,7 @@ msgstr ""
msgid "Use of sub-query or function is restricted"
msgstr ""
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr ""
@@ -28385,9 +28626,8 @@ msgstr ""
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28414,11 +28654,11 @@ msgstr ""
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28554,7 +28794,7 @@ msgstr ""
msgid "User Invitation"
msgstr ""
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr ""
@@ -28570,19 +28810,19 @@ msgid "User Permission"
msgstr ""
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr ""
@@ -28655,7 +28895,7 @@ msgstr ""
msgid "User can login using Email id or User Name"
msgstr ""
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr ""
@@ -28689,27 +28929,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr ""
@@ -28718,11 +28958,11 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr ""
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr ""
@@ -28747,18 +28987,17 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr ""
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -28829,7 +29068,7 @@ msgstr ""
msgid "Validate SSL Certificate"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr ""
@@ -28858,7 +29097,7 @@ msgstr ""
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -28885,15 +29124,19 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28905,7 +29148,7 @@ msgstr ""
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr ""
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr ""
@@ -28930,7 +29173,13 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr ""
@@ -28947,7 +29196,7 @@ msgstr ""
msgid "Value {0} must in {1} format"
msgstr ""
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr ""
@@ -28956,11 +29205,11 @@ msgstr ""
msgid "Verdana"
msgstr ""
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr ""
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr ""
@@ -28968,7 +29217,7 @@ msgstr ""
msgid "Verification Link"
msgstr ""
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr ""
@@ -28982,7 +29231,7 @@ msgid "Verified"
msgstr ""
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr ""
@@ -29018,7 +29267,7 @@ msgstr ""
msgid "View All"
msgstr ""
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr ""
@@ -29030,7 +29279,7 @@ msgstr ""
msgid "View File"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr ""
@@ -29067,7 +29316,7 @@ msgstr ""
msgid "View Settings"
msgstr ""
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29076,14 +29325,11 @@ msgstr ""
msgid "View Switcher"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29099,7 +29345,7 @@ msgstr ""
msgid "View this in your browser"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr ""
@@ -29135,7 +29381,7 @@ msgstr ""
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr ""
@@ -29183,7 +29429,7 @@ msgstr ""
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr ""
@@ -29192,7 +29438,7 @@ msgstr ""
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr ""
@@ -29276,7 +29522,7 @@ msgstr ""
msgid "Web Page Block"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr ""
@@ -29373,7 +29619,7 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29428,7 +29674,7 @@ msgstr ""
msgid "Website Search Field"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr ""
@@ -29493,6 +29739,11 @@ msgstr ""
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29580,15 +29831,15 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr ""
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr ""
@@ -29610,10 +29861,6 @@ msgstr ""
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29631,7 +29878,7 @@ msgstr ""
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr ""
@@ -29752,6 +29999,10 @@ msgstr ""
msgid "Workflow Document State"
msgstr ""
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -29769,11 +30020,11 @@ msgstr ""
msgid "Workflow State Field"
msgstr ""
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr ""
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr ""
@@ -29781,7 +30032,7 @@ msgstr ""
msgid "Workflow States Don't Exist"
msgstr ""
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr ""
@@ -29816,18 +30067,15 @@ msgstr ""
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
@@ -29854,7 +30102,6 @@ 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 ""
@@ -29868,27 +30115,15 @@ msgstr ""
msgid "Workspace Quick List"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr ""
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr ""
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -29898,13 +30133,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr ""
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr ""
@@ -29933,11 +30162,12 @@ msgstr ""
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr ""
@@ -29955,7 +30185,7 @@ msgstr ""
msgid "XLSX"
msgstr ""
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -29970,7 +30200,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr ""
@@ -30018,10 +30248,14 @@ msgstr ""
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30030,10 +30264,10 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -30069,7 +30303,7 @@ msgstr ""
msgid "You added {0} rows to {1}"
msgstr ""
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr ""
@@ -30077,7 +30311,7 @@ msgstr ""
msgid "You are connected to internet."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr ""
@@ -30085,11 +30319,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -30112,7 +30346,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -30120,10 +30354,14 @@ msgstr ""
msgid "You are not allowed to print this report"
msgstr ""
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr ""
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -30140,7 +30378,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -30148,7 +30386,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -30161,7 +30399,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr ""
@@ -30185,10 +30423,6 @@ msgstr ""
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
@@ -30243,7 +30477,7 @@ msgstr ""
msgid "You can try changing the filters of your report."
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr ""
@@ -30273,6 +30507,10 @@ msgstr ""
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr ""
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr ""
@@ -30299,7 +30537,6 @@ msgid "You changed {0} to {1}"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr ""
@@ -30308,11 +30545,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr ""
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
@@ -30324,15 +30557,19 @@ msgstr ""
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr ""
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
@@ -30368,7 +30605,7 @@ msgstr ""
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
@@ -30388,7 +30625,7 @@ msgstr ""
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr ""
@@ -30397,7 +30634,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr ""
@@ -30413,12 +30649,12 @@ msgstr ""
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr ""
@@ -30426,7 +30662,7 @@ msgstr ""
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr ""
@@ -30458,7 +30694,7 @@ msgstr ""
msgid "You need to have \"Share\" permission"
msgstr ""
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr ""
@@ -30478,7 +30714,7 @@ msgstr ""
msgid "You need write permission on {0} {1} to rename"
msgstr ""
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
@@ -30525,7 +30761,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr ""
@@ -30602,7 +30838,7 @@ msgstr ""
msgid "Your exported report: {0}"
msgstr ""
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr ""
@@ -30644,7 +30880,7 @@ msgstr ""
msgid "Your session has expired, please login again to continue."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr ""
@@ -30666,7 +30902,7 @@ msgstr ""
msgid "[Action taken by {0}]"
msgstr ""
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr ""
@@ -30685,7 +30921,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -30708,7 +30944,7 @@ msgstr ""
msgid "cProfile Output"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr ""
@@ -30724,7 +30960,9 @@ msgid "canceled"
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr ""
@@ -30748,7 +30986,7 @@ msgid "cyan"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr ""
@@ -30806,7 +31044,7 @@ msgstr ""
msgid "descending"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr ""
@@ -30816,7 +31054,7 @@ msgstr ""
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr ""
@@ -30858,12 +31096,16 @@ msgstr ""
msgid "email"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr ""
@@ -30919,12 +31161,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr ""
@@ -30939,6 +31181,20 @@ msgstr ""
msgid "import"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
@@ -30978,16 +31234,11 @@ msgid "long"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr ""
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr ""
@@ -31006,15 +31257,15 @@ msgstr ""
msgid "mm/dd/yyyy"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr ""
@@ -31076,7 +31327,7 @@ msgstr ""
msgid "on_update_after_submit"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr ""
@@ -31149,7 +31400,7 @@ msgid "restored {0} as {1}"
msgstr ""
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr ""
@@ -31233,11 +31484,11 @@ msgstr ""
msgid "submit"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr ""
@@ -31263,7 +31514,7 @@ msgstr ""
#: frappe/templates/emails/download_data.html:9
msgid "to your browser"
-msgstr ""
+msgstr "đến trình duyệt của bạn"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
@@ -31335,11 +31586,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr ""
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr ""
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr ""
@@ -31375,11 +31628,11 @@ msgstr ""
msgid "{0}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr ""
@@ -31396,8 +31649,8 @@ msgstr ""
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr ""
@@ -31410,13 +31663,13 @@ msgid "{0} Chart"
msgstr ""
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr ""
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31450,11 +31703,11 @@ msgstr ""
msgid "{0} Map"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31462,7 +31715,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr ""
@@ -31475,11 +31728,11 @@ msgid "{0} Tree"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr ""
@@ -31541,7 +31794,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31570,16 +31823,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr ""
@@ -31596,11 +31852,19 @@ msgstr ""
msgid "{0} days ago"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
@@ -31625,7 +31889,7 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31646,7 +31910,11 @@ msgstr ""
msgid "{0} in row {1} cannot have both URL and child items"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr ""
@@ -31654,7 +31922,15 @@ msgstr ""
msgid "{0} is a not a valid zip file"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr ""
@@ -31662,6 +31938,15 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31671,22 +31956,36 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr ""
@@ -31699,10 +31998,14 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31719,12 +32022,12 @@ msgstr ""
msgid "{0} is not a valid Cron expression."
msgstr ""
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31732,23 +32035,23 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr ""
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31764,6 +32067,11 @@ msgstr ""
msgid "{0} is not an allowed role for {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr ""
@@ -31772,10 +32080,12 @@ msgstr ""
msgid "{0} is not like {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr ""
@@ -31784,36 +32094,50 @@ msgstr ""
msgid "{0} is now default print format for {1} doctype"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr ""
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr ""
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
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:142
msgid "{0} last edited this"
msgstr ""
@@ -31841,35 +32165,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31886,11 +32210,11 @@ msgid "{0} not allowed to be renamed"
msgstr ""
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
@@ -31919,7 +32243,7 @@ msgstr ""
msgid "{0} records deleted"
msgstr ""
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr ""
@@ -31944,7 +32268,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr ""
@@ -31958,7 +32282,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr ""
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr ""
@@ -31966,7 +32290,7 @@ msgstr ""
msgid "{0} self assigned this task: {1}"
msgstr ""
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr ""
@@ -32034,7 +32358,7 @@ msgstr ""
msgid "{0} weeks ago"
msgstr ""
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32046,7 +32370,7 @@ msgstr ""
msgid "{0} years ago"
msgstr ""
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr ""
@@ -32054,11 +32378,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -32070,11 +32394,11 @@ msgstr ""
msgid "{0} {1} does not exist, select a new target to merge"
msgstr ""
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr ""
@@ -32082,87 +32406,59 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr ""
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr ""
@@ -32170,15 +32466,59 @@ msgstr ""
msgid "{0}: Other permission rules may also apply"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr ""
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
@@ -32191,15 +32531,15 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr ""
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr ""
@@ -32219,11 +32559,11 @@ msgstr ""
msgid "{count} rows selected"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr ""
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr ""
diff --git a/frappe/locale/zh.po b/frappe/locale/zh.po
index 9d10289641..14451b26bc 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-12-21 09:35+0000\n"
-"PO-Revision-Date: 2025-12-24 20:23\n"
+"POT-Creation-Date: 2026-01-25 09:36+0000\n"
+"PO-Revision-Date: 2026-01-26 15:51\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr "“parent”表示本条记录必须依赖添加的父表"
msgid "\"Team Members\" or \"Management\""
msgstr "“团队成员”或“管理”"
-#: frappe/public/js/frappe/form/form.js:1093
+#: frappe/public/js/frappe/form/form.js:1122
msgid "\"amended_from\" field must be present to do an amendment."
msgstr "必须出现“modified_from”字段才能进行修改。"
@@ -66,7 +66,7 @@ msgstr "© Frappe科技有限公司及贡献者"
msgid "<head> HTML"
msgstr "<HEAD> HTML"
-#: frappe/database/query.py:2100
+#: frappe/database/query.py:2178
msgid "'*' is only allowed in {0} SQL function(s)"
msgstr ""
@@ -74,7 +74,7 @@ msgstr ""
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr "字段类型{1}的字段{0}不允许启用'全局搜索'"
-#: frappe/core/doctype/doctype/doctype.py:1369
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "'In Global Search' not allowed for type {0} in row {1}"
msgstr "行{1}中的类型{0}不允许“全局搜索”"
@@ -90,19 +90,19 @@ msgstr "行{1}中的类型{0}不允许选择“在列表视图中显示”"
msgid "'Recipients' not specified"
msgstr "'收件人'未指定"
-#: frappe/utils/__init__.py:268
+#: frappe/utils/__init__.py:259
msgid "'{0}' is not a valid IBAN"
msgstr "“{0}”不是有效的IBAN号码"
-#: frappe/utils/__init__.py:258
+#: frappe/utils/__init__.py:249
msgid "'{0}' is not a valid URL"
msgstr "'{0}' 不是有效的URL"
-#: frappe/core/doctype/doctype/doctype.py:1363
+#: frappe/core/doctype/doctype/doctype.py:1377
msgid "'{0}' not allowed for type {1} in row {2}"
msgstr "第{2}行类型{1}不允许使用'{0}'"
-#: frappe/public/js/frappe/data_import/data_exporter.js:302
+#: frappe/public/js/frappe/data_import/data_exporter.js:303
msgid "(Mandatory)"
msgstr "(必填项)"
@@ -140,7 +140,7 @@ msgstr ""
msgid "0 is highest"
msgstr "0是最高的"
-#: frappe/public/js/frappe/form/grid_row.js:892
+#: frappe/public/js/frappe/form/grid_row.js:891
msgid "1 = True & 0 = False"
msgstr "1=真 & 0=假"
@@ -159,7 +159,7 @@ msgstr "1天"
msgid "1 Google Calendar Event synced."
msgstr "已同步1个Google日历事件"
-#: frappe/public/js/frappe/views/reports/query_report.js:966
+#: frappe/public/js/frappe/views/reports/query_report.js:978
msgid "1 Report"
msgstr "1个报表"
@@ -190,7 +190,7 @@ msgstr "一个月前"
msgid "1 of 2"
msgstr "第1项/共2项"
-#: frappe/public/js/frappe/data_import/data_exporter.js:227
+#: frappe/public/js/frappe/data_import/data_exporter.js:228
msgid "1 record will be exported"
msgstr "将导出一笔记录"
@@ -774,7 +774,7 @@ msgstr ">"
msgid ">="
msgstr ">="
-#: frappe/core/doctype/doctype/doctype.py:1049
+#: frappe/core/doctype/doctype/doctype.py:1052
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr "文档类型名称应以字母开头,只能包含字母、数字、空格、下划线和连字符"
@@ -788,7 +788,7 @@ msgstr "Frappe Framework实例可作为OAuth客户端、资源服务器或授权
msgid "A download link with your data will be sent to the email address associated with your account."
msgstr "包含您数据的下载链接将发送至您账户关联的邮件地址。"
-#: frappe/custom/doctype/custom_field/custom_field.py:176
+#: frappe/custom/doctype/custom_field/custom_field.py:177
msgid "A field with the name {0} already exists in {1}"
msgstr "字段{0}已在{1}中存在"
@@ -1109,7 +1109,7 @@ msgstr "操作 / 网址路径"
msgid "Action Complete"
msgstr "操作完成"
-#: frappe/model/document.py:1941
+#: frappe/model/document.py:1940
msgid "Action Failed"
msgstr "操作失败"
@@ -1158,13 +1158,13 @@ msgstr "操作{0}在{2} {1}上失败。查看{3}"
#: 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.js:293
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/ui/page.html:41
-#: 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:853
+#: frappe/public/js/frappe/ui/page.html:63
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:865
msgid "Actions"
msgstr "操作"
@@ -1221,20 +1221,20 @@ msgstr "活动"
msgid "Activity Log"
msgstr "用户操作日志"
-#: frappe/core/page/permission_manager/permission_manager.js:532
+#: frappe/core/page/permission_manager/permission_manager.js:533
#: frappe/email/doctype/email_group/email_group.js:60
-#: frappe/public/js/frappe/form/grid_row.js:501
+#: frappe/public/js/frappe/form/grid_row.js:503
#: frappe/public/js/frappe/form/sidebar/assign_to.js:104
#: frappe/public/js/frappe/form/templates/set_sharing.html:82
-#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/list/bulk_operations.js:451
#: 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/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "添加"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Add / Remove Columns"
msgstr "添加/移除列"
@@ -1242,11 +1242,11 @@ msgstr "添加/移除列"
msgid "Add / Update"
msgstr "添加/更新"
-#: frappe/core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:493
msgid "Add A New Rule"
msgstr "创建新规则"
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
msgstr "添加附件"
@@ -1266,11 +1266,15 @@ msgstr "添加底部边框"
msgid "Add Border at Top"
msgstr "添加上方边框"
+#: frappe/public/js/frappe/views/communication.js:195
+msgid "Add CSS"
+msgstr ""
+
#: frappe/desk/doctype/number_card/number_card.js:37
msgid "Add Card to Dashboard"
msgstr "添加到仪表板"
-#: frappe/public/js/frappe/views/reports/query_report.js:210
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
msgstr "添加图表至数据面板"
@@ -1279,8 +1283,8 @@ msgid "Add Child"
msgstr "添加子项"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1862
-#: frappe/public/js/frappe/views/reports/query_report.js:1865
+#: frappe/public/js/frappe/views/reports/query_report.js:1937
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
#: frappe/public/js/frappe/views/reports/report_view.js:354
#: frappe/public/js/frappe/views/reports/report_view.js:379
#: frappe/public/js/print_format_builder/Field.vue:112
@@ -1324,11 +1328,7 @@ msgstr "添加分组"
msgid "Add Indexes"
msgstr "添加索引"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Multiple"
-msgstr "添加多行"
-
-#: frappe/core/page/permission_manager/permission_manager.js:495
+#: frappe/core/page/permission_manager/permission_manager.js:496
msgid "Add New Permission Rule"
msgstr "新建权限规则"
@@ -1341,17 +1341,13 @@ msgstr "添加参与者"
msgid "Add Query Parameters"
msgstr "添加查询参数"
-#: frappe/core/doctype/user/user.py:857
+#: frappe/core/doctype/user/user.py:860
msgid "Add Roles"
msgstr "添加角色"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Add Row"
-msgstr "添加一行"
-
#. Label of the add_signature (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
-#: frappe/public/js/frappe/views/communication.js:124
+#: frappe/public/js/frappe/views/communication.js:151
msgid "Add Signature"
msgstr "添加签名"
@@ -1370,16 +1366,16 @@ msgstr "顶部添加间距"
msgid "Add Subscribers"
msgstr "添加订阅者"
-#: frappe/public/js/frappe/list/bulk_operations.js:425
+#: frappe/public/js/frappe/list/bulk_operations.js:439
msgid "Add Tags"
msgstr "添加标签"
-#: frappe/public/js/frappe/list/list_view.js:2228
+#: frappe/public/js/frappe/list/list_view.js:2236
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr "添加标签"
-#: frappe/public/js/frappe/views/communication.js:424
+#: frappe/public/js/frappe/views/communication.js:483
msgid "Add Template"
msgstr "新建模板"
@@ -1429,19 +1425,19 @@ msgstr "添加评论"
msgid "Add a new section"
msgstr "添加新分区"
-#: frappe/public/js/frappe/form/form.js:194
+#: frappe/public/js/frappe/form/form.js:195
msgid "Add a row above the current row"
msgstr "在当前行上方插入行"
-#: frappe/public/js/frappe/form/form.js:206
+#: frappe/public/js/frappe/form/form.js:207
msgid "Add a row at the bottom"
msgstr "在底部添加行"
-#: frappe/public/js/frappe/form/form.js:202
+#: frappe/public/js/frappe/form/form.js:203
msgid "Add a row at the top"
msgstr "在顶部添加行"
-#: frappe/public/js/frappe/form/form.js:198
+#: frappe/public/js/frappe/form/form.js:199
msgid "Add a row below the current row"
msgstr "在当前行下方插入行"
@@ -1459,6 +1455,10 @@ msgstr "添加栏"
msgid "Add field"
msgstr "添加字段"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add multiple"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Sidebar.vue:46
#: frappe/public/js/form_builder/components/Tabs.vue:153
msgid "Add new tab"
@@ -1472,6 +1472,10 @@ msgstr ""
msgid "Add page break"
msgstr "添加分页符"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add row"
+msgstr ""
+
#: frappe/custom/doctype/client_script/client_script.js:18
msgid "Add script for Child Table"
msgstr "添加子表的脚本"
@@ -1490,7 +1494,7 @@ msgid "Add tab"
msgstr "添加页签"
#: frappe/public/js/frappe/utils/dashboard_utils.js:269
-#: frappe/public/js/frappe/views/reports/query_report.js:252
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
msgstr "添加到仪表板"
@@ -1530,8 +1534,8 @@ msgstr "在<head>在头部分区已添加HTML网页,主要用于网站
msgid "Added default log doctypes: {}"
msgstr "已添加默认日志文档类型: {}"
-#: frappe/public/js/frappe/form/link_selector.js:180
-#: frappe/public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:189
+#: frappe/public/js/frappe/form/link_selector.js:211
msgid "Added {0} ({1})"
msgstr "已添加{0}({1})"
@@ -1621,7 +1625,7 @@ msgstr "为文档类型添加自定义客户端脚本"
msgid "Adds a custom field to a DocType"
msgstr "为单据类型添加一个自定义字段"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:596
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566
msgid "Administration"
msgstr "系统管理"
@@ -1648,15 +1652,15 @@ msgstr "系统管理"
msgid "Administrator"
msgstr "管理员"
-#: frappe/core/doctype/user/user.py:1273
+#: frappe/core/doctype/user/user.py:1276
msgid "Administrator Logged In"
msgstr "管理员登录"
-#: frappe/core/doctype/user/user.py:1267
+#: frappe/core/doctype/user/user.py:1270
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "管理员访问{0}在{1}通过IP地址{2}。"
-#: frappe/desk/form/document_follow.py:52
+#: frappe/desk/form/document_follow.py:58
msgid "Administrator can't follow"
msgstr "管理员无法关注"
@@ -1673,8 +1677,8 @@ msgstr "高级"
msgid "Advanced Control"
msgstr "高级控制"
-#: frappe/public/js/frappe/form/controls/link.js:485
-#: frappe/public/js/frappe/form/controls/link.js:487
+#: frappe/public/js/frappe/form/controls/link.js:499
+#: frappe/public/js/frappe/form/controls/link.js:501
msgid "Advanced Search"
msgstr "高级搜索"
@@ -1755,7 +1759,7 @@ msgstr "创建仪表板图表需要聚合函数字段"
msgid "Alert"
msgstr "警报"
-#: frappe/database/query.py:2147
+#: frappe/database/query.py:2226
msgid "Alias must be a string"
msgstr "别名必须为字符串"
@@ -1779,6 +1783,15 @@ msgstr "右对齐"
msgid "Align Value"
msgstr "对齐方式"
+#. Label of the alignment (Select) field in DocType 'DocField'
+#. Label of the alignment (Select) field in DocType 'Custom Field'
+#. Label of the alignment (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 "Alignment"
+msgstr ""
+
#. Name of a role
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -1811,7 +1824,7 @@ msgstr "全部"
#. 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:439
+#: frappe/public/js/frappe/ui/notifications/notifications.js:448
msgid "All Day"
msgstr "全天"
@@ -1823,11 +1836,11 @@ msgstr "所有连接到网站幻灯片的图片应该是公开的"
msgid "All Records"
msgstr "所有记录"
-#: frappe/public/js/frappe/form/form.js:2240
+#: frappe/public/js/frappe/form/form.js:2271
msgid "All Submissions"
msgstr "所有提交"
-#: frappe/custom/doctype/customize_form/customize_form.js:452
+#: frappe/custom/doctype/customize_form/customize_form.js:462
msgid "All customizations will be removed. Please confirm."
msgstr "所有定制都将被删除,请确认"
@@ -2139,7 +2152,7 @@ msgstr "允许的角色"
msgid "Allowed embedding domains"
msgstr "允许的嵌入域名"
-#: frappe/public/js/frappe/form/form.js:1268
+#: frappe/public/js/frappe/form/form.js:1297
msgid "Allowing DocType, DocType. Be careful!"
msgstr "修改核心单据类型:DocType 。请格外小心!"
@@ -2173,13 +2186,61 @@ msgstr "允许客户端在查询/.well-known/oauth-protected-resource({0}状态)"
msgid "Cannot change state of Cancelled Document. Transition row {0}"
msgstr "不能改变已取消单据的状态。状态转换第{0}行"
-#: frappe/core/doctype/doctype/doctype.py:1168
+#: frappe/core/doctype/doctype/doctype.py:1171
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr "定制表单不支持修改自增编号"
@@ -4232,10 +4282,14 @@ msgstr "定制表单不支持修改自增编号"
msgid "Cannot create a {0} against a child document: {1}"
msgstr "无法创建{0}子单据:{1}"
-#: frappe/desk/doctype/workspace/workspace.py:303
+#: frappe/desk/doctype/workspace/workspace.py:282
msgid "Cannot create private workspace of other users"
msgstr "无法创建其他用户的私有工作空间"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:54
+msgid "Cannot delete Desktop Icon '{0}' as it is restricted"
+msgstr ""
+
#: frappe/core/doctype/file/file.py:175
msgid "Cannot delete Home and Attachments folders"
msgstr "无法删除主文件和附件文件夹"
@@ -4244,15 +4298,15 @@ msgstr "无法删除主文件和附件文件夹"
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
msgstr "由于{0} {1}与{2} {3} {4}关联,无法删除或取消"
-#: frappe/custom/doctype/customize_form/customize_form.js:369
+#: frappe/custom/doctype/customize_form/customize_form.js:379
msgid "Cannot delete standard action. You can hide it if you want"
msgstr "无法删除标准操作。您可以隐藏它"
-#: frappe/custom/doctype/customize_form/customize_form.js:391
+#: frappe/custom/doctype/customize_form/customize_form.js:401
msgid "Cannot delete standard document state."
msgstr "无法删除标准文档状态。"
-#: frappe/custom/doctype/customize_form/customize_form.js:321
+#: frappe/custom/doctype/customize_form/customize_form.js:331
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr "无法删除标准字段{0}。您可以隐藏它。"
@@ -4263,11 +4317,11 @@ msgstr "无法删除标准字段{0}。您可以隐藏它。"
msgid "Cannot delete standard field. You can hide it if you want"
msgstr "标准字段只能隐藏,不能删除"
-#: frappe/custom/doctype/customize_form/customize_form.js:347
+#: frappe/custom/doctype/customize_form/customize_form.js:357
msgid "Cannot delete standard link. You can hide it if you want"
msgstr "无法删除标准链接。您可以隐藏它"
-#: frappe/custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:323
msgid "Cannot delete system generated field {0}. You can hide it instead."
msgstr "无法删除系统生成字段{0}。您可以隐藏它。"
@@ -4295,7 +4349,7 @@ msgstr "无法编辑标准图表"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "不能编辑标准的报表。请复制并创建一个新的报表"
-#: frappe/model/document.py:1082
+#: frappe/model/document.py:1081
msgid "Cannot edit cancelled document"
msgstr "无法编辑已取消单据"
@@ -4308,7 +4362,7 @@ msgstr "无法编辑标准图表筛选器"
msgid "Cannot edit filters for standard number cards"
msgstr "无法编辑标准数字卡筛选器"
-#: frappe/client.py:170
+#: frappe/client.py:176
msgid "Cannot edit standard fields"
msgstr "不能编辑标准字段"
@@ -4324,15 +4378,15 @@ msgstr "无法在磁盘上找到文件{}"
msgid "Cannot get file contents of a Folder"
msgstr "无法获取文件夹内容"
-#: frappe/printing/page/print/print.js:909
+#: frappe/printing/page/print/print.js:923
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "不能将多个打印机映射到单个打印格式。"
-#: frappe/public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "Cannot import table with more than 5000 rows."
msgstr "无法导入超过5000行的表格。"
-#: frappe/model/document.py:1150
+#: frappe/model/document.py:1149
msgid "Cannot link cancelled document: {0}"
msgstr "不能链接到已取消单据{0}"
@@ -4344,7 +4398,7 @@ msgstr "无法对应,因为以下条件失败:"
msgid "Cannot match column {0} with any field"
msgstr "上传文件中的字段{0}无法匹配目标单据字段"
-#: frappe/public/js/frappe/form/grid_row.js:176
+#: frappe/public/js/frappe/form/grid_row.js:178
msgid "Cannot move row"
msgstr "不能移动行"
@@ -4369,7 +4423,7 @@ msgid "Cannot submit {0}."
msgstr "无法提交{0}。"
#: frappe/desk/doctype/bulk_update/bulk_update.js:26
-#: frappe/public/js/frappe/list/bulk_operations.js:366
+#: frappe/public/js/frappe/list/bulk_operations.js:378
msgid "Cannot update {0}"
msgstr "无法更新{0}"
@@ -4389,7 +4443,7 @@ msgstr "无法{0} {1}。"
msgid "Capitalization doesn't help very much."
msgstr "资本化不适用。"
-#: frappe/public/js/frappe/ui/capture.js:294
+#: frappe/public/js/frappe/ui/capture.js:295
msgid "Capture"
msgstr "捕获"
@@ -4403,7 +4457,7 @@ msgstr "卡片"
msgid "Card Break"
msgstr "卡片分隔"
-#: frappe/public/js/frappe/views/reports/query_report.js:262
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
msgstr "数字卡标题"
@@ -4432,17 +4486,19 @@ msgstr "类别说明"
msgid "Category Name"
msgstr "分类名称"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
msgstr "中心"
-#: frappe/core/page/permission_manager/permission_manager_help.html:16
-msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
-msgstr "某些单据,例如发票一旦进入最终状态(即“已提交”)就不能再更改。你可以限制可以提交的角色。"
-
#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
#: frappe/tests/test_translate.py:111
msgid "Change"
@@ -4531,7 +4587,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:289
+#: frappe/public/js/frappe/views/reports/query_report.js:290
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "图表名称"
@@ -4596,6 +4652,12 @@ msgstr "勾选列选择,拖动列排序。"
msgid "Check the Error Log for more information: {0}"
msgstr "查看错误日志获取更多信息:{0}"
+#. Description of the 'Evaluate as Expression' (Check) field in DocType
+#. 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Check this if the Update Value is a formula or expression (e.g. doc.amount * 2). Leave unchecked for plain text values."
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.js:147
msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it."
msgstr "勾选此项可禁止用户注册账户。除非明确授权,否则用户无法访问工作台。"
@@ -4647,7 +4709,7 @@ msgstr "子文档类型"
msgid "Child Item"
msgstr ""
-#: frappe/core/doctype/doctype/doctype.py:1661
+#: frappe/core/doctype/doctype/doctype.py:1675
msgid "Child Table {0} for field {1} must be virtual"
msgstr "字段{1}的子表{0}必须为虚拟表"
@@ -4657,7 +4719,7 @@ msgstr "字段{1}的子表{0}必须为虚拟表"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "嵌入其它单据类型中作为表格,一对多关系中的多这一方"
-#: frappe/database/query.py:1062
+#: frappe/database/query.py:1105
msgid "Child query fields for '{0}' must be a list or tuple."
msgstr "“{0}”的子查询字段必须为列表或元组。"
@@ -4665,7 +4727,7 @@ msgstr "“{0}”的子查询字段必须为列表或元组。"
msgid "Choose Existing Card or create New Card"
msgstr "选择已有卡或创建一个新卡"
-#: frappe/public/js/frappe/views/workspace/workspace.js:616
+#: frappe/public/js/frappe/views/workspace/workspace.js:665
msgid "Choose a block or continue typing"
msgstr "选择一个模板或输入文字"
@@ -4685,10 +4747,6 @@ msgstr "选择图标"
msgid "Choose authentication method to be used by all users"
msgstr "选择所有用户使用的身份验证方法"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:94
-msgid "Chromium is not downloaded. Please run the setup first."
-msgstr "Chromium未下载。请先运行安装程序。"
-
#. Label of the city (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -4705,11 +4763,11 @@ msgstr "市/镇"
msgid "Clear"
msgstr "清除"
-#: frappe/public/js/frappe/views/communication.js:429
+#: frappe/public/js/frappe/views/communication.js:488
msgid "Clear & Add Template"
msgstr "清空并添加模板"
-#: frappe/public/js/frappe/views/communication.js:105
+#: frappe/public/js/frappe/views/communication.js:112
msgid "Clear & Add template"
msgstr "清除并添加模板"
@@ -4717,7 +4775,7 @@ msgstr "清除并添加模板"
msgid "Clear All"
msgstr "清空全部"
-#: frappe/public/js/frappe/list/list_view.js:2189
+#: frappe/public/js/frappe/list/list_view.js:2197
msgctxt "Button in list view actions menu"
msgid "Clear Assignment"
msgstr "清除分配"
@@ -4743,7 +4801,7 @@ msgstr "日志保留天数"
msgid "Clear User Permissions"
msgstr "清除用户权限限制"
-#: frappe/public/js/frappe/views/communication.js:430
+#: frappe/public/js/frappe/views/communication.js:489
msgid "Clear the email message and add the template"
msgstr "模板内容覆盖邮件正文(消息)"
@@ -4811,7 +4869,7 @@ msgstr "点击设置动态筛选器"
msgid "Click to Set Filters"
msgstr "单击设置过滤条件"
-#: frappe/public/js/frappe/list/list_view.js:742
+#: frappe/public/js/frappe/list/list_view.js:745
msgid "Click to sort by {0}"
msgstr "点击按{0}排序"
@@ -4919,7 +4977,7 @@ msgstr "客户端脚本"
#: 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/public/js/frappe/ui/notifications/notifications.js:56
+#: frappe/public/js/frappe/ui/notifications/notifications.js:63
#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
msgstr "关闭"
@@ -4929,7 +4987,7 @@ msgstr "关闭"
msgid "Close Condition"
msgstr "关闭条件"
-#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+#: frappe/public/js/form_builder/components/FieldProperties.vue:96
msgid "Close properties"
msgstr "关闭属性"
@@ -4985,12 +5043,12 @@ msgstr "代码挑战方法"
msgid "Collapse"
msgstr "收起"
-#: frappe/public/js/frappe/form/controls/code.js:185
+#: frappe/public/js/frappe/form/controls/code.js:190
msgctxt "Shrink code field."
msgid "Collapse"
msgstr "折叠"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "全部折叠"
@@ -5047,7 +5105,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:1263
+#: frappe/public/js/frappe/views/reports/query_report.js:1275
#: frappe/public/js/frappe/widgets/widget_dialog.js:546
#: frappe/public/js/frappe/widgets/widget_dialog.js:694
#: frappe/website/doctype/color/color.json
@@ -5058,7 +5116,7 @@ msgstr "颜色"
#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
-#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:13
#: frappe/public/js/form_builder/components/Section.vue:270
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
msgid "Column"
@@ -5103,11 +5161,11 @@ msgstr "列名"
msgid "Column Name cannot be empty"
msgstr "列名不能为空"
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Column Width"
msgstr "列宽"
-#: frappe/public/js/frappe/form/grid_row.js:661
+#: frappe/public/js/frappe/form/grid_row.js:663
msgid "Column width cannot be zero."
msgstr "列宽不能为零。"
@@ -5150,7 +5208,7 @@ msgstr "Comm10E"
#. Name of a DocType
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/core/doctype/version/version_view.html:3
+#: frappe/core/doctype/version/version_view.html:52
#: frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/form/sidebar/assign_to.js:240
#: frappe/templates/includes/comments/comments.html:34
@@ -5297,12 +5355,12 @@ msgstr "完成"
msgid "Complete By"
msgstr "完成日期"
-#: frappe/core/doctype/user/user.py:517
+#: frappe/core/doctype/user/user.py:520
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "完成注册"
-#: frappe/public/js/frappe/ui/slides.js:355
+#: frappe/public/js/frappe/ui/slides.js:369
msgctxt "Finish the setup wizard"
msgid "Complete Setup"
msgstr "完成设置"
@@ -5317,7 +5375,7 @@ msgstr "完成设置"
#: 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:129
+#: frappe/utils/goal.py:128
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
msgstr "已完成"
@@ -5408,7 +5466,7 @@ msgstr "配置"
msgid "Configure Chart"
msgstr "配置图表"
-#: frappe/public/js/frappe/form/grid_row.js:406
+#: frappe/public/js/frappe/form/grid_row.js:408
msgid "Configure Columns"
msgstr "列设置"
@@ -5499,8 +5557,8 @@ msgstr "关联应用"
msgid "Connected User"
msgstr "已连接用户"
-#: frappe/public/js/frappe/form/print_utils.js:125
-#: frappe/public/js/frappe/form/print_utils.js:149
+#: frappe/public/js/frappe/form/print_utils.js:144
+#: frappe/public/js/frappe/form/print_utils.js:168
msgid "Connected to QZ Tray!"
msgstr "连接到QZ托盘!"
@@ -5618,7 +5676,7 @@ msgstr "包含{0}个安全修复"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/utils/utils.js:1897
+#: frappe/public/js/frappe/utils/utils.js:2028
#: 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
@@ -5687,11 +5745,11 @@ 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:1077
+#: frappe/public/js/frappe/utils/utils.js:1085
msgid "Copied to clipboard."
msgstr "复制到剪贴板。"
-#: frappe/public/js/frappe/list/list_view.js:2487
+#: frappe/public/js/frappe/list/list_view.js:2515
msgid "Copied {0} {1} to clipboard"
msgstr ""
@@ -5703,12 +5761,12 @@ msgstr "复制链接"
msgid "Copy embed code"
msgstr "复制嵌入代码"
-#: frappe/public/js/frappe/request.js:621
+#: frappe/public/js/frappe/request.js:619
msgid "Copy error to clipboard"
msgstr "将出错日志复制到剪贴板"
-#: frappe/public/js/frappe/form/toolbar.js:540
-#: frappe/public/js/frappe/list/list_view.js:2371
+#: frappe/public/js/frappe/form/toolbar.js:543
+#: frappe/public/js/frappe/list/list_view.js:2399
msgid "Copy to Clipboard"
msgstr "复制到剪贴板"
@@ -5729,7 +5787,7 @@ msgstr "不能定制系统核心单据类型。"
msgid "Core Modules {0} cannot be searched in Global Search."
msgstr "核心模块{0}无法在全局搜索中查找。"
-#: frappe/printing/page/print/print.js:679
+#: frappe/printing/page/print/print.js:687
msgid "Correct version :"
msgstr "正确版本:"
@@ -5737,7 +5795,7 @@ msgstr "正确版本:"
msgid "Could not connect to outgoing email server"
msgstr "无法连接到外发邮件服务器"
-#: frappe/model/document.py:1146
+#: frappe/model/document.py:1145
msgid "Could not find {0}"
msgstr "找不到{0}"
@@ -5745,11 +5803,11 @@ msgstr "找不到{0}"
msgid "Could not map column {0} to field {1}"
msgstr "无法映射列{0}到字段{1}"
-#: frappe/database/query.py:960
+#: frappe/database/query.py:1003
msgid "Could not parse field: {0}"
msgstr "无法解析字段:{0}"
-#: frappe/utils/pdf_generator/chrome_pdf_generator.py:199
+#: frappe/utils/pdf_generator/chrome_pdf_generator.py:165
msgid "Could not start Chromium. Check logs for details."
msgstr "无法启动Chromium。请查看日志获取详细信息。"
@@ -5757,7 +5815,7 @@ msgstr "无法启动Chromium。请查看日志获取详细信息。"
msgid "Could not start up:"
msgstr "无法启动:"
-#: frappe/public/js/frappe/web_form/web_form.js:383
+#: frappe/public/js/frappe/web_form/web_form.js:379
msgid "Couldn't save, please check the data you have entered"
msgstr "不能保存,请检查输入的数据"
@@ -5809,7 +5867,7 @@ msgstr "计数器"
msgid "Country"
msgstr "国家"
-#: frappe/utils/__init__.py:132
+#: frappe/utils/__init__.py:123
msgid "Country Code Required"
msgstr "需要国家代码"
@@ -5836,15 +5894,16 @@ msgstr "贷方"
#: 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/page/permission_manager/permission_manager_help.html:41
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:28
#: 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/list/list_filter.js:103
+#: frappe/public/js/frappe/list/list_filter.js:120
#: 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:1295
-#: frappe/public/js/frappe/views/workspace/workspace.js:483
+#: frappe/public/js/frappe/views/reports/query_report.js:1307
+#: frappe/public/js/frappe/views/workspace/workspace.js:531
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
msgstr "创建"
@@ -5857,13 +5916,13 @@ msgstr "创建并继续"
msgid "Create Address"
msgstr "创建地址"
-#: frappe/public/js/frappe/views/reports/query_report.js:187
-#: frappe/public/js/frappe/views/reports/query_report.js:232
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
msgstr "创建数字卡"
-#: frappe/public/js/frappe/views/reports/query_report.js:285
-#: frappe/public/js/frappe/views/reports/query_report.js:1222
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1234
msgid "Create Chart"
msgstr "创建图表"
@@ -5897,7 +5956,7 @@ msgstr "创建日志"
msgid "Create New"
msgstr "新建"
-#: frappe/public/js/frappe/list/list_view.js:515
+#: frappe/public/js/frappe/list/list_view.js:518
msgctxt "Create a new document from list view"
msgid "Create New"
msgstr "新建"
@@ -5910,7 +5969,7 @@ msgstr "创建新单据类型"
msgid "Create New Kanban Board"
msgstr "新建看板面板"
-#: frappe/public/js/frappe/list/list_filter.js:101
+#: frappe/public/js/frappe/list/list_filter.js:118
msgid "Create Saved Filter"
msgstr ""
@@ -5926,18 +5985,18 @@ msgstr "创建新格式"
msgid "Create a Reminder"
msgstr "创建提醒"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551
msgid "Create a new ..."
msgstr "新建..."
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:218
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
msgid "Create a new record"
msgstr "新建一笔记录"
-#: frappe/public/js/frappe/form/controls/link.js:461
-#: frappe/public/js/frappe/form/controls/link.js:463
-#: frappe/public/js/frappe/form/link_selector.js:139
-#: frappe/public/js/frappe/list/list_view.js:507
+#: frappe/public/js/frappe/form/controls/link.js:475
+#: frappe/public/js/frappe/form/controls/link.js:477
+#: frappe/public/js/frappe/form/link_selector.js:147
+#: frappe/public/js/frappe/list/list_view.js:510
#: frappe/public/js/frappe/web_form/web_form_list.js:226
msgid "Create a new {0}"
msgstr "新建{0}"
@@ -5954,7 +6013,7 @@ msgstr "创建或修改打印格式"
msgid "Create or Edit Workflow"
msgstr "创建或修改工作流"
-#: frappe/public/js/frappe/list/list_view.js:510
+#: frappe/public/js/frappe/list/list_view.js:513
msgid "Create your first {0}"
msgstr "新建 {0}"
@@ -5973,13 +6032,21 @@ msgstr "创建"
msgid "Created At"
msgstr "创建时间"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:811
+#: frappe/model/meta.py:58 frappe/public/js/frappe/list/base_list.js:810
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:39
#: frappe/public/js/frappe/model/meta.js:214
#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
msgstr "创建人"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+msgid "Created By You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:175
+msgid "Created By {0}"
+msgstr ""
+
#: frappe/workflow/doctype/workflow/workflow.py:65
msgid "Created Custom Field {0} in {1}"
msgstr "在{1}创建了自定义字段{0}"
@@ -6173,7 +6240,7 @@ msgstr "被授权链接的单据类型"
msgid "Custom Document Types Limit Exceeded"
msgstr "超出自定义文档类型限制"
-#: frappe/desk/desktop.py:524
+#: frappe/desk/desktop.py:510
msgid "Custom Documents"
msgstr "自定义文档"
@@ -6184,15 +6251,15 @@ msgstr "自定义文档"
msgid "Custom Field"
msgstr "自定义字段"
-#: frappe/custom/doctype/custom_field/custom_field.py:221
+#: frappe/custom/doctype/custom_field/custom_field.py:222
msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
msgstr "自定义字段{0}由管理员创建,仅能通过管理员账户删除。"
-#: frappe/custom/doctype/custom_field/custom_field.py:278
+#: frappe/custom/doctype/custom_field/custom_field.py:279
msgid "Custom Fields can only be added to a standard DocType."
msgstr "自定义字段只能添加到标准DocType。"
-#: frappe/custom/doctype/custom_field/custom_field.py:275
+#: frappe/custom/doctype/custom_field/custom_field.py:276
msgid "Custom Fields cannot be added to core DocTypes."
msgstr "自定义字段无法添加到核心DocType。"
@@ -6218,7 +6285,7 @@ msgid "Custom Group Search if filled needs to contain the user placeholder {0},
msgstr "若填写自定义群组搜索,需包含用户占位符{0},例如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/printing/page/print_format_builder/print_format_builder.js:762
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
msgstr "自定义HTML"
@@ -6264,7 +6331,7 @@ msgstr "自定义覆盖"
msgid "Custom Report"
msgstr "自定义报表"
-#: frappe/desk/desktop.py:525
+#: frappe/desk/desktop.py:511
msgid "Custom Reports"
msgstr "自定义报表"
@@ -6289,11 +6356,11 @@ msgstr "自定义工具栏菜单"
msgid "Custom Translation"
msgstr "翻译定制"
-#: frappe/custom/doctype/custom_field/custom_field.py:424
+#: frappe/custom/doctype/custom_field/custom_field.py:425
msgid "Custom field renamed to {0} successfully."
msgstr "已成功将自定义字段更名为{0}"
-#: frappe/api/v2.py:148
+#: frappe/api/v2.py:172
msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
msgstr "{0}的自定义get_list方法必须返回QueryBuilder对象或None,实际返回{1}"
@@ -6316,26 +6383,26 @@ msgstr "自定义?"
msgid "Customization"
msgstr "定制"
-#: frappe/public/js/frappe/views/workspace/workspace.js:372
+#: frappe/public/js/frappe/views/workspace/workspace.js:420
msgid "Customizations Discarded"
msgstr "已放弃自定义"
-#: frappe/custom/doctype/customize_form/customize_form.js:465
+#: frappe/custom/doctype/customize_form/customize_form.js:475
msgid "Customizations Reset"
msgstr "自定义重置"
-#: frappe/modules/utils.py:99
+#: frappe/modules/utils.py:121
msgid "Customizations for {0} exported to:
{1}"
msgstr "{0}的自定义已导出到:
{1}"
-#: frappe/printing/page/print/print.js:185
+#: frappe/printing/page/print/print.js:193
#: frappe/public/js/frappe/form/templates/print_layout.html:39
-#: frappe/public/js/frappe/form/toolbar.js:633
+#: frappe/public/js/frappe/form/toolbar.js:636
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
msgstr "定制"
-#: frappe/public/js/frappe/list/list_view.js:1950
+#: frappe/public/js/frappe/list/list_view.js:1958
msgctxt "Button in list view menu"
msgid "Customize"
msgstr "自定义"
@@ -6432,7 +6499,7 @@ msgstr "每天"
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
msgstr "如果设置了日历事件提醒会发送每日事件摘要。"
-#: frappe/desk/doctype/event/event.py:104
+#: frappe/desk/doctype/event/event.py:109
msgid "Daily Events should finish on the Same Day."
msgstr "每日事件应在同一天结束。"
@@ -6489,8 +6556,8 @@ msgstr "暗色主题"
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:606
-#: frappe/public/js/frappe/utils/utils.js:976
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/utils/utils.js:959
msgid "Dashboard"
msgstr "数据面板"
@@ -6740,7 +6807,7 @@ msgstr "参考日期前"
msgid "Days Before or After"
msgstr "天数(前或后)"
-#: frappe/public/js/frappe/request.js:252
+#: frappe/public/js/frappe/request.js:250
msgid "Deadlock Occurred"
msgstr "发生死锁"
@@ -6937,11 +7004,11 @@ msgstr "默认工作区"
msgid "Default display currency"
msgstr "默认显示货币"
-#: frappe/core/doctype/doctype/doctype.py:1391
+#: frappe/core/doctype/doctype/doctype.py:1405
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
msgstr "字段{0}的'复选框'类型默认值必须为'0'或'1'"
-#: frappe/core/doctype/doctype/doctype.py:1404
+#: frappe/core/doctype/doctype/doctype.py:1418
msgid "Default value for {0} must be in the list of options."
msgstr "{0}的默认值必须在选项列表中。"
@@ -6998,11 +7065,12 @@ msgstr "已逾期"
#: 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/core/page/permission_manager/permission_manager_help.html:46
#: frappe/public/js/frappe/form/footer/form_timeline.js:627
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1753
+#: frappe/public/js/frappe/form/toolbar.js:500
+#: frappe/public/js/frappe/views/reports/report_view.js:1754
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/public/js/frappe/web_form/web_form_list.js:283
#: frappe/templates/discussions/reply_card.html:35
@@ -7010,7 +7078,7 @@ msgstr "已逾期"
msgid "Delete"
msgstr "删除"
-#: frappe/public/js/frappe/list/list_view.js:2251
+#: frappe/public/js/frappe/list/list_view.js:2259
msgctxt "Button in list view actions menu"
msgid "Delete"
msgstr "删除"
@@ -7024,10 +7092,6 @@ msgstr "删除"
msgid "Delete Account"
msgstr "删除账户"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Delete All"
-msgstr "全部删除"
-
#. Label of the delete_background_exported_reports_after (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -7057,7 +7121,15 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "删除标签页"
-#: frappe/public/js/frappe/views/reports/query_report.js:947
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete all"
+msgstr "全部删除"
+
+#: frappe/public/js/frappe/form/grid.js:367
+msgid "Delete all {0} rows"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:959
msgid "Delete and Generate New"
msgstr "删除并生成新项"
@@ -7085,6 +7157,10 @@ msgctxt "Button text"
msgid "Delete entire tab with fields"
msgstr "删除包含字段的整个标签页"
+#: frappe/public/js/frappe/form/grid.js:237
+msgid "Delete row"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
@@ -7099,16 +7175,20 @@ msgstr "删除标签页"
msgid "Delete this record to allow sending to this email address"
msgstr "删除此记录允许发送此邮件地址"
-#: frappe/public/js/frappe/list/list_view.js:2256
+#: frappe/public/js/frappe/list/list_view.js:2264
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr "永久删除 {0} 项?"
-#: frappe/public/js/frappe/list/list_view.js:2262
+#: frappe/public/js/frappe/list/list_view.js:2270
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
msgstr "永久删除 {0} 项?"
+#: frappe/public/js/frappe/form/grid.js:240
+msgid "Delete {0} rows"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
@@ -7139,7 +7219,7 @@ msgstr "删除名称"
msgid "Deleted all documents successfully"
msgstr "已成功删除选择的单据"
-#: frappe/public/js/frappe/web_form/web_form.js:211
+#: frappe/public/js/frappe/web_form/web_form.js:207
msgid "Deleted!"
msgstr "已删除!"
@@ -7246,6 +7326,7 @@ msgstr "子节点(含本节点)"
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:20
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -7328,16 +7409,21 @@ msgstr "桌面主题"
msgid "Desk User"
msgstr "桌面用户"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
#: frappe/www/me.html:86
msgid "Desktop"
msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571
msgid "Desktop Icon"
msgstr "桌面图标"
+#. Name of a DocType
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Desktop Layout"
+msgstr ""
+
#. Name of a DocType
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Desktop Settings"
@@ -7367,11 +7453,11 @@ msgstr "详细信息"
msgid "Detect CSV type"
msgstr "检测CSV类型"
-#: frappe/core/page/permission_manager/permission_manager.js:544
+#: frappe/core/page/permission_manager/permission_manager.js:545
msgid "Did not add"
msgstr "没有添加"
-#: frappe/core/page/permission_manager/permission_manager.js:438
+#: frappe/core/page/permission_manager/permission_manager.js:439
msgid "Did not remove"
msgstr "没有删除"
@@ -7519,10 +7605,11 @@ msgstr "禁用"
msgid "Disabled Auto Reply"
msgstr "禁用自动回复"
-#: frappe/public/js/frappe/form/toolbar.js:371
+#: frappe/desk/page/desktop/desktop.html:62
+#: frappe/public/js/frappe/form/toolbar.js:392
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
-#: frappe/public/js/frappe/views/workspace/workspace.js:365
-#: frappe/public/js/frappe/web_form/web_form.js:193
+#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/web_form/web_form.js:189
msgid "Discard"
msgstr "丢弃"
@@ -7536,11 +7623,11 @@ msgctxt "Discard Email"
msgid "Discard"
msgstr "丢弃"
-#: frappe/public/js/frappe/form/form.js:851
+#: frappe/public/js/frappe/form/form.js:880
msgid "Discard {0}"
msgstr "放弃 {0}"
-#: frappe/public/js/frappe/web_form/web_form.js:190
+#: frappe/public/js/frappe/web_form/web_form.js:186
msgid "Discard?"
msgstr "确认放弃?"
@@ -7614,11 +7701,11 @@ msgstr "不创建新用户"
msgid "Do not create new user if user with email does not exist in the system"
msgstr "如果系统中不存在该邮箱用户,则不创建新用户"
-#: frappe/public/js/frappe/form/grid.js:1216
+#: frappe/public/js/frappe/form/grid.js:1253
msgid "Do not edit headers which are preset in the template"
msgstr "不要编辑模板中预设的标题"
-#: frappe/public/js/frappe/router.js:624
+#: frappe/public/js/frappe/router.js:629
msgid "Do not warn me again about {0}"
msgstr "不再就{0}向我发出警告"
@@ -7626,7 +7713,7 @@ msgstr "不再就{0}向我发出警告"
msgid "Do you still want to proceed?"
msgstr "是否继续?"
-#: frappe/public/js/frappe/form/form.js:961
+#: frappe/public/js/frappe/form/form.js:990
msgid "Do you want to cancel all linked documents?"
msgstr "取消所有关联的单据?"
@@ -7684,7 +7771,6 @@ msgstr "以下状态的文档状态已更改:
{0}
\n"
#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
#. Label of the doc_type (Link) field in DocType 'Property Setter'
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
@@ -7707,7 +7793,6 @@ msgstr "以下状态的文档状态已更改:
{0}
\n"
#: 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/desktop_icon/desktop_icon.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
@@ -7720,7 +7805,7 @@ msgstr "以下状态的文档状态已更改:
{0}
\n"
msgid "DocType"
msgstr "单据类型"
-#: frappe/core/doctype/doctype/doctype.py:1592
+#: frappe/core/doctype/doctype/doctype.py:1606
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
msgstr "字段 {1} 指定的DocType {0} 必须至少包含一个链接字段"
@@ -7788,10 +7873,6 @@ msgstr "单据类型在应用中里是一个表/表单。"
msgid "DocType must be Submittable for the selected Doc Event"
msgstr "DocType必须为所选Doc事件提交"
-#: frappe/client.py:406
-msgid "DocType must be a string"
-msgstr "文档类型必须为字符串"
-
#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr "文档类型必须至少包含一个字段"
@@ -7809,15 +7890,15 @@ msgstr "此工作流适用的单据类型。"
msgid "DocType required"
msgstr "需指定文档类型"
-#: frappe/modules/utils.py:178
+#: frappe/modules/utils.py:218
msgid "DocType {0} does not exist."
msgstr "文档类型 {0} 不存在"
-#: frappe/modules/utils.py:245
+#: frappe/modules/utils.py:288
msgid "DocType {} not found"
msgstr "未找到文档类型 {}"
-#: frappe/core/doctype/doctype/doctype.py:1043
+#: frappe/core/doctype/doctype/doctype.py:1046
msgid "DocType's name should not start or end with whitespace"
msgstr "文档类型名称首尾不可包含空格"
@@ -7831,7 +7912,7 @@ msgstr "文档类型不可修改,请使用 {0}"
msgid "Doctype"
msgstr "单据类型"
-#: frappe/core/doctype/doctype/doctype.py:1037
+#: frappe/core/doctype/doctype/doctype.py:1040
msgid "Doctype name is limited to {0} characters ({1})"
msgstr "文档类型名称长度限制为 {0} 字符(当前:{1})"
@@ -7870,7 +7951,7 @@ msgstr "单据操作"
msgid "Document Follow"
msgstr "关注单据"
-#: frappe/desk/form/document_follow.py:94
+#: frappe/desk/form/document_follow.py:100
msgid "Document Follow Notification"
msgstr "单据关注通知"
@@ -7893,19 +7974,19 @@ msgstr "单据关联"
msgid "Document Links"
msgstr "单据关联"
-#: frappe/core/doctype/doctype/doctype.py:1226
+#: frappe/core/doctype/doctype/doctype.py:1229
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr "文档链接第 #{0} 行:在 {2} 文档类型中未找到字段 {1}"
-#: frappe/core/doctype/doctype/doctype.py:1246
+#: frappe/core/doctype/doctype/doctype.py:1249
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr "文档链接第 #{0} 行:无效的文档类型或字段名"
-#: frappe/core/doctype/doctype/doctype.py:1209
+#: frappe/core/doctype/doctype/doctype.py:1212
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr "文档链接第 #{0} 行:内部链接必须指定父文档类型"
-#: frappe/core/doctype/doctype/doctype.py:1215
+#: frappe/core/doctype/doctype/doctype.py:1218
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr "文档链接第 #{0} 行:内部链接必须指定表字段名"
@@ -7924,9 +8005,9 @@ msgstr "文档链接第 #{0} 行:内部链接必须指定表字段名"
msgid "Document Name"
msgstr "单据编号"
-#: frappe/client.py:409
-msgid "Document Name must be a string"
-msgstr "文档名称必须为字符串"
+#: frappe/client.py:420
+msgid "Document Name must not be empty"
+msgstr ""
#. Name of a DocType
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
@@ -7943,7 +8024,7 @@ msgstr "单据编号规则条件"
msgid "Document Naming Settings"
msgstr "单据编号模板设置"
-#: frappe/model/document.py:512
+#: frappe/model/document.py:511
msgid "Document Queued"
msgstr "单据排队"
@@ -8047,7 +8128,7 @@ msgstr "文档标题"
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
#: frappe/core/page/permission_manager/permission_manager.js:49
#: frappe/core/page/permission_manager/permission_manager.js:218
-#: frappe/core/page/permission_manager/permission_manager.js:499
+#: frappe/core/page/permission_manager/permission_manager.js:500
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
@@ -8067,11 +8148,11 @@ msgstr "单据类型"
msgid "Document Type and Function are required to create a number card"
msgstr "创建数字卡片需指定文档类型和功能"
-#: frappe/permissions.py:152
+#: frappe/permissions.py:158
msgid "Document Type is not importable"
msgstr "凭证类型不可导入"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:154
msgid "Document Type is not submittable"
msgstr "单据类型不可提交"
@@ -8100,27 +8181,27 @@ msgid "Document Types and Permissions"
msgstr "单据类型与权限"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:2012
+#: frappe/model/document.py:2011
msgid "Document Unlocked"
msgstr "文档已解锁"
-#: frappe/database/query.py:541
+#: frappe/database/query.py:554
msgid "Document cannot be used as a filter value"
msgstr ""
-#: frappe/desk/form/document_follow.py:56
+#: frappe/desk/form/document_follow.py:62
msgid "Document follow is not enabled for this user."
msgstr "该用户未启用文档关注功能"
-#: frappe/public/js/frappe/list/list_view.js:1310
+#: frappe/public/js/frappe/list/list_view.js:1318
msgid "Document has been cancelled"
msgstr "文档已取消"
-#: frappe/public/js/frappe/list/list_view.js:1309
+#: frappe/public/js/frappe/list/list_view.js:1317
msgid "Document has been submitted"
msgstr "文档已提交"
-#: frappe/public/js/frappe/list/list_view.js:1308
+#: frappe/public/js/frappe/list/list_view.js:1316
msgid "Document is in draft state"
msgstr "文档处于草稿状态"
@@ -8132,11 +8213,11 @@ msgstr "只有具有角色的用户才能编辑文档"
msgid "Document not Relinked"
msgstr "文档未重新链接"
-#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:166
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:165
msgid "Document renamed from {0} to {1}"
msgstr "已将单据编号(名称){0} 变更为 {1}"
-#: frappe/public/js/frappe/form/toolbar.js:175
+#: frappe/public/js/frappe/form/toolbar.js:174
msgid "Document renaming from {0} to {1} has been queued"
msgstr "文档重命名(从 {0} 到 {1})已加入队列"
@@ -8152,10 +8233,6 @@ msgstr "文档 {0} 已恢复"
msgid "Document {0} has been set to state {1} by {2}"
msgstr "单据{0}已被{2}设置为状态{1}"
-#: frappe/client.py:433
-msgid "Document {0} {1} does not exist"
-msgstr "文档 {0} {1} 不存在"
-
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
@@ -8293,7 +8370,7 @@ msgstr "下载链接"
msgid "Download PDF"
msgstr "下载PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:843
+#: frappe/public/js/frappe/views/reports/query_report.js:855
msgid "Download Report"
msgstr "下载报表"
@@ -8377,7 +8454,7 @@ msgid "Due Date Based On"
msgstr "到期日基于"
#: frappe/public/js/frappe/form/grid_row_form.js:44
-#: frappe/public/js/frappe/form/toolbar.js:455
+#: frappe/public/js/frappe/form/toolbar.js:445
msgid "Duplicate"
msgstr "复制"
@@ -8385,19 +8462,15 @@ msgstr "复制"
msgid "Duplicate Entry"
msgstr "重复记录"
-#: frappe/public/js/frappe/list/list_filter.js:120
+#: frappe/public/js/frappe/list/list_filter.js:137
msgid "Duplicate Filter Name"
msgstr "过滤条件名称重复"
-#: frappe/model/base_document.py:764 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:769 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "名称重复"
-#: frappe/public/js/frappe/form/grid.js:66
-msgid "Duplicate Row"
-msgstr "重复行"
-
-#: frappe/public/js/frappe/form/form.js:210
+#: frappe/public/js/frappe/form/form.js:211
msgid "Duplicate current row"
msgstr "复制当前行"
@@ -8405,6 +8478,18 @@ msgstr "复制当前行"
msgid "Duplicate field"
msgstr "复制字段"
+#: frappe/public/js/frappe/form/grid.js:238
+msgid "Duplicate row"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Duplicate rows"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:241
+msgid "Duplicate {0} rows"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
#. Label of the duration (Float) field in DocType 'Recorder Query'
@@ -8492,9 +8577,10 @@ msgstr "退出"
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
-#: frappe/public/js/frappe/form/toolbar.js:781
-#: frappe/public/js/frappe/views/reports/query_report.js:891
-#: frappe/public/js/frappe/views/reports/query_report.js:1813
+#: frappe/public/js/frappe/form/toolbar.js:214
+#: frappe/public/js/frappe/form/toolbar.js:784
+#: frappe/public/js/frappe/views/reports/query_report.js:903
+#: frappe/public/js/frappe/views/reports/query_report.js:1889
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
#: frappe/public/js/frappe/widgets/number_card_widget.js:359
@@ -8505,7 +8591,7 @@ msgstr "退出"
msgid "Edit"
msgstr "编辑"
-#: frappe/public/js/frappe/list/list_view.js:2337
+#: frappe/public/js/frappe/list/list_view.js:2345
msgctxt "Button in list view actions menu"
msgid "Edit"
msgstr "编辑"
@@ -8515,7 +8601,7 @@ msgctxt "Button in web form"
msgid "Edit"
msgstr "编辑"
-#: frappe/public/js/frappe/form/grid_row.js:350
+#: frappe/public/js/frappe/form/grid_row.js:352
msgctxt "Edit grid row"
msgid "Edit"
msgstr "编辑"
@@ -8536,15 +8622,15 @@ msgstr "编辑图表"
msgid "Edit Custom Block"
msgstr "编辑自定义块"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:727
+#: frappe/printing/page/print_format_builder/print_format_builder.js:761
msgid "Edit Custom HTML"
msgstr "编辑自定义HTML"
-#: frappe/public/js/frappe/form/toolbar.js:652
+#: frappe/public/js/frappe/form/toolbar.js:655
msgid "Edit DocType"
msgstr "修改单据类型"
-#: frappe/public/js/frappe/list/list_view.js:1969
+#: frappe/public/js/frappe/list/list_view.js:1977
msgctxt "Button in list view menu"
msgid "Edit DocType"
msgstr "编辑文档类型"
@@ -8558,7 +8644,7 @@ msgstr "编辑"
msgid "Edit Filters"
msgstr "编辑过滤条件"
-#: frappe/public/js/frappe/list/list_view.js:1976
+#: frappe/public/js/frappe/list/list_view.js:1984
msgctxt "Edit filters of List View"
msgid "Edit Filters"
msgstr "编辑过滤条件"
@@ -8571,7 +8657,7 @@ msgstr "编辑页脚"
msgid "Edit Format"
msgstr "编辑格式"
-#: frappe/public/js/frappe/form/quick_entry.js:326
+#: frappe/public/js/frappe/form/quick_entry.js:349
msgid "Edit Full Form"
msgstr "全屏编辑"
@@ -8629,7 +8715,7 @@ msgstr "编辑快速列表"
msgid "Edit Shortcut"
msgstr "编辑快捷方式"
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:29
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:21
msgid "Edit Sidebar"
msgstr ""
@@ -8652,11 +8738,11 @@ msgstr "编辑模式"
msgid "Edit the {0} Doctype"
msgstr "编辑 {0} 文档类型"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:721
+#: frappe/printing/page/print_format_builder/print_format_builder.js:755
msgid "Edit to add content"
msgstr "编辑 添加内容"
-#: frappe/public/js/frappe/web_form/web_form.js:470
+#: frappe/public/js/frappe/web_form/web_form.js:466
msgctxt "Button in web form"
msgid "Edit your response"
msgstr "编辑您的回复"
@@ -8712,6 +8798,7 @@ msgstr "元素选择器"
#. Label of the email_settings (Section Break) field in DocType 'User'
#. Label of the email (Check) field in DocType 'User Document Type'
#. Label of the email (Data) field in DocType 'User Invitation'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. 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'
@@ -8727,12 +8814,14 @@ msgstr "元素选择器"
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/core/doctype/user_invitation/user_invitation.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:56
+#: frappe/desk/doctype/event_notifications/event_notifications.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:415
+#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/templates/includes/comments/comments.html:25
#: frappe/templates/signup.html:9
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -8767,7 +8856,7 @@ msgstr "电子邮件账户已禁用"
msgid "Email Account Name"
msgstr "电子邮箱帐号名"
-#: frappe/core/doctype/user/user.py:787
+#: frappe/core/doctype/user/user.py:790
msgid "Email Account added multiple times"
msgstr "电子邮箱帐号已被多次添加"
@@ -8965,7 +9054,7 @@ msgstr "电子邮件已被移至垃圾桶"
msgid "Email is mandatory to create User Email"
msgstr "创建用户电子邮件时必须填写邮箱地址"
-#: frappe/public/js/frappe/views/communication.js:813
+#: frappe/public/js/frappe/views/communication.js:882
msgid "Email not sent to {0} (unsubscribed / disabled)"
msgstr "电子邮件不会被发送到{0}(退订/禁用)"
@@ -9004,7 +9093,7 @@ msgstr "系统自动发送带审批操作按钮及单据pdf附件的电子邮件
msgid "Embed code copied"
msgstr "嵌入代码已复制"
-#: frappe/database/query.py:2151
+#: frappe/database/query.py:2230
msgid "Empty alias is not allowed"
msgstr "不允许使用空别名"
@@ -9012,7 +9101,7 @@ msgstr "不允许使用空别名"
msgid "Empty column"
msgstr "空栏"
-#: frappe/database/query.py:2094
+#: frappe/database/query.py:2172
msgid "Empty string arguments are not allowed"
msgstr "不允许使用空字符串参数"
@@ -9332,11 +9421,11 @@ msgstr "确保用户和组搜索路径正确。"
msgid "Enter Client Id and Client Secret in Google Settings."
msgstr "在Google设置中输入客户端ID和客户端密钥。"
-#: frappe/templates/includes/login/login.js:351
+#: frappe/templates/includes/login/login.js:350
msgid "Enter Code displayed in OTP App."
msgstr "输入OTP应用中显示的验证码。"
-#: frappe/public/js/frappe/views/communication.js:768
+#: frappe/public/js/frappe/views/communication.js:835
msgid "Enter Email Recipient(s) in the To, CC, or BCC fields"
msgstr ""
@@ -9363,6 +9452,10 @@ msgstr "输入默认值字段(键)和值。如果为字段添加多个值,
msgid "Enter folder name"
msgstr "输入文件夹名称"
+#: frappe/public/js/form_builder/components/FieldProperties.vue:65
+msgid "Enter list of Options, each on a new line."
+msgstr ""
+
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
@@ -9393,7 +9486,7 @@ msgstr "实体名称"
msgid "Entity Type"
msgstr "实体类型"
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
msgstr "等于"
@@ -9427,7 +9520,7 @@ msgstr "等于"
msgid "Error"
msgstr "错误"
-#: frappe/public/js/frappe/web_form/web_form.js:264
+#: frappe/public/js/frappe/web_form/web_form.js:260
msgctxt "Title of error message in web form"
msgid "Error"
msgstr "错误"
@@ -9442,12 +9535,12 @@ msgstr "错误日志"
msgid "Error Logs"
msgstr "错误日志"
-#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#. Label of the error_message (Code) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
msgstr "错误信息"
-#: frappe/public/js/frappe/form/print_utils.js:156
+#: frappe/public/js/frappe/form/print_utils.js:175
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托盘 。
单击此处以了解有关原始印刷的更多信息 。"
@@ -9485,15 +9578,15 @@ msgstr "通知错误"
msgid "Error in print format on line {0}: {1}"
msgstr "打印格式第{0}行错误:{1}"
-#: frappe/api/v2.py:156
+#: frappe/api/v2.py:180
msgid "Error in {0}.get_list: {1}"
msgstr "{0}.get_list中发生错误:{1}"
-#: frappe/database/query.py:437
+#: frappe/database/query.py:440
msgid "Error parsing nested filters: {0}. {1}"
msgstr ""
-#: frappe/desk/search.py:248
+#: frappe/desk/search.py:255
msgid "Error validating \"Ignore User Permissions\""
msgstr ""
@@ -9509,15 +9602,15 @@ msgstr "评估通知{0}时出错。请修复您的模板。"
msgid "Error {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:904
+#: frappe/model/base_document.py:923
msgid "Error: Data missing in table {0}"
msgstr "错误:表{0}中数据缺失"
-#: frappe/model/base_document.py:914
+#: frappe/model/base_document.py:933
msgid "Error: Value missing for {0}: {1}"
msgstr "错误:{0} 请填写必填字段:{1}"
-#: frappe/model/base_document.py:908
+#: frappe/model/base_document.py:927
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "错误:{0} 行#{1}:缺少值:{2}"
@@ -9527,6 +9620,12 @@ msgstr "错误:{0} 行#{1}:缺少值:{2}"
msgid "Errors"
msgstr "错误集"
+#. Label of the evaluate_as_expression (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Evaluate as Expression"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
@@ -9545,6 +9644,11 @@ msgstr "活动类别"
msgid "Event Frequency"
msgstr "事件频率"
+#. Name of a DocType
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Event Notifications"
+msgstr ""
+
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
@@ -9570,11 +9674,11 @@ msgstr "事件已与Google日历同步。"
msgid "Event Type"
msgstr "事件类型"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:67
+#: frappe/public/js/frappe/ui/notifications/notifications.js:74
msgid "Events"
msgstr "事件"
-#: frappe/desk/doctype/event/event.py:278
+#: frappe/desk/doctype/event/event.py:328
msgid "Events in Today's Calendar"
msgstr "今日历中的活动"
@@ -9596,6 +9700,7 @@ msgid "Exact Copies"
msgstr "总查询次数"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/core/page/permission_manager/permission_manager_help.html:21
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
msgstr "例如"
@@ -9666,7 +9771,7 @@ msgstr "执行代码"
msgid "Executing..."
msgstr "正在执行..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2162
+#: frappe/public/js/frappe/views/reports/query_report.js:2249
msgid "Execution Time: {0} sec"
msgstr "运行时间:{0}秒"
@@ -9687,21 +9792,21 @@ msgstr "现有角色"
msgid "Expand"
msgstr "展开"
-#: frappe/public/js/frappe/form/controls/code.js:186
+#: frappe/public/js/frappe/form/controls/code.js:191
msgctxt "Enlarge code field."
msgid "Expand"
msgstr "展开"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "全部展开"
-#: frappe/database/query.py:684
+#: frappe/database/query.py:706
msgid "Expected 'and' or 'or' operator, found: {0}"
msgstr "期望“and”或“or”运算符,实际发现:{0}"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "Experimental"
msgstr "实验中功能"
@@ -9753,20 +9858,21 @@ msgstr "QR码图像页面的到期时间"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:37
+#: frappe/core/page/permission_manager/permission_manager_help.html:66
#: 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:1850
-#: frappe/public/js/frappe/views/reports/report_view.js:1633
+#: frappe/public/js/frappe/data_import/data_exporter.js:244
+#: frappe/public/js/frappe/views/reports/query_report.js:1925
+#: frappe/public/js/frappe/views/reports/report_view.js:1634
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "导出"
-#: frappe/public/js/frappe/list/list_view.js:2359
+#: frappe/public/js/frappe/list/list_view.js:2387
msgctxt "Button in list view actions menu"
msgid "Export"
msgstr "导出"
-#: frappe/public/js/frappe/data_import/data_exporter.js:245
+#: frappe/public/js/frappe/data_import/data_exporter.js:246
msgid "Export 1 record"
msgstr "导出 1 笔记录"
@@ -9805,11 +9911,11 @@ msgstr "导出报告:{0}"
msgid "Export Type"
msgstr "导出类型"
-#: frappe/public/js/frappe/views/reports/report_view.js:1644
+#: frappe/public/js/frappe/views/reports/report_view.js:1645
msgid "Export all matching rows?"
msgstr "导入满足筛选条件的所有记录?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1654
+#: frappe/public/js/frappe/views/reports/report_view.js:1655
msgid "Export all {0} rows?"
msgstr "导出全部{0}行?"
@@ -9825,6 +9931,10 @@ msgstr "后台导出"
msgid "Export not allowed. You need {0} role to export."
msgstr "不允许导出,您没有{0}的角色。"
+#: frappe/custom/doctype/customize_form/customize_form.js:272
+msgid "Export only customizations assigned to the selected module.
Note: You must set the Module (for export) field on Custom Field and Property Setter records before applying this filter. Warning: Customizations from other modules will be excluded.
"
+msgstr ""
+
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
@@ -9837,7 +9947,7 @@ msgstr "导出不含标题说明和列描述的数据"
msgid "Export without main header"
msgstr "无主标题导出"
-#: frappe/public/js/frappe/data_import/data_exporter.js:247
+#: frappe/public/js/frappe/data_import/data_exporter.js:248
msgid "Export {0} records"
msgstr "导出 {0} 笔记录"
@@ -9877,7 +9987,7 @@ 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:440
+#: frappe/public/js/frappe/views/workspace/workspace.js:488
msgid "External Link"
msgstr "外部链接"
@@ -9926,12 +10036,17 @@ msgstr "失败任务数量"
msgid "Failed Jobs"
msgstr "失败任务"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Failed Login Attempts"
+msgstr ""
+
#. Label of the failed_logins (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failed Logins (Last 30 days)"
msgstr "登录失败(最近30天)"
-#: frappe/model/workflow.py:362
+#: frappe/model/workflow.py:383
msgid "Failed Transactions"
msgstr "失败事务"
@@ -9994,7 +10109,7 @@ msgstr "无法生成序列预览"
msgid "Failed to get method for command {0} with {1}"
msgstr "无法获取命令{0}的方法(参数{1})"
-#: frappe/api/v2.py:46
+#: frappe/api/v2.py:61
msgid "Failed to get method {0} with {1}"
msgstr "无法获取方法{0}(参数{1})"
@@ -10006,7 +10121,7 @@ msgstr "获取站点信息失败"
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr "导入虚拟文档类型{}失败,控制器文件是否存在?"
-#: frappe/utils/image.py:75
+#: frappe/utils/image.py:70
msgid "Failed to optimize image: {0}"
msgstr "图像优化失败:{0}"
@@ -10022,7 +10137,7 @@ msgstr "主题渲染失败:{}"
msgid "Failed to request login to Frappe Cloud"
msgstr "请求登录Frappe云失败"
-#: frappe/email/doctype/email_queue/email_queue.py:300
+#: frappe/email/doctype/email_queue/email_queue.py:301
msgid "Failed to send email with subject:"
msgstr "邮件发送失败,邮件标题:"
@@ -10064,7 +10179,7 @@ msgstr "网站图标"
msgid "Fax"
msgstr "传真"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:51
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:72
msgid "Feedback"
msgstr "反馈"
@@ -10124,8 +10239,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:236
-#: frappe/public/js/frappe/views/reports/query_report.js:1909
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1984
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10135,7 +10250,7 @@ msgstr "字段"
msgid "Field \"route\" is mandatory for Web Views"
msgstr "Web视图必须使用字段“路由”"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr "如果设置了“网站搜索字段”,则“标题”字段是必填的。"
@@ -10143,7 +10258,7 @@ msgstr "如果设置了“网站搜索字段”,则“标题”字段是必填
msgid "Field \"value\" is mandatory. Please specify value to be updated"
msgstr "字段值必填。请指定值进行更新"
-#: frappe/desk/search.py:255
+#: frappe/desk/search.py:262
msgid "Field {0} not found in {1}"
msgstr ""
@@ -10152,7 +10267,7 @@ msgstr ""
msgid "Field Description"
msgstr "字段说明"
-#: frappe/core/doctype/doctype/doctype.py:1092
+#: frappe/core/doctype/doctype/doctype.py:1095
msgid "Field Missing"
msgstr "缺失字段"
@@ -10200,7 +10315,7 @@ msgstr "待追踪字段"
msgid "Field type cannot be changed for {0}"
msgstr "{0}不能更改字段类型"
-#: frappe/database/database.py:919
+#: frappe/database/database.py:923
msgid "Field {0} does not exist on {1}"
msgstr "字段{0}在{1}中不存在"
@@ -10208,11 +10323,11 @@ msgstr "字段{0}在{1}中不存在"
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "字段{0}引用了不存在的文档类型{1}。"
-#: frappe/core/doctype/doctype/doctype.py:1669
+#: frappe/core/doctype/doctype/doctype.py:1683
msgid "Field {0} must be a virtual field to support virtual doctype."
msgstr "字段{0}必须为虚拟字段以支持虚拟文档类型。"
-#: frappe/public/js/frappe/form/form.js:1768
+#: frappe/public/js/frappe/form/form.js:1799
msgid "Field {0} not found."
msgstr "找不到字段{0}。"
@@ -10234,7 +10349,7 @@ msgstr "文档{1}的字段{0}既不是手机号码字段,也不是客户或用
#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
msgstr "字段名"
@@ -10243,7 +10358,7 @@ msgstr "字段名"
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr "字段名'{0}'与{3}中的{1} {2}冲突"
-#: frappe/core/doctype/doctype/doctype.py:1091
+#: frappe/core/doctype/doctype/doctype.py:1094
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "必须存在名为{0}的字段才能启用自动命名"
@@ -10251,7 +10366,7 @@ msgstr "必须存在名为{0}的字段才能启用自动命名"
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "字段名被限制为64个字符({0})"
-#: frappe/custom/doctype/custom_field/custom_field.py:198
+#: frappe/custom/doctype/custom_field/custom_field.py:199
msgid "Fieldname not set for Custom Field"
msgstr "必须为自定义字段设置设置字段名"
@@ -10267,7 +10382,7 @@ msgstr "字段名{0}重复出现"
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "字段名{0}不能有特殊字符,如{1}"
-#: frappe/core/doctype/doctype/doctype.py:1942
+#: frappe/core/doctype/doctype/doctype.py:2006
msgid "Fieldname {0} conflicting with meta object"
msgstr "字段名{0}与元对象冲突"
@@ -10315,7 +10430,7 @@ 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:1011
+#: frappe/database/query.py:1054
msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
msgstr "字段必须为字符串、列表、元组、pypika字段或pypika函数"
@@ -10339,7 +10454,7 @@ msgstr "字段以逗号分隔(,),将可通过全局搜索框进行搜索
msgid "Fieldtype"
msgstr "字段类型"
-#: frappe/custom/doctype/custom_field/custom_field.py:194
+#: frappe/custom/doctype/custom_field/custom_field.py:195
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr "字段类型不能从{0}更改为{1}"
@@ -10415,12 +10530,12 @@ msgstr "文件名不能包含{0}"
msgid "File not attached"
msgstr "文件未添加"
-#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:200
+#: frappe/core/doctype/file/file.py:766 frappe/public/js/frappe/request.js:198
#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
msgstr "文件大小超过允许的{0} MB"
-#: frappe/public/js/frappe/request.js:198
+#: frappe/public/js/frappe/request.js:196
msgid "File too big"
msgstr "文件太大"
@@ -10447,12 +10562,17 @@ msgstr "文件"
#: frappe/desk/doctype/number_card/number_card.js:208
#: frappe/desk/doctype/number_card/number_card.js:347
#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
-#: frappe/public/js/frappe/list/base_list.js:1336
+#: frappe/public/js/frappe/list/base_list.js:1352
#: frappe/public/js/frappe/ui/filters/filter_list.js:134
#: frappe/website/doctype/web_form/web_form.js:213
msgid "Filter"
msgstr "过滤条件"
+#. Label of the filter_area (HTML) field in DocType 'Workspace Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Filter Area"
+msgstr ""
+
#. Label of the filter_data (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -10471,7 +10591,7 @@ 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:84
+#: frappe/public/js/frappe/list/list_filter.js:101
msgid "Filter Name"
msgstr "过滤条件名称"
@@ -10480,11 +10600,11 @@ msgstr "过滤条件名称"
msgid "Filter Values"
msgstr "过滤值"
-#: frappe/database/query.py:690
+#: frappe/database/query.py:712
msgid "Filter condition missing after operator: {0}"
msgstr "运算符后缺少筛选条件:{0}"
-#: frappe/database/query.py:766
+#: frappe/database/query.py:800
msgid "Filter fields have invalid backtick notation: {0}"
msgstr ""
@@ -10503,10 +10623,14 @@ msgid "Filtered Records"
msgstr "满足过滤条件的记录"
#: frappe/website/doctype/help_article/help_article.py:91
-#: frappe/www/portal.py:55
+#: frappe/www/portal.py:57
msgid "Filtered by \"{0}\""
msgstr "基于“{0}”过滤"
+#: frappe/public/js/frappe/form/controls/link.js:729
+msgid "Filtered by: {0}."
+msgstr ""
+
#. Label of the filters (Code) field in DocType 'Access Log'
#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
#. Label of the filters (Small Text) field in DocType 'Prepared Report'
@@ -10530,7 +10654,7 @@ msgstr "基于“{0}”过滤"
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/list/list_filter.js:18
+#: frappe/public/js/frappe/list/list_filter.js:19
msgid "Filters"
msgstr "过滤条件"
@@ -10561,10 +10685,6 @@ msgstr "过滤JSON"
msgid "Filters Section"
msgstr "过滤条件"
-#: frappe/public/js/frappe/form/controls/link.js:595
-msgid "Filters applied for {0}"
-msgstr "过滤条件:{0}"
-
#: frappe/public/js/frappe/views/kanban/kanban_view.js:202
msgid "Filters saved"
msgstr "已保存过滤条件"
@@ -10582,14 +10702,14 @@ msgstr "过滤 {0}"
msgid "Filters:"
msgstr "过滤器:"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:616
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
msgid "Find '{0}' in ..."
msgstr "在...中查找'{0}'"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:399
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:401
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:163
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:403
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:152
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:155
msgid "Find {0} in {1}"
msgstr "在{1}中找到{0}"
@@ -10677,11 +10797,11 @@ msgstr "浮点数精度"
msgid "Fold"
msgstr "折叠"
-#: frappe/core/doctype/doctype/doctype.py:1465
+#: frappe/core/doctype/doctype/doctype.py:1479
msgid "Fold can not be at the end of the form"
msgstr "不能在表单的末端折叠"
-#: frappe/core/doctype/doctype/doctype.py:1463
+#: frappe/core/doctype/doctype/doctype.py:1477
msgid "Fold must come before a Section Break"
msgstr "折叠须在段之前"
@@ -10710,12 +10830,12 @@ msgstr "文件夹{0}非空"
msgid "Folio"
msgstr "页码"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:128
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:149
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Follow"
msgstr "关注"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:144
msgid "Followed by"
msgstr "被谁关注"
@@ -10723,7 +10843,7 @@ msgstr "被谁关注"
msgid "Following Report Filters have missing values:"
msgstr "缺少以下报表过滤条件"
-#: frappe/desk/form/document_follow.py:63
+#: frappe/desk/form/document_follow.py:69
msgid "Following document {0}"
msgstr "正在关注文档{0}"
@@ -10731,7 +10851,7 @@ msgstr "正在关注文档{0}"
msgid "Following fields are missing:"
msgstr "以下字段缺失:"
-#: frappe/public/js/frappe/ui/field_group.js:139
+#: frappe/public/js/frappe/ui/field_group.js:144
msgid "Following fields have invalid values:"
msgstr "以下字段包含无效值:"
@@ -10739,7 +10859,7 @@ msgstr "以下字段包含无效值:"
msgid "Following fields have missing values"
msgstr "以下字段缺少值"
-#: frappe/public/js/frappe/ui/field_group.js:126
+#: frappe/public/js/frappe/ui/field_group.js:131
msgid "Following fields have missing values:"
msgstr "以下字段值缺失:"
@@ -10808,7 +10928,7 @@ msgstr "页脚详情"
msgid "Footer HTML"
msgstr "页脚HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:81
+#: frappe/printing/doctype/letter_head/letter_head.py:88
msgid "Footer HTML set from attachment {0}"
msgstr "页脚HTML已从附件{0}设置"
@@ -10845,7 +10965,7 @@ msgstr "页脚模板"
msgid "Footer Template Values"
msgstr "页脚模板值"
-#: frappe/printing/page/print/print.js:130
+#: frappe/printing/page/print/print.js:138
msgid "Footer might not be visible as {0} option is disabled"
msgstr "页脚可能不可见,因为{0}选项已禁用"
@@ -10878,15 +10998,6 @@ msgstr "单据类型"
msgid "For Example: {} Open"
msgstr "示例:{} 打开"
-#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: frappe/core/doctype/docfield/docfield.json
-#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-msgid "For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
-msgstr "对链接类型字段,此处填写链接的单据类型;对于单选字段,填写单选值清单,用回车键分行"
-
#. Label of the for_user (Link) field in DocType 'List Filter'
#. Label of the for_user (Link) field in DocType 'Notification Log'
#. Label of the for_user (Data) field in DocType 'Workspace'
@@ -10910,20 +11021,16 @@ msgstr "允许值"
msgid "For a dynamic subject, use Jinja tags like this: {{ doc.name }} Delivered"
msgstr "如需动态主题,请使用Jinja标签,例如:{{ doc.name }} 已交付"
-#: frappe/public/js/frappe/views/reports/query_report.js:2159
+#: frappe/public/js/frappe/views/reports/query_report.js:2246
#: 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, =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,这有利于你跟踪每次修订。"
-
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "For example:"
msgstr "例如:"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:752
+#: frappe/printing/page/print_format_builder/print_format_builder.js:786
msgid "For example: If you want to include the document ID, use {0}"
msgstr "例如:如果要包括文件ID,使用{0}"
@@ -10951,7 +11058,7 @@ msgstr "多个地址请分行输入,例如:test@test.com ⏎ test1@test.com"
msgid "For updating, you can update only selective columns."
msgstr "您只能更新选择的列。"
-#: frappe/core/doctype/doctype/doctype.py:1786
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "For {0} at level {1} in {2} in row {3}"
msgstr "对行{3},{2}中级别{1}的{0}"
@@ -11001,7 +11108,8 @@ msgstr "忘了密码?"
#: 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:97
+#: frappe/printing/page/print/print.js:98
+#: frappe/printing/page/print/print.js:104
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr "表单"
@@ -11180,7 +11288,7 @@ msgstr "星期五"
msgid "From"
msgstr "从"
-#: frappe/public/js/frappe/views/communication.js:188
+#: frappe/public/js/frappe/views/communication.js:222
msgctxt "Email Sender"
msgid "From"
msgstr "从"
@@ -11201,7 +11309,7 @@ msgstr "开始日期"
msgid "From Date Field"
msgstr "开始日期字段"
-#: frappe/public/js/frappe/views/reports/query_report.js:1870
+#: frappe/public/js/frappe/views/reports/query_report.js:1945
msgid "From Document Type"
msgstr "单据类型"
@@ -11242,7 +11350,7 @@ msgstr "全"
msgid "Full Name"
msgstr "全名"
-#: frappe/printing/page/print/print.js:81
+#: frappe/printing/page/print/print.js:87
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
msgstr "全屏显示"
@@ -11255,7 +11363,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:246
+#: frappe/public/js/frappe/views/reports/query_report.js:247
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "函数"
@@ -11264,11 +11372,11 @@ msgstr "函数"
msgid "Function Based On"
msgstr "函数基准字段"
-#: frappe/__init__.py:465
+#: frappe/__init__.py:463
msgid "Function {0} is not whitelisted."
msgstr "方法 {0} 申明前未添加@frappe.whitelist()装饰器"
-#: frappe/database/query.py:1998
+#: frappe/database/query.py:2076
msgid "Function {0} requires arguments but none were provided"
msgstr "函数{0}需要参数但未提供任何参数"
@@ -11333,11 +11441,11 @@ msgstr "正常"
msgid "Generate Keys"
msgstr "生成密钥"
-#: frappe/public/js/frappe/views/reports/query_report.js:885
+#: frappe/public/js/frappe/views/reports/query_report.js:897
msgid "Generate New Report"
msgstr "生成新报表"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:467
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:469
msgid "Generate Random Password"
msgstr "生成随机密码"
@@ -11347,8 +11455,8 @@ msgstr "生成随机密码"
msgid "Generate Separate Documents For Each Assignee"
msgstr "为每位负责人生成独立文档"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:284
-#: frappe/public/js/frappe/utils/utils.js:1942
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:328
+#: frappe/public/js/frappe/utils/utils.js:2073
msgid "Generate Tracking URL"
msgstr "生成跟踪URL"
@@ -11459,7 +11567,7 @@ msgstr "全局访问"
msgid "Global Unsubscribe"
msgstr "全部退订"
-#: frappe/public/js/frappe/form/toolbar.js:876
+#: frappe/public/js/frappe/form/toolbar.js:879
msgid "Go"
msgstr "确定"
@@ -11519,7 +11627,7 @@ msgstr "转到{0}列表"
msgid "Go to {0} Page"
msgstr "转到{0}页面"
-#: frappe/utils/goal.py:127 frappe/utils/goal.py:134
+#: frappe/utils/goal.py:126 frappe/utils/goal.py:133
msgid "Goal"
msgstr "目标"
@@ -11745,7 +11853,7 @@ msgstr "分组统计类型"
msgid "Group By field is required to create a dashboard chart"
msgstr "创建仪表板图表需要分组依据字段"
-#: frappe/database/query.py:1200
+#: frappe/database/query.py:1242
msgid "Group By must be a string"
msgstr "分组依据必须为字符串"
@@ -11825,6 +11933,10 @@ msgstr "HTML"
msgid "HTML Editor"
msgstr "HTML编辑器"
+#: frappe/public/js/frappe/views/communication.js:142
+msgid "HTML Message"
+msgstr ""
+
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
@@ -11913,7 +12025,7 @@ msgstr "头"
msgid "Header HTML"
msgstr "标题HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:69
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Header HTML set from attachment {0}"
msgstr "使用附件{0}设置HTML文件头"
@@ -11949,7 +12061,7 @@ msgstr "页眉/页脚脚本可用于添加动态行为"
msgid "Headers"
msgstr "头"
-#: frappe/email/email_body.py:322
+#: frappe/email/email_body.py:323
msgid "Headers must be a dictionary"
msgstr "请求头必须为字典类型"
@@ -11986,7 +12098,7 @@ msgstr "您好:"
#. 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:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:80
#: frappe/public/js/frappe/form/workflow.js:23
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
@@ -12041,7 +12153,7 @@ msgstr "黑体"
msgid "Helvetica Neue"
msgstr "Helvetica Neue字体"
-#: frappe/public/js/frappe/utils/utils.js:1939
+#: frappe/public/js/frappe/utils/utils.js:2070
msgid "Here's your tracking URL"
msgstr "这是您的跟踪URL"
@@ -12077,9 +12189,9 @@ msgstr "隐藏"
msgid "Hidden Fields"
msgstr "隐藏字段"
-#: frappe/public/js/frappe/views/reports/query_report.js:1672
-msgid "Hidden columns include: {0}"
-msgstr "隐藏列包括:{0}"
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
+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
@@ -12244,7 +12356,7 @@ msgstr "提示:在密码中加入符号,数字和大写字母"
#: 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:161 frappe/templates/doc.html:19
+#: frappe/public/js/frappe/views/pageview.js:166 frappe/templates/doc.html:19
#: frappe/templates/includes/navbar/navbar.html:9
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
@@ -12327,18 +12439,18 @@ msgid "I guess you don't have access to any workspace yet, but you can create on
msgstr "您当前无工作区访问权限,可创建专属工作区。点击创建工作区按钮创建。
"
#. Label of the id (Data) field in DocType 'User Session Display'
-#: frappe/core/doctype/data_import/importer.py:1173
-#: frappe/core/doctype/data_import/importer.py:1179
-#: frappe/core/doctype/data_import/importer.py:1244
-#: frappe/core/doctype/data_import/importer.py:1247
+#: 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/core/doctype/user_session_display/user_session_display.json
#: 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/data_import/data_exporter.js:354
+#: frappe/public/js/frappe/data_import/data_exporter.js:369
#: frappe/public/js/frappe/list/list_settings.js:335
-#: frappe/public/js/frappe/list/list_view.js:387
-#: frappe/public/js/frappe/list/list_view.js:451
-#: frappe/public/js/frappe/list/list_view.js:2409
+#: frappe/public/js/frappe/list/list_view.js:390
+#: frappe/public/js/frappe/list/list_view.js:454
+#: frappe/public/js/frappe/list/list_view.js:2437
#: frappe/public/js/frappe/model/meta.js:208
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
@@ -12389,7 +12501,6 @@ msgid "IP Address"
msgstr "IP地址"
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of the icon (Icon) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12410,11 +12521,16 @@ msgstr "IP地址"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:472
+#: frappe/public/js/frappe/views/workspace/workspace.js:520
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
msgstr "图标"
+#. Label of the icon_image (Attach) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Icon Image"
+msgstr ""
+
#. Label of the icon_style (Select) field in DocType 'Desktop Settings'
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
msgid "Icon Style"
@@ -12425,6 +12541,10 @@ msgstr ""
msgid "Icon Type"
msgstr ""
+#: frappe/desk/page/desktop/desktop.js:1003
+msgid "Icon is not correctly configured please check the workspace sidebar to it"
+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"
@@ -12456,13 +12576,13 @@ msgstr "如果勾选了“加严用户权限限制”,并为用户定义了“
msgid "If Checked workflow status will not override status in list view"
msgstr "如勾选,工作流状态不会覆盖列表视图中的状态字段"
-#: frappe/core/doctype/doctype/doctype.py:1798
+#: frappe/core/doctype/doctype/doctype.py:1812
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:68
msgid "If Owner"
msgstr "是制单人?"
-#: frappe/core/page/permission_manager/permission_manager_help.html:25
+#: frappe/core/page/permission_manager/permission_manager_help.html:92
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
msgstr "如果角色没有0级的访问权限,那么无需设置更高级权限"
@@ -12589,12 +12709,20 @@ msgstr "如果未设置,则货币精度将取决于数字格式"
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr "如勾选则仅限分派了这些角色的用户可看到本图表,否则由单据类型或报表权限控制图表是否显示"
+#: frappe/core/page/permission_manager/permission_manager_help.html:83
+msgid "If the user enables the mask property for the phone number field, the value will be displayed in a masked format (e.g., 811XXXXXXX)."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:63
+msgid "If the user has access to Employee and Report is enabled, they can view Employee-based reports."
+msgstr ""
+
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
msgstr "如果用户检查了任何角色,则该用户将成为“系统用户”。 “系统用户”可以访问桌面"
-#: frappe/core/page/permission_manager/permission_manager_help.html:38
+#: frappe/core/page/permission_manager/permission_manager_help.html:105
msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr "如果这些说明没有帮助,请在Github提交你的建议。"
@@ -12694,7 +12822,7 @@ msgstr "忽略超过此大小的附件"
msgid "Ignored Apps"
msgstr "忽略的应用"
-#: frappe/model/workflow.py:202
+#: frappe/model/workflow.py:223
msgid "Illegal Document Status for {0}"
msgstr "{0}非法单据状态"
@@ -12760,11 +12888,11 @@ msgstr "图像视图"
msgid "Image Width"
msgstr "图片宽度"
-#: frappe/core/doctype/doctype/doctype.py:1521
+#: frappe/core/doctype/doctype/doctype.py:1535
msgid "Image field must be a valid fieldname"
msgstr "图像字段必须是有效的字段名"
-#: frappe/core/doctype/doctype/doctype.py:1523
+#: frappe/core/doctype/doctype/doctype.py:1537
msgid "Image field must be of type Attach Image"
msgstr "图像字段的类型必须为附着图像"
@@ -12798,7 +12926,7 @@ msgstr "被模拟的用户"
msgid "Impersonated by {0}"
msgstr "被{0}模拟登录"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:23
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:13
msgid "Impersonating {0}"
msgstr "正在模拟{0}登录"
@@ -12816,11 +12944,12 @@ msgstr "隐式"
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/core/page/permission_manager/permission_manager_help.html:71
#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
msgstr "导入"
-#: frappe/public/js/frappe/list/list_view.js:1914
+#: frappe/public/js/frappe/list/list_view.js:1922
msgctxt "Button in list view menu"
msgid "Import"
msgstr "导入"
@@ -13043,15 +13172,15 @@ msgid "Include Web View Link in Email"
msgstr "邮件包含网页视图链接"
#: frappe/public/js/frappe/form/print_utils.js:59
-#: frappe/public/js/frappe/views/reports/query_report.js:1650
+#: frappe/public/js/frappe/views/reports/query_report.js:1716
msgid "Include filters"
msgstr "包括过滤条件"
-#: frappe/public/js/frappe/views/reports/query_report.js:1670
+#: frappe/public/js/frappe/views/reports/query_report.js:1738
msgid "Include hidden columns"
msgstr "包含隐藏列"
-#: frappe/public/js/frappe/views/reports/query_report.js:1642
+#: frappe/public/js/frappe/views/reports/query_report.js:1708
msgid "Include indentation"
msgstr "包括缩进"
@@ -13118,11 +13247,11 @@ msgstr "不正确的用户或密码"
msgid "Incorrect Verification code"
msgstr "验证码不正确"
-#: frappe/model/document.py:1604
+#: frappe/model/document.py:1603
msgid "Incorrect value in row {0}:"
msgstr "第{0}行值错误:"
-#: frappe/model/document.py:1606
+#: frappe/model/document.py:1605
msgid "Incorrect value:"
msgstr "错误值:"
@@ -13174,7 +13303,7 @@ msgstr "指示符"
msgid "Indicator Color"
msgstr "指示灯颜色"
-#: frappe/public/js/frappe/views/workspace/workspace.js:477
+#: frappe/public/js/frappe/views/workspace/workspace.js:525
msgid "Indicator color"
msgstr "指示器颜色(快捷方式右上角数字)"
@@ -13221,15 +13350,15 @@ 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:1915
+#: frappe/public/js/frappe/views/reports/query_report.js:1990
msgid "Insert After"
msgstr "在后边插入"
-#: frappe/custom/doctype/custom_field/custom_field.py:252
+#: frappe/custom/doctype/custom_field/custom_field.py:253
msgid "Insert After cannot be set as {0}"
msgstr "在后边插入不能设置为{0}"
-#: frappe/custom/doctype/custom_field/custom_field.py:245
+#: frappe/custom/doctype/custom_field/custom_field.py:246
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
msgstr "在自定义字段“{1}”中参照的标题为“{2}”字段“{0}”不存在"
@@ -13259,8 +13388,8 @@ msgstr "插入样式"
msgid "Instagram"
msgstr "Instagram"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:715
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:716
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:683
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:684
msgid "Install {0} from Marketplace"
msgstr "从应用市场安装{0}"
@@ -13286,15 +13415,15 @@ msgstr "已安装应用"
msgid "Instructions"
msgstr "说明"
-#: frappe/templates/includes/login/login.js:261
+#: frappe/templates/includes/login/login.js:259
msgid "Instructions Emailed"
msgstr "电子邮件说明"
-#: frappe/permissions.py:855
+#: frappe/permissions.py:861
msgid "Insufficient Permission Level for {0}"
msgstr "{0}权限级别不足"
-#: frappe/database/query.py:1266
+#: frappe/database/query.py:1308
msgid "Insufficient Permission for {0}"
msgstr "{0} 权限不足"
@@ -13362,7 +13491,7 @@ msgstr "兴趣爱好"
msgid "Intermediate"
msgstr "中级"
-#: frappe/public/js/frappe/request.js:235
+#: frappe/public/js/frappe/request.js:233
msgid "Internal Server Error"
msgstr "内部服务器错误"
@@ -13371,6 +13500,11 @@ msgstr "内部服务器错误"
msgid "Internal record of document shares"
msgstr "文件分享的内部记录"
+#. Label of the interval (Select) field in DocType 'Event Notifications'
+#: frappe/desk/doctype/event_notifications/event_notifications.json
+msgid "Interval"
+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"
@@ -13410,13 +13544,13 @@ msgid "Invalid"
msgstr "无效"
#: frappe/public/js/form_builder/utils.js:221
-#: frappe/public/js/frappe/form/grid_row.js:849
-#: frappe/public/js/frappe/form/layout.js:835
+#: frappe/public/js/frappe/form/grid_row.js:848
+#: frappe/public/js/frappe/form/layout.js:809
#: frappe/public/js/frappe/views/reports/report_view.js:715
msgid "Invalid \"depends_on\" expression"
msgstr "“depends_on”表达式无效"
-#: frappe/public/js/frappe/views/reports/query_report.js:519
+#: frappe/public/js/frappe/views/reports/query_report.js:520
msgid "Invalid \"depends_on\" expression set in filter {0}"
msgstr "在过滤器{0}中设置了无效的“ depends_on”表达式"
@@ -13456,7 +13590,7 @@ msgstr "日期无效"
msgid "Invalid DocType"
msgstr "文档类型无效"
-#: frappe/database/query.py:342
+#: frappe/database/query.py:345
msgid "Invalid DocType: {0}"
msgstr "无效文档类型:{0}"
@@ -13464,7 +13598,8 @@ msgstr "无效文档类型:{0}"
msgid "Invalid Doctype"
msgstr "无效文档类型"
-#: frappe/core/doctype/doctype/doctype.py:1287
+#: frappe/core/doctype/doctype/doctype.py:1292
+#: frappe/core/doctype/doctype/doctype.py:1301
msgid "Invalid Fieldname"
msgstr "字段名无效"
@@ -13472,8 +13607,8 @@ msgstr "字段名无效"
msgid "Invalid File URL"
msgstr "文件URL无效"
-#: frappe/database/query.py:768 frappe/database/query.py:795
-#: frappe/database/query.py:805 frappe/database/query.py:828
+#: frappe/database/query.py:802 frappe/database/query.py:829
+#: frappe/database/query.py:839 frappe/database/query.py:862
msgid "Invalid Filter"
msgstr "无效筛选器"
@@ -13497,7 +13632,7 @@ msgstr "无效链接"
msgid "Invalid Login Token"
msgstr "无效登录令牌"
-#: frappe/templates/includes/login/login.js:290
+#: frappe/templates/includes/login/login.js:288
msgid "Invalid Login. Try again."
msgstr "登录无效。再试一次。"
@@ -13505,7 +13640,7 @@ msgstr "登录无效。再试一次。"
msgid "Invalid Mail Server. Please rectify and try again."
msgstr "无效的邮件服务器,请纠正后重试。"
-#: frappe/model/naming.py:109
+#: frappe/model/naming.py:107
msgid "Invalid Naming Series: {}"
msgstr "无效命名规则:{}"
@@ -13516,8 +13651,8 @@ msgstr "无效命名规则:{}"
msgid "Invalid Operation"
msgstr "无效操作"
-#: frappe/core/doctype/doctype/doctype.py:1656
-#: frappe/core/doctype/doctype/doctype.py:1664
+#: frappe/core/doctype/doctype/doctype.py:1670
+#: frappe/core/doctype/doctype/doctype.py:1678
msgid "Invalid Option"
msgstr "错误选项"
@@ -13529,7 +13664,7 @@ msgstr "出站邮件服务器或端口无效:{0}"
msgid "Invalid Output Format"
msgstr "无效的输出格式"
-#: frappe/model/base_document.py:126
+#: frappe/model/base_document.py:128
msgid "Invalid Override"
msgstr "无效覆盖"
@@ -13542,11 +13677,11 @@ msgstr "参数无效"
msgid "Invalid Password"
msgstr "无效的密码"
-#: frappe/utils/__init__.py:125
+#: frappe/utils/__init__.py:116
msgid "Invalid Phone Number"
msgstr "电话号码无效"
-#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:220
+#: frappe/auth.py:97 frappe/utils/oauth.py:213 frappe/utils/oauth.py:222
#: frappe/www/login.py:128
msgid "Invalid Request"
msgstr "无效请求"
@@ -13555,7 +13690,7 @@ msgstr "无效请求"
msgid "Invalid Search Field {0}"
msgstr "无效的搜索字段{0}"
-#: frappe/core/doctype/doctype/doctype.py:1229
+#: frappe/core/doctype/doctype/doctype.py:1232
msgid "Invalid Table Fieldname"
msgstr "表字段名无效"
@@ -13574,7 +13709,7 @@ msgstr "URL无效"
msgid "Invalid User Name or Support Password. Please rectify and try again."
msgstr "无效的用户名或支持密码。请纠正然后重试。"
-#: frappe/public/js/frappe/ui/field_group.js:137
+#: frappe/public/js/frappe/ui/field_group.js:142
msgid "Invalid Values"
msgstr "无效值"
@@ -13586,7 +13721,7 @@ msgstr "Webhook密钥无效"
msgid "Invalid aggregate function"
msgstr "无效聚合函数"
-#: frappe/database/query.py:2157
+#: frappe/database/query.py:2236
msgid "Invalid alias format: {0}. Alias must be a simple identifier."
msgstr "别名格式无效:{0}。别名必须为简单标识符。"
@@ -13594,19 +13729,19 @@ msgstr "别名格式无效:{0}。别名必须为简单标识符。"
msgid "Invalid app"
msgstr "无效应用"
-#: frappe/database/query.py:2118 frappe/database/query.py:2133
+#: frappe/database/query.py:2197 frappe/database/query.py:2212
msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
msgstr "参数格式无效:{0}。仅允许带引号的字符串字面量或简单字段名。"
-#: frappe/database/query.py:2083
+#: frappe/database/query.py:2161
msgid "Invalid argument type: {0}. Only strings, numbers, dicts, and None are allowed."
msgstr ""
-#: frappe/database/query.py:801
+#: frappe/database/query.py:835
msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
msgstr "字段名包含无效字符:{0}。仅允许字母、数字和下划线。"
-#: frappe/database/query.py:971
+#: frappe/database/query.py:1014
msgid "Invalid characters in table name: {0}"
msgstr "表名包含无效字符:{0}"
@@ -13614,18 +13749,22 @@ msgstr "表名包含无效字符:{0}"
msgid "Invalid column"
msgstr "无效列"
-#: frappe/database/query.py:713
+#: frappe/database/query.py:735
msgid "Invalid condition type in nested filters: {0}"
msgstr "嵌套筛选器中条件类型无效:{0}"
-#: frappe/database/query.py:1244
+#: frappe/database/query.py:1286
msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
msgstr "排序方向无效:{0}。必须为“ASC”或“DESC”。"
-#: frappe/model/document.py:1065 frappe/model/document.py:1079
+#: frappe/model/document.py:1064 frappe/model/document.py:1078
msgid "Invalid docstatus"
msgstr "文档状态无效"
+#: frappe/model/workflow.py:112
+msgid "Invalid expression in Workflow Update Value: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
msgstr "过滤器{0}中的表达式无效"
@@ -13634,11 +13773,11 @@ msgstr "过滤器{0}中的表达式无效"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "过滤器{0}({1})中的表达式无效"
-#: frappe/database/query.py:1886
+#: frappe/database/query.py:1964
msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
msgstr "SELECT字段格式无效:{0}。字段名必须为简单名称、反引号包裹、表限定、别名或“*”。"
-#: frappe/database/query.py:1184
+#: frappe/database/query.py:1227
msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
msgstr "{0}中字段格式无效:{1}。请使用“字段”、“链接字段.字段”或“子表.字段”。"
@@ -13646,11 +13785,11 @@ msgstr "{0}中字段格式无效:{1}。请使用“字段”、“链接字段
msgid "Invalid field name {0}"
msgstr "字段名称{0}无效"
-#: frappe/database/query.py:1070
+#: frappe/database/query.py:1113
msgid "Invalid field type: {0}"
msgstr "字段类型无效:{0}"
-#: frappe/core/doctype/doctype/doctype.py:1100
+#: frappe/core/doctype/doctype/doctype.py:1103
msgid "Invalid fieldname '{0}' in autoname"
msgstr "编号规则中字段名“{0}”无效"
@@ -13658,11 +13797,11 @@ msgstr "编号规则中字段名“{0}”无效"
msgid "Invalid file path: {0}"
msgstr "无效的文件路径:{0}"
-#: frappe/database/query.py:696
+#: frappe/database/query.py:718
msgid "Invalid filter condition: {0}. Expected a list or tuple."
msgstr "筛选条件无效:{0}。期望为列表或元组。"
-#: frappe/database/query.py:791
+#: frappe/database/query.py:825
msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
msgstr "筛选字段格式无效:{0}。请使用“字段名”或“链接字段名.目标字段名”。"
@@ -13670,7 +13809,7 @@ msgstr "筛选字段格式无效:{0}。请使用“字段名”或“链接字
msgid "Invalid filter: {0}"
msgstr "无效过滤器:{0}"
-#: frappe/database/query.py:2003
+#: frappe/database/query.py:2081
msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
msgstr "函数参数类型无效:{0}。仅允许字符串、数字、列表和None。"
@@ -13687,19 +13826,19 @@ msgstr "自定义选项中包含无效JSON:{0}"
msgid "Invalid key"
msgstr "密钥无效"
-#: frappe/model/naming.py:498
+#: frappe/model/naming.py:496
msgid "Invalid name type (integer) for varchar name column"
msgstr "varchar名称列使用了整型名称类型"
-#: frappe/model/naming.py:62
+#: frappe/model/naming.py:60
msgid "Invalid naming series {}: dot (.) missing"
msgstr "命名规则{}错误:缺少点号(.)"
-#: frappe/model/naming.py:76
+#: frappe/model/naming.py:74
msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####."
msgstr "命名序列{}无效:数字占位符前缺少点号(.)。请使用类似ABCD.#####的格式。"
-#: frappe/database/query.py:2075
+#: frappe/database/query.py:2153
msgid "Invalid nested expression: dictionary must represent a function or operator"
msgstr ""
@@ -13723,11 +13862,11 @@ msgstr "请求正文无效"
msgid "Invalid role"
msgstr "角色无效"
-#: frappe/database/query.py:744
+#: frappe/database/query.py:776
msgid "Invalid simple filter format: {0}"
msgstr "简单筛选器格式无效:{0}"
-#: frappe/database/query.py:673
+#: frappe/database/query.py:695
msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
msgstr "筛选条件起始格式无效:{0}。期望为列表或元组。"
@@ -13744,24 +13883,24 @@ msgstr "令牌状态无效!请检查是否由OAuth用户创建"
msgid "Invalid username or password"
msgstr "用户名或密码错误"
-#: frappe/model/naming.py:176
+#: frappe/model/naming.py:174
msgid "Invalid value specified for UUID: {}"
msgstr "指定的UUID值无效:{}"
-#: frappe/public/js/frappe/web_form/web_form.js:253
+#: frappe/public/js/frappe/web_form/web_form.js:249
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr "字段包含无效值:"
-#: frappe/printing/page/print/print.js:673
+#: frappe/printing/page/print/print.js:681
msgid "Invalid wkhtmltopdf version"
msgstr "wkhtmltopdf版本无效"
-#: frappe/core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1593
msgid "Invalid {0} condition"
msgstr "{0}条件无效"
-#: frappe/database/query.py:1964
+#: frappe/database/query.py:2042
msgid "Invalid {0} dictionary format"
msgstr ""
@@ -13889,7 +14028,7 @@ msgstr "是动态网址?"
msgid "Is Folder"
msgstr "是文件夹"
-#: frappe/public/js/frappe/list/list_filter.js:95
+#: frappe/public/js/frappe/list/list_filter.js:112
msgid "Is Global"
msgstr "全局有效?"
@@ -13960,7 +14099,7 @@ msgstr "公开"
msgid "Is Published Field"
msgstr "是否发布字段"
-#: frappe/core/doctype/doctype/doctype.py:1530
+#: frappe/core/doctype/doctype/doctype.py:1544
msgid "Is Published Field must be a valid fieldname"
msgstr "已发布字段必须是有效字段"
@@ -14205,8 +14344,8 @@ msgstr ""
msgid "Join video conference with {0}"
msgstr "加入与{0}的视频会议"
-#: frappe/public/js/frappe/form/toolbar.js:431
-#: frappe/public/js/frappe/form/toolbar.js:866
+#: frappe/public/js/frappe/form/toolbar.js:421
+#: frappe/public/js/frappe/form/toolbar.js:869
msgid "Jump to field"
msgstr "定位到字段"
@@ -14529,7 +14668,7 @@ msgstr "标签帮助"
msgid "Label and Type"
msgstr "标签和类型"
-#: frappe/custom/doctype/custom_field/custom_field.py:146
+#: frappe/custom/doctype/custom_field/custom_field.py:147
msgid "Label is mandatory"
msgstr "标签信息必填"
@@ -14552,7 +14691,7 @@ msgstr "横向打印"
#: frappe/core/doctype/translation/translation.json
#: frappe/core/doctype/user/user.json
#: frappe/core/web_form/edit_profile/edit_profile.json
-#: frappe/printing/page/print/print.js:118
+#: frappe/printing/page/print/print.js:126
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
msgstr "语言"
@@ -14598,6 +14737,14 @@ msgstr "过去90天"
msgid "Last Active"
msgstr "最后活动"
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:163
+msgid "Last Edited by You"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:164
+msgid "Last Edited by {0}"
+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"
@@ -14722,6 +14869,11 @@ msgstr "去年"
msgid "Last synced {0}"
msgstr "上次同步{0}"
+#. Label of the layout (Code) field in DocType 'Desktop Layout'
+#: frappe/desk/doctype/desktop_layout/desktop_layout.json
+msgid "Layout"
+msgstr "布局"
+
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr "布局重置"
@@ -14749,9 +14901,15 @@ msgstr "离开这个谈话"
msgid "Ledger"
msgstr "会计凭证"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -14845,7 +15003,7 @@ msgstr "信"
#. Name of a DocType
#: frappe/core/doctype/report/report.json
#: frappe/printing/doctype/letter_head/letter_head.json
-#: frappe/printing/page/print/print.js:141
+#: frappe/printing/page/print/print.js:149
#: frappe/public/js/frappe/form/print_utils.js:50
#: frappe/public/js/frappe/form/templates/print_layout.html:16
#: frappe/public/js/frappe/list/bulk_operations.js:52
@@ -14874,7 +15032,7 @@ msgstr "表头名称"
msgid "Letter Head Scripts"
msgstr "信头脚本"
-#: frappe/printing/doctype/letter_head/letter_head.py:49
+#: frappe/printing/doctype/letter_head/letter_head.py:56
msgid "Letter Head cannot be both disabled and default"
msgstr "信头不能同时禁用并设为默认"
@@ -14896,7 +15054,7 @@ msgstr "打印表头HTML"
msgid "Level"
msgstr "级别"
-#: frappe/core/page/permission_manager/permission_manager.js:517
+#: frappe/core/page/permission_manager/permission_manager.js:518
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
msgstr "级别0为单据级权限,大于0为字段级权限。"
@@ -14937,7 +15095,7 @@ msgstr "浅色主题"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/public/js/frappe/list/base_list.js:1256
+#: frappe/public/js/frappe/list/base_list.js:1272
#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
msgstr "含关键字"
@@ -14961,7 +15119,7 @@ msgstr "喜欢"
msgid "Limit"
msgstr "最大数量"
-#: frappe/database/query.py:299
+#: frappe/database/query.py:302
msgid "Limit must be a non-negative integer"
msgstr "限制必须为非负整数"
@@ -15087,7 +15245,7 @@ msgstr "关联单据标题"
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:432
+#: frappe/public/js/frappe/views/workspace/workspace.js:480
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
@@ -15105,7 +15263,7 @@ msgstr "行内链接到"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:424
+#: frappe/public/js/frappe/views/workspace/workspace.js:472
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr "链接类型"
@@ -15148,6 +15306,7 @@ msgstr "领英"
#. Label of the links_section (Tab Break) field in DocType 'DocType'
#. Label of the links (Table) field in DocType 'Customize Form'
#. Label of the links (Table) field in DocType 'Event'
+#. Label of the links_tab (Tab Break) field in DocType 'Event'
#. Label of the links (Table) field in DocType 'Sidebar Item Group'
#. Label of the links (Table) field in DocType 'Workspace'
#: frappe/contacts/doctype/address/address.js:39
@@ -15169,8 +15328,8 @@ 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/ui/toolbar/search_utils.js:92
-#: frappe/public/js/frappe/utils/utils.js:953
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:86
+#: frappe/public/js/frappe/utils/utils.js:950
msgid "List"
msgstr "列表"
@@ -15200,7 +15359,7 @@ msgstr "列表过滤条件"
msgid "List Settings"
msgstr "列表设置"
-#: frappe/public/js/frappe/list/list_view.js:2067
+#: frappe/public/js/frappe/list/list_view.js:2075
msgctxt "Button in list view menu"
msgid "List Settings"
msgstr "列表设置"
@@ -15214,7 +15373,7 @@ msgstr "列表视图"
msgid "List View Settings"
msgstr "列表视图设置"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:223
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
msgid "List a document type"
msgstr "列出某单据类型"
@@ -15241,7 +15400,7 @@ msgstr "已应用补丁列表"
msgid "List setting message"
msgstr "列表设置消息"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:586
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556
msgid "Lists"
msgstr "列表"
@@ -15250,7 +15409,7 @@ msgstr "列表"
msgid "Load Balancing"
msgstr "均衡分派"
-#: frappe/public/js/frappe/list/base_list.js:381
+#: frappe/public/js/frappe/list/base_list.js:380
#: frappe/public/js/frappe/web_form/web_form_list.js:306
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15268,10 +15427,10 @@ 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:510
-#: frappe/public/js/frappe/list/list_view.js:364
+#: frappe/public/js/frappe/list/base_list.js:509
+#: frappe/public/js/frappe/list/list_view.js:367
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1119
+#: frappe/public/js/frappe/views/reports/query_report.js:1131
msgid "Loading"
msgstr "载入中"
@@ -15288,8 +15447,8 @@ msgid "Loading versions..."
msgstr "正在加载版本..."
#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
-#: frappe/public/js/frappe/form/sidebar/share.js:51
-#: frappe/public/js/frappe/list/base_list.js:1063
+#: frappe/public/js/frappe/form/sidebar/share.js:57
+#: frappe/public/js/frappe/list/base_list.js:1062
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:91
#: frappe/public/js/frappe/views/kanban/kanban_board.html:11
#: frappe/public/js/frappe/widgets/chart_widget.js:50
@@ -15299,7 +15458,8 @@ msgid "Loading..."
msgstr "载入中..."
#. Label of the location (Data) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
+#. Label of the location (Data) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
msgid "Location"
msgstr "地点"
@@ -15372,6 +15532,11 @@ msgstr "登出"
msgid "Login"
msgstr "登录"
+#. Label of a chart in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Login Activity"
+msgstr ""
+
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
@@ -15447,7 +15612,7 @@ msgstr "登录以发起新讨论"
msgid "Login to {0}"
msgstr "登录到{0}"
-#: frappe/templates/includes/login/login.js:319
+#: frappe/templates/includes/login/login.js:318
msgid "Login token required"
msgstr "需要登录令牌"
@@ -15514,8 +15679,7 @@ msgid "Logout From All Devices After Changing Password"
msgstr "变更密码后登出所有设备"
#. Group in User's connections
-#. Label of a Card Break in the Users Workspace
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Logs"
msgstr "日志"
@@ -15546,7 +15710,7 @@ msgstr "您似乎未更改该值"
msgid "Looks like you haven’t added any third party apps."
msgstr "您似乎未添加任何第三方应用。"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "Looks like you haven’t received any notifications."
msgstr "还没有收到任何通知哦~"
@@ -15696,7 +15860,7 @@ msgstr "表{0}第{1}行有必填字段,"
msgid "Mandatory fields required in {0}"
msgstr "{0}中有必填字段"
-#: frappe/public/js/frappe/web_form/web_form.js:258
+#: frappe/public/js/frappe/web_form/web_form.js:254
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr "需要以下必填字段:"
@@ -15758,7 +15922,7 @@ msgstr "顶边距"
msgid "MariaDB Variables"
msgstr "MariaDB变量"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:46
+#: frappe/public/js/frappe/ui/notifications/notifications.js:49
msgid "Mark all as read"
msgstr "全部标记为已读"
@@ -15810,9 +15974,12 @@ msgstr "市场营销经理"
#. Label of the mask (Check) field in DocType 'Custom DocPerm'
#. Label of the mask (Check) field in DocType 'DocField'
#. Label of the mask (Check) field in DocType 'DocPerm'
+#. Label of the mask (Check) 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/page/permission_manager/permission_manager_help.html:81
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Mask"
msgstr "掩码"
@@ -15874,7 +16041,7 @@ msgstr "每用户最自动邮件发送报表数"
msgid "Max signups allowed per hour"
msgstr "每小时允许的最大注册数"
-#: frappe/core/doctype/doctype/doctype.py:1357
+#: frappe/core/doctype/doctype/doctype.py:1371
msgid "Max width for type Currency is 100px in row {0}"
msgstr "行{0}中,货币类型的最大宽度是100像素"
@@ -15895,20 +16062,27 @@ msgstr "已达到{0}的最大附件限制"
msgid "Maximum {0} rows allowed"
msgstr "仅允许最多{0}行"
-#: frappe/public/js/frappe/list/base_list.js:947
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+msgid "Maybe"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:946
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:168
msgid "Me"
msgstr "我"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
-msgid "Meaning of Submit, Cancel, Amend"
-msgstr "已提交,取消,修订的含义"
+msgid "Meaning of Different Permission Types"
+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:224
-#: frappe/public/js/frappe/utils/utils.js:1889
+#: frappe/public/js/frappe/utils/utils.js:2020
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
@@ -15952,12 +16126,12 @@ msgstr "@提及"
msgid "Mentions"
msgstr "提及"
-#: frappe/public/js/frappe/ui/page.html:25
-#: frappe/public/js/frappe/ui/page.js:167
+#: frappe/public/js/frappe/ui/page.html:47
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Menu"
msgstr "菜单"
-#: frappe/public/js/frappe/form/toolbar.js:253
+#: frappe/public/js/frappe/form/toolbar.js:270
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "与现有合并"
@@ -15991,13 +16165,13 @@ msgstr "只有组和组,叶节点和叶节点之间能合并"
#: frappe/email/doctype/notification/notification.js:215
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
-#: frappe/public/js/frappe/views/communication.js:117
+#: frappe/public/js/frappe/views/communication.js:135
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
msgstr "信息"
-#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:81
msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "消息"
@@ -16028,7 +16202,7 @@ msgstr "消息已发送"
msgid "Message Type"
msgstr "消息类型"
-#: frappe/public/js/frappe/views/communication.js:947
+#: frappe/public/js/frappe/views/communication.js:1018
msgid "Message clipped"
msgstr "邮件被剪辑"
@@ -16125,7 +16299,7 @@ msgstr "元数据"
msgid "Method"
msgstr "方法"
-#: frappe/__init__.py:467
+#: frappe/__init__.py:465
msgid "Method Not Allowed"
msgstr "方法不可调用"
@@ -16214,7 +16388,7 @@ msgstr "小姐"
msgid "Missing DocType"
msgstr "缺失文档类型"
-#: frappe/core/doctype/doctype/doctype.py:1541
+#: frappe/core/doctype/doctype/doctype.py:1555
msgid "Missing Field"
msgstr "缺失字段"
@@ -16234,7 +16408,7 @@ msgstr "缺少权限"
msgid "Missing Value"
msgstr "缺失值"
-#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/ui/field_group.js:129
#: frappe/public/js/frappe/widgets/widget_dialog.js:374
#: frappe/public/js/workflow_builder/store.js:97
#: frappe/workflow/doctype/workflow/workflow.js:71
@@ -16299,7 +16473,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:960
+#: frappe/public/js/frappe/utils/utils.js:953
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
@@ -16346,9 +16520,8 @@ msgstr "模块初始化"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/module_profile/module_profile.json
-#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
+#: frappe/core/doctype/user/user.json
msgid "Module Profile"
msgstr "模块集合"
@@ -16365,7 +16538,7 @@ msgstr "模块入门进度已重置"
msgid "Module to Export"
msgstr "模块导出"
-#: frappe/modules/utils.py:280
+#: frappe/modules/utils.py:323
msgid "Module {} not found"
msgstr "未找到模块{}"
@@ -16480,7 +16653,7 @@ msgstr "更多的文章{0}"
msgid "More content for the bottom of the page."
msgstr "页面底部的更多内容。"
-#: frappe/public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:199
msgid "Most Used"
msgstr "最常用"
@@ -16495,7 +16668,7 @@ msgstr "很可能是密码过长导致"
msgid "Move"
msgstr "移动"
-#: frappe/public/js/frappe/form/grid_row.js:194
+#: frappe/public/js/frappe/form/grid_row.js:196
msgid "Move To"
msgstr "移到"
@@ -16507,19 +16680,19 @@ msgstr "移到废纸篓"
msgid "Move current and all subsequent sections to a new tab"
msgstr "移动当前及以下段到新页签"
-#: frappe/public/js/frappe/form/form.js:178
+#: frappe/public/js/frappe/form/form.js:179
msgid "Move cursor to above row"
msgstr "移动光标至上一行"
-#: frappe/public/js/frappe/form/form.js:182
+#: frappe/public/js/frappe/form/form.js:183
msgid "Move cursor to below row"
msgstr "移动光标至下一行"
-#: frappe/public/js/frappe/form/form.js:186
+#: frappe/public/js/frappe/form/form.js:187
msgid "Move cursor to next column"
msgstr "移动光标至下一列"
-#: frappe/public/js/frappe/form/form.js:190
+#: frappe/public/js/frappe/form/form.js:191
msgid "Move cursor to previous column"
msgstr "移动光标至上一列"
@@ -16531,7 +16704,7 @@ msgstr "移动段到新页签"
msgid "Move the current field and the following fields to a new column"
msgstr "移动当前及以下字段到新栏"
-#: frappe/public/js/frappe/form/grid_row.js:169
+#: frappe/public/js/frappe/form/grid_row.js:171
msgid "Move to Row Number"
msgstr "移至行号"
@@ -16649,7 +16822,7 @@ msgstr "名称(文档名)"
msgid "Name already taken, please set a new name"
msgstr "名称已被占用,请设置新名称"
-#: frappe/model/naming.py:512
+#: frappe/model/naming.py:510
msgid "Name cannot contain special characters like {0}"
msgstr "名称不能包含特殊字符,如{0}"
@@ -16661,7 +16834,7 @@ msgstr "此字段链接到的单据类型,例如客户"
msgid "Name of the new Print Format"
msgstr "新打印格式的名称"
-#: frappe/model/naming.py:507
+#: frappe/model/naming.py:505
msgid "Name of {0} cannot be {1}"
msgstr "{0}的名称不能为{1}"
@@ -16702,7 +16875,7 @@ msgstr "编号规则"
msgid "Naming Series"
msgstr "单据编号模板"
-#: frappe/model/naming.py:268
+#: frappe/model/naming.py:266
msgid "Naming Series mandatory"
msgstr "单据编号模板是必填字段"
@@ -16726,11 +16899,6 @@ msgstr "导航项"
msgid "Navbar Settings"
msgstr "导航栏设置"
-#. Label of the navbar_style (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Navbar Style"
-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'
@@ -16744,39 +16912,44 @@ msgstr "导航栏模板"
msgid "Navbar Template Values"
msgstr "导航栏模板值"
-#: frappe/public/js/frappe/list/list_view.js:1388
+#: frappe/public/js/frappe/list/list_view.js:1396
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
msgstr "向下导航列表"
-#: frappe/public/js/frappe/list/list_view.js:1395
+#: frappe/public/js/frappe/list/list_view.js:1403
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
msgstr "向上导航列表"
-#: frappe/public/js/frappe/ui/page.js:180
+#: frappe/public/js/frappe/ui/page.js:188
msgid "Navigate to main content"
msgstr "跳转到主要内容"
+#. Label of the form_navigation_buttons (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Navigation Buttons"
+msgstr ""
+
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr "导航设置"
-#: frappe/public/js/frappe/list/list_view.js:486
+#: frappe/public/js/frappe/list/list_view.js:489
msgid "Need Help?"
msgstr "需要帮助?"
-#: frappe/desk/doctype/workspace/workspace.py:356
+#: frappe/desk/doctype/workspace/workspace.py:336
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "需具备工作区管理员角色才能编辑其他用户的私有工作区"
-#: frappe/model/document.py:837
+#: frappe/model/document.py:836
msgid "Negative Value"
msgstr "负值"
-#: frappe/database/query.py:665
+#: frappe/database/query.py:687
msgid "Nested filters must be provided as a list or tuple."
msgstr "嵌套筛选器必须作为列表或元组提供。"
@@ -16798,6 +16971,7 @@ msgstr "从不"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/doctype/version/version.py:242
#: frappe/core/page/dashboard_view/dashboard_view.js:173
#: frappe/desk/doctype/todo/todo.js:46
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -16814,7 +16988,7 @@ 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
+#: frappe/public/js/frappe/utils/address_and_contact.js:87
msgid "New Address"
msgstr "新地址"
@@ -16830,8 +17004,8 @@ msgstr "新联系人"
msgid "New Custom Block"
msgstr "新建自定义块"
-#: frappe/printing/page/print/print.js:327
-#: frappe/printing/page/print/print.js:374
+#: frappe/printing/page/print/print.js:335
+#: frappe/printing/page/print/print.js:382
msgid "New Custom Print Format"
msgstr "新自定义打印格式"
@@ -16880,7 +17054,7 @@ msgstr "从网站的联系页面新消息"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
-#: frappe/public/js/frappe/form/toolbar.js:229
+#: frappe/public/js/frappe/form/toolbar.js:246
#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "新名称"
@@ -16901,8 +17075,8 @@ msgstr "新建入门指引"
msgid "New Password"
msgstr "新密码"
-#: frappe/printing/page/print/print.js:299
-#: frappe/printing/page/print/print.js:353
+#: frappe/printing/page/print/print.js:307
+#: frappe/printing/page/print/print.js:361
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
msgstr "新的打印格式名称"
@@ -16929,8 +17103,8 @@ msgstr "新建 快速访问"
msgid "New Users (Last 30 days)"
msgstr "新用户(最近30天)"
-#: frappe/core/doctype/version/version_view.html:15
-#: frappe/core/doctype/version/version_view.html:77
+#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:140
msgid "New Value"
msgstr "新值"
@@ -16938,7 +17112,7 @@ msgstr "新值"
msgid "New Workflow Name"
msgstr "新工作流名称"
-#: frappe/public/js/frappe/views/workspace/workspace.js:404
+#: frappe/public/js/frappe/views/workspace/workspace.js:452
msgid "New Workspace"
msgstr "新建工作区"
@@ -16983,32 +17157,32 @@ msgstr "新用户需由系统管理员手动创建"
msgid "New value to be set"
msgstr "要设置的新值"
-#: frappe/public/js/frappe/form/quick_entry.js:179
-#: frappe/public/js/frappe/form/toolbar.js:48
-#: frappe/public/js/frappe/form/toolbar.js:217
-#: frappe/public/js/frappe/form/toolbar.js:232
-#: frappe/public/js/frappe/form/toolbar.js:594
+#: frappe/public/js/frappe/form/quick_entry.js:180
+#: frappe/public/js/frappe/form/toolbar.js:47
+#: frappe/public/js/frappe/form/toolbar.js:234
+#: frappe/public/js/frappe/form/toolbar.js:249
+#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/model/model.js:612
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:191
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:192
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:250
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
-#: frappe/public/js/frappe/views/breadcrumbs.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:178
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:179
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:228
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/views/breadcrumbs.js:232
#: 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:439
msgid "New {0}"
msgstr "新建 {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:393
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
msgstr "已创建新{0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:385
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
msgstr "新{0}{1}已添加到仪表盘{2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:390
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
msgstr "已创建新{0}{1}"
@@ -17020,7 +17194,7 @@ msgstr "新{0}:{1}"
msgid "New {} releases for the following apps are available"
msgstr "以下应用程序有新版本{}了"
-#: frappe/core/doctype/user/user.py:853
+#: frappe/core/doctype/user/user.py:856
msgid "Newly created user {0} has no roles enabled."
msgstr "新创建的用户 {0} 未启用任何角色"
@@ -17041,7 +17215,7 @@ msgstr "简讯经理"
msgid "Next"
msgstr "下一个"
-#: frappe/public/js/frappe/ui/slides.js:359
+#: frappe/public/js/frappe/ui/slides.js:373
msgctxt "Go to next slide"
msgid "Next"
msgstr "下一步"
@@ -17068,12 +17242,16 @@ msgstr "未来 7 天"
msgid "Next Action Email Template"
msgstr "审批邮件模板"
+#: frappe/core/doctype/success_action/success_action.js:44
+msgid "Next Actions"
+msgstr ""
+
#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Next Actions HTML"
msgstr "下一步操作HTML"
-#: frappe/public/js/frappe/form/toolbar.js:336
+#: frappe/public/js/frappe/form/toolbar.js:357
msgid "Next Document"
msgstr "下一文档"
@@ -17140,20 +17318,24 @@ msgstr "点击进入下一步"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:341
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "否"
@@ -17223,7 +17405,7 @@ msgstr "未设置过滤器"
msgid "No Google Calendar Event to sync."
msgstr "无Google日历事件需同步"
-#: frappe/public/js/frappe/ui/capture.js:262
+#: frappe/public/js/frappe/ui/capture.js:263
msgid "No Images"
msgstr "无图像"
@@ -17242,23 +17424,23 @@ msgstr "未找到邮箱为{0}的LDAP用户"
msgid "No Label"
msgstr "无标签"
-#: frappe/printing/page/print/print.js:768
-#: frappe/printing/page/print/print.js:849
+#: frappe/printing/page/print/print.js:782
+#: frappe/printing/page/print/print.js:863
#: frappe/public/js/frappe/list/bulk_operations.js:98
#: frappe/public/js/frappe/list/bulk_operations.js:170
#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr "无信头"
-#: frappe/model/naming.py:489
+#: frappe/model/naming.py:487
msgid "No Name Specified for {0}"
msgstr "{0}未指定名称"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:346
+#: frappe/public/js/frappe/ui/notifications/notifications.js:355
msgid "No New notifications"
msgstr "暂无新通知"
-#: frappe/core/doctype/doctype/doctype.py:1778
+#: frappe/core/doctype/doctype/doctype.py:1792
msgid "No Permissions Specified"
msgstr "未指定权限"
@@ -17278,11 +17460,11 @@ msgstr "该仪表盘无可用图表"
msgid "No Preview"
msgstr "无预览"
-#: frappe/printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:786
msgid "No Preview Available"
msgstr "预览不可用"
-#: frappe/printing/page/print/print.js:927
+#: frappe/printing/page/print/print.js:941
msgid "No Printer is Available."
msgstr "没有可用打印机。"
@@ -17290,7 +17472,7 @@ msgstr "没有可用打印机。"
msgid "No RQ Workers connected. Try restarting the bench."
msgstr "无RQ工作进程连接,请尝试重启服务"
-#: frappe/public/js/frappe/form/link_selector.js:135
+#: frappe/public/js/frappe/form/link_selector.js:143
msgid "No Results"
msgstr "没有结果"
@@ -17298,7 +17480,7 @@ msgstr "没有结果"
msgid "No Results found"
msgstr "无数据"
-#: frappe/core/doctype/user/user.py:854
+#: frappe/core/doctype/user/user.py:857
msgid "No Roles Specified"
msgstr "未分派角色"
@@ -17314,7 +17496,7 @@ msgstr "无建议"
msgid "No Tags"
msgstr "无标签"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "No Upcoming Events"
msgstr "无未处理事项"
@@ -17334,7 +17516,7 @@ msgstr "暂无自动优化建议"
msgid "No changes in document"
msgstr "未做任何修改"
-#: frappe/public/js/frappe/views/workspace/workspace.js:707
+#: frappe/public/js/frappe/views/workspace/workspace.js:756
msgid "No changes made"
msgstr "未作更改"
@@ -17398,7 +17580,7 @@ msgstr "找不到可用作看板列的字段。使用“定制表单”添加“
msgid "No file attached"
msgstr "文件未添加"
-#: frappe/public/js/frappe/list/base_list.js:1076
+#: frappe/public/js/frappe/list/base_list.js:1075
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:100
msgid "No filters found"
msgstr "无过滤条件"
@@ -17446,11 +17628,11 @@ msgstr "记录数(最大500行)"
msgid "No of Sent SMS"
msgstr "发送短信数量"
-#: frappe/__init__.py:622 frappe/client.py:113 frappe/client.py:155
+#: frappe/__init__.py:620 frappe/client.py:119 frappe/client.py:161
msgid "No permission for {0}"
msgstr "无权限操作{0}"
-#: frappe/public/js/frappe/form/form.js:1145
+#: frappe/public/js/frappe/form/form.js:1174
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "无权限'{0}' {1}"
@@ -17459,7 +17641,7 @@ msgstr "无权限'{0}' {1}"
msgid "No permission to read {0}"
msgstr "没有读取{0}的权限"
-#: frappe/share.py:216
+#: frappe/share.py:221
msgid "No permission to {0} {1} {2}"
msgstr "无权{0} {1} {2}"
@@ -17475,7 +17657,7 @@ msgstr "{0}中没有记录"
msgid "No records tagged."
msgstr "没有记录被标记。"
-#: frappe/public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:226
msgid "No records will be exported"
msgstr "没有满足条件的记录"
@@ -17483,7 +17665,7 @@ msgstr "没有满足条件的记录"
msgid "No rows"
msgstr "无行数据"
-#: frappe/public/js/frappe/list/list_view.js:2376
+#: frappe/public/js/frappe/list/list_view.js:2404
msgid "No rows selected"
msgstr ""
@@ -17495,11 +17677,12 @@ msgstr "无主题"
msgid "No template found at path: {0}"
msgstr "从{0}路径中找不到模板"
-#: frappe/core/page/permission_manager/permission_manager.js:362
+#: frappe/core/page/permission_manager/permission_manager.js:363
msgid "No user has the role {0}"
msgstr ""
#: frappe/public/js/frappe/form/controls/multiselect_list.js:276
+#: frappe/public/js/frappe/utils/utils.js:988
msgid "No values to show"
msgstr "没有要显示的值"
@@ -17511,7 +17694,7 @@ msgstr "无{0}"
msgid "No {0} found"
msgstr "没有找到{0}"
-#: frappe/public/js/frappe/list/list_view.js:500
+#: frappe/public/js/frappe/list/list_view.js:503
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr "未找到匹配当前筛选条件的{0},请清除筛选条件后查看全部{0}"
@@ -17520,7 +17703,7 @@ msgid "No {0} mail"
msgstr "没有{0}邮件"
#: frappe/public/js/form_builder/utils.js:117
-#: frappe/public/js/frappe/form/grid_row.js:257
+#: frappe/public/js/frappe/form/grid_row.js:259
msgctxt "Title of the 'row number' column"
msgid "No."
msgstr "编号"
@@ -17563,12 +17746,12 @@ msgstr "基础查询(剔除查询参数)次数"
msgid "Normalized Query"
msgstr "规范化查询"
-#: frappe/core/doctype/user/user.py:1076
-#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:298
+#: frappe/core/doctype/user/user.py:1079
+#: frappe/templates/includes/login/login.js:255 frappe/utils/oauth.py:300
msgid "Not Allowed"
msgstr "不允许"
-#: frappe/templates/includes/login/login.js:259
+#: frappe/templates/includes/login/login.js:257
msgid "Not Allowed: Disabled User"
msgstr "不允许:用户已被禁用"
@@ -17610,7 +17793,7 @@ msgstr "未链接到任何记录"
msgid "Not Nullable"
msgstr "不可为空"
-#: frappe/__init__.py:549 frappe/app.py:383 frappe/desk/calendar.py:28
+#: frappe/__init__.py:547 frappe/app.py:383 frappe/desk/calendar.py:28
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:779
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17619,7 +17802,7 @@ msgstr "不可为空"
msgid "Not Permitted"
msgstr "没有权限"
-#: frappe/desk/query_report.py:631
+#: frappe/desk/query_report.py:630
msgid "Not Permitted to read {0}"
msgstr "无权限读取{0}"
@@ -17628,8 +17811,8 @@ msgstr "无权限读取{0}"
msgid "Not Published"
msgstr "未发布"
-#: frappe/public/js/frappe/form/toolbar.js:298
-#: frappe/public/js/frappe/form/toolbar.js:849
+#: frappe/public/js/frappe/form/toolbar.js:316
+#: frappe/public/js/frappe/form/toolbar.js:852
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:183
#: frappe/public/js/frappe/views/reports/report_view.js:203
@@ -17649,7 +17832,7 @@ msgstr "未阅"
msgid "Not Sent"
msgstr "未发送"
-#: frappe/public/js/frappe/list/base_list.js:945
+#: frappe/public/js/frappe/list/base_list.js:944
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:166
msgid "Not Set"
msgstr "空值"
@@ -17663,15 +17846,15 @@ msgstr "未设置"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "不是一个有效的CSV文件"
-#: frappe/core/doctype/user/user.py:304
+#: frappe/core/doctype/user/user.py:307
msgid "Not a valid User Image."
msgstr "非有效用户图像。"
-#: frappe/model/workflow.py:117
+#: frappe/model/workflow.py:135
msgid "Not a valid Workflow Action"
msgstr "不是有效的工作流操作"
-#: frappe/templates/includes/login/login.js:255
+#: frappe/templates/includes/login/login.js:253
msgid "Not a valid user"
msgstr "不是有效的用户"
@@ -17679,7 +17862,7 @@ msgstr "不是有效的用户"
msgid "Not active"
msgstr "非活动"
-#: frappe/permissions.py:389
+#: frappe/permissions.py:395
msgid "Not allowed for {0}: {1}"
msgstr "不允许{0}:{1}"
@@ -17699,11 +17882,11 @@ msgstr "不允许打印已取消的单据"
msgid "Not allowed to print draft documents"
msgstr "不允许打印草稿状态单据"
-#: frappe/permissions.py:219
+#: frappe/permissions.py:225
msgid "Not allowed via controller permission check"
msgstr "自定义代码权限检查has_permission不通过"
-#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
+#: frappe/public/js/frappe/request.js:145 frappe/website/js/website.js:94
msgid "Not found"
msgstr "未找到"
@@ -17716,11 +17899,11 @@ msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "未开启开发模式!请在site_config.json中设置或创建一个自定义单据类型"
#: frappe/core/doctype/system_settings/system_settings.py:234
-#: 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/request.js:157
+#: frappe/public/js/frappe/request.js:168
+#: frappe/public/js/frappe/request.js:173
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:792
+#: frappe/utils/messages.py:161 frappe/website/doctype/web_form/web_form.py:792
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "没有权限"
@@ -17748,7 +17931,7 @@ msgstr "看过笔记的人"
msgid "Note:"
msgstr "备注:"
-#: frappe/public/js/frappe/utils/utils.js:774
+#: frappe/public/js/frappe/utils/utils.js:776
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "注意:更改页面名称将会破坏此页面的上一个URL。"
@@ -17780,7 +17963,7 @@ msgstr "注:您的账户删除请求将在{0}小时内处理。"
msgid "Notes:"
msgstr "注意事项:"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "Nothing New"
msgstr "无新消息"
@@ -17792,8 +17975,8 @@ msgstr "无内容可重做"
msgid "Nothing left to undo"
msgstr "无内容可撤销"
-#: frappe/public/js/frappe/list/base_list.js:365
-#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/public/js/frappe/list/base_list.js:364
+#: frappe/public/js/frappe/views/reports/query_report.js:106
#: frappe/templates/includes/list/list.html:9
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
@@ -17804,11 +17987,13 @@ msgid "Nothing to update"
msgstr "无需更新"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
+#. Option for the 'Type' (Select) field in DocType 'Event Notifications'
#. Name of a DocType
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/communication/mixins.py:142
+#: frappe/desk/doctype/event_notifications/event_notifications.json
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:258
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:294
msgid "Notification"
msgstr "通知"
@@ -17824,7 +18009,7 @@ msgstr "通知收件人"
#. Name of a DocType
#: frappe/desk/doctype/notification_settings/notification_settings.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:38
+#: frappe/public/js/frappe/ui/notifications/notifications.js:41
msgid "Notification Settings"
msgstr "通知设置"
@@ -17833,11 +18018,6 @@ msgstr "通知设置"
msgid "Notification Subscribed Document"
msgstr "订阅通知的文档"
-#. Label of a chart in the System Workspace
-#: frappe/core/workspace/system/system.json
-msgid "Notification Summary"
-msgstr ""
-
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
msgstr "通知已发送至"
@@ -17855,13 +18035,15 @@ msgid "Notification: user {0} has no Mobile number set"
msgstr "通知:用户{0}未设置手机号码"
#. Label of the notifications (Check) field in DocType 'User'
-#: frappe/core/doctype/user/user.json
-#: frappe/public/js/frappe/ui/notifications/notifications.js:61
-#: frappe/public/js/frappe/ui/notifications/notifications.js:218
+#. Label of the notifications_tab (Tab Break) field in DocType 'Event'
+#. Label of the notifications (Table) field in DocType 'Event'
+#: frappe/core/doctype/user/user.json frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:68
+#: frappe/public/js/frappe/ui/notifications/notifications.js:227
msgid "Notifications"
msgstr "通知"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:330
+#: frappe/public/js/frappe/ui/notifications/notifications.js:339
msgid "Notifications Disabled"
msgstr "通知已禁用"
@@ -18097,7 +18279,7 @@ msgstr "OTP Secret已被重置。下次登录时需要重新注册。"
msgid "OTP placeholder should be defined as {{ otp }} "
msgstr ""
-#: frappe/templates/includes/login/login.js:355
+#: frappe/templates/includes/login/login.js:354
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
msgstr "使用OTP应用的OTP设置未完成。请联系管理员。"
@@ -18137,7 +18319,7 @@ msgstr "X轴偏移"
msgid "Offset Y"
msgstr "Y轴偏移"
-#: frappe/database/query.py:304
+#: frappe/database/query.py:307
msgid "Offset must be a non-negative integer"
msgstr "偏移量必须为非负整数"
@@ -18145,7 +18327,7 @@ msgstr "偏移量必须为非负整数"
msgid "Old Password"
msgstr "旧密码"
-#: frappe/custom/doctype/custom_field/custom_field.py:413
+#: frappe/custom/doctype/custom_field/custom_field.py:414
msgid "Old and new fieldnames are same."
msgstr "新旧字段名相同。"
@@ -18212,7 +18394,7 @@ msgstr "在或之后"
msgid "On or Before"
msgstr "在或之前"
-#: frappe/public/js/frappe/views/communication.js:957
+#: frappe/public/js/frappe/views/communication.js:1028
msgid "On {0}, {1} wrote:"
msgstr "{0},{1}写道:"
@@ -18256,7 +18438,7 @@ msgstr "入职完成"
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
msgstr "一旦提交后无法再修改。只能先取消再点修订按钮,生成新版本后修改。"
-#: frappe/core/page/permission_manager/permission_manager_help.html:35
+#: frappe/core/page/permission_manager/permission_manager_help.html:102
msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)."
msgstr "设置此选项,用户将只能访问包含了此链接的单据(如博客文章) 。"
@@ -18272,11 +18454,11 @@ msgstr "来自{}的一次性密码(OTP)注册码"
msgid "One of"
msgstr "之一"
-#: frappe/client.py:217
+#: frappe/client.py:223
msgid "Only 200 inserts allowed in one request"
msgstr "只有200将允许一个请求"
-#: frappe/email/doctype/email_queue/email_queue.py:90
+#: frappe/email/doctype/email_queue/email_queue.py:91
msgid "Only Administrator can delete Email Queue"
msgstr "只有管理员可以删除邮件队列"
@@ -18297,7 +18479,7 @@ msgstr "只允许管理员使用记录器"
msgid "Only Allow Edit For"
msgstr "角色(允许编辑)"
-#: frappe/core/doctype/doctype/doctype.py:1635
+#: frappe/core/doctype/doctype/doctype.py:1649
msgid "Only Options allowed for Data field are:"
msgstr "数据字段仅允许以下选项:"
@@ -18320,11 +18502,11 @@ msgstr "仅工作区管理员可编辑公共工作区"
msgid "Only allow System Managers to upload public files"
msgstr ""
-#: frappe/modules/utils.py:68
+#: frappe/modules/utils.py:80
msgid "Only allowed to export customizations in developer mode"
msgstr "仅开发者模式下允许导出自定义项"
-#: frappe/model/document.py:1288
+#: frappe/model/document.py:1287
msgid "Only draft documents can be discarded"
msgstr "仅草稿文档可丢弃"
@@ -18367,7 +18549,7 @@ msgstr "仅被分配者可完成此待办事项。"
msgid "Only {0} emailed reports are allowed per user."
msgstr "每位用户仅允许通过邮件发送{0}份报告。"
-#: frappe/templates/includes/login/login.js:291
+#: frappe/templates/includes/login/login.js:289
msgid "Oops! Something went wrong."
msgstr "糟糕!出错了。"
@@ -18390,8 +18572,8 @@ msgctxt "Access"
msgid "Open"
msgstr "打开"
-#: frappe/desk/page/desktop/desktop.js:217
-#: frappe/desk/page/desktop/desktop.js:226
+#: frappe/desk/page/desktop/desktop.js:470
+#: frappe/desk/page/desktop/desktop.js:479
#: frappe/public/js/frappe/ui/keyboard.js:207
#: frappe/public/js/frappe/ui/keyboard.js:217
msgid "Open Awesomebar"
@@ -18427,6 +18609,10 @@ msgstr "打开引用文档"
msgid "Open Settings"
msgstr "打开设置"
+#: frappe/public/js/frappe/form/toolbar.js:472
+msgid "Open Sidebar"
+msgstr ""
+
#: frappe/public/js/frappe/ui/toolbar/about.js:11
msgid "Open Source Applications for the Web"
msgstr "开源为Web应用程序"
@@ -18441,7 +18627,7 @@ msgstr "在新标签页打开URL"
msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
msgstr "打开含必填字段的对话框快速创建记录。对话框中需至少显示一个必填字段。"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:238
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:245
msgid "Open a module or tool"
msgstr "打开一个模块或工具"
@@ -18453,11 +18639,11 @@ msgstr "打开控制台"
msgid "Open in a new tab"
msgstr "在新标签页打开"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:243
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
msgid "Open in new tab"
msgstr ""
-#: frappe/public/js/frappe/list/list_view.js:1441
+#: frappe/public/js/frappe/list/list_view.js:1449
msgctxt "Description of a list view shortcut"
msgid "Open list item"
msgstr "打开列表项"
@@ -18472,16 +18658,16 @@ msgstr "在手机上打开授权认证应用程序。"
#: frappe/desk/doctype/todo/todo_list.js:17
#: frappe/public/js/frappe/form/templates/form_links.html:18
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:315
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:337
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:338
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:368
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:369
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:288
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:300
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:301
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:311
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:312
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:321
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:322
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:340
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:341
msgid "Open {0}"
msgstr "打开{0}"
@@ -18513,7 +18699,7 @@ msgstr "工序"
msgid "Operator must be one of {0}"
msgstr "运算符必须是{0}"
-#: frappe/database/query.py:2031
+#: frappe/database/query.py:2109
msgid "Operator {0} requires exactly 2 arguments (left and right operands)"
msgstr ""
@@ -18539,7 +18725,7 @@ msgstr "选项2"
msgid "Option 3"
msgstr "选项3"
-#: frappe/core/doctype/doctype/doctype.py:1653
+#: frappe/core/doctype/doctype/doctype.py:1667
msgid "Option {0} for field {1} is not a child table"
msgstr "为字段{1}设置的选项{0}未被定义为是子表"
@@ -18573,7 +18759,7 @@ msgstr "可选:在这个表达式为真时发送通知"
msgid "Options"
msgstr "选项"
-#: frappe/core/doctype/doctype/doctype.py:1381
+#: frappe/core/doctype/doctype/doctype.py:1395
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
msgstr "选择“动态链接”类型的字段都必须指向另一个选项为'DocType“的链接字段"
@@ -18582,7 +18768,7 @@ msgstr "选择“动态链接”类型的字段都必须指向另一个选项为
msgid "Options Help"
msgstr "选项帮助"
-#: frappe/core/doctype/doctype/doctype.py:1682
+#: frappe/core/doctype/doctype/doctype.py:1696
msgid "Options for Rating field can range from 3 to 10"
msgstr "评分字段选项范围3至10"
@@ -18590,7 +18776,7 @@ msgstr "评分字段选项范围3至10"
msgid "Options for select. Each option on a new line."
msgstr "选择项。每行一个选项。"
-#: frappe/core/doctype/doctype/doctype.py:1398
+#: frappe/core/doctype/doctype/doctype.py:1412
msgid "Options for {0} must be set before setting the default value."
msgstr "设置默认值前必须先设置{0}的选项。"
@@ -18598,7 +18784,7 @@ msgstr "设置默认值前必须先设置{0}的选项。"
msgid "Options is required for field {0} of type {1}"
msgstr "{1}类型字段{0}必须设置选项"
-#: frappe/model/base_document.py:972
+#: frappe/model/base_document.py:989
msgid "Options not set for link field {0}"
msgstr "链接字段未设置选项{0}"
@@ -18614,7 +18800,7 @@ msgstr "橙色"
msgid "Order"
msgstr "订购"
-#: frappe/database/query.py:1216
+#: frappe/database/query.py:1258
msgid "Order By must be a string"
msgstr "排序依据必须为字符串"
@@ -18634,8 +18820,12 @@ msgstr "公司发展历程标题"
msgid "Orientation"
msgstr "方向"
-#: frappe/core/doctype/version/version_view.html:14
-#: frappe/core/doctype/version/version_view.html:76
+#: frappe/core/doctype/version/version.py:241
+msgid "Original"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:139
msgid "Original Value"
msgstr "原值"
@@ -18710,18 +18900,20 @@ 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:85
+#: frappe/printing/page/print/print.js:91
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1834
+#: frappe/public/js/frappe/views/reports/query_report.js:1910
msgid "PDF"
msgstr "PDF"
-#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "PDF Generation in Progress"
msgstr "PDF文件生成中"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#. Label of the pdf_generator (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Generator"
msgstr "PDF生成器"
@@ -18745,7 +18937,7 @@ msgstr "PDF页宽(毫米)"
msgid "PDF Settings"
msgstr "PDF设置"
-#: frappe/utils/print_format.py:292
+#: frappe/utils/print_format.py:334
msgid "PDF generation failed"
msgstr "PDF生成失败"
@@ -18753,11 +18945,11 @@ msgstr "PDF生成失败"
msgid "PDF generation failed because of broken image links"
msgstr "PDF生成,因为破碎的图像链接失败"
-#: frappe/printing/page/print/print.js:675
+#: frappe/printing/page/print/print.js:683
msgid "PDF generation may not work as expected."
msgstr "PDF生成可能无法按预期工作。"
-#: frappe/printing/page/print/print.js:593
+#: frappe/printing/page/print/print.js:601
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr "不支持通过 \"原始打印 \"进行 PDF 打印。"
@@ -18916,7 +19108,7 @@ msgstr "页宽(毫米)"
msgid "Page has expired!"
msgstr "页已过期!"
-#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/printing/doctype/print_settings/print_settings.py:71
#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr "页面高度和宽度不能为零"
@@ -18932,7 +19124,7 @@ msgstr "在网站上显示的页面\n"
#: frappe/public/html/print_template.html:25
#: frappe/public/js/frappe/views/reports/print_tree.html:89
-#: frappe/public/js/frappe/web_form/web_form.js:288
+#: frappe/public/js/frappe/web_form/web_form.js:284
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
msgstr "第{0}页,共{1}页"
@@ -18943,7 +19135,7 @@ msgid "Parameter"
msgstr "参数"
#: frappe/public/js/frappe/model/model.js:142
-#: frappe/public/js/frappe/views/workspace/workspace.js:448
+#: frappe/public/js/frappe/views/workspace/workspace.js:496
msgid "Parent"
msgstr "父"
@@ -18976,11 +19168,11 @@ msgstr "父字段"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/doctype/doctype/doctype.py:948
+#: frappe/core/doctype/doctype/doctype.py:951
msgid "Parent Field (Tree)"
msgstr "父字段(树)"
-#: frappe/core/doctype/doctype/doctype.py:954
+#: frappe/core/doctype/doctype/doctype.py:957
msgid "Parent Field must be a valid fieldname"
msgstr "父字段必须是有效字段名"
@@ -18994,7 +19186,7 @@ msgstr ""
msgid "Parent Label"
msgstr "父标签"
-#: frappe/core/doctype/doctype/doctype.py:1212
+#: frappe/core/doctype/doctype/doctype.py:1215
msgid "Parent Missing"
msgstr "父项缺失"
@@ -19019,11 +19211,11 @@ msgstr "Parent是将数据添加到的单据的名称。"
msgid "Parent-to-child or child-to-different-child grouping is not allowed."
msgstr "不允许父子层级或子级到不同子级的分组方式。"
-#: frappe/permissions.py:835
+#: frappe/permissions.py:841
msgid "Parentfield not specified in {0}: {1}"
msgstr "{0}中未指定父字段:{1}"
-#: frappe/client.py:470
+#: frappe/client.py:519
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr "插入子记录需要父类型、父项和父字段"
@@ -19042,7 +19234,7 @@ msgstr "部分成功"
msgid "Partially Sent"
msgstr "部分发送"
-#. Label of the participants (Section Break) field in DocType 'Event'
+#. Label of the participants_tab (Tab Break) field in DocType 'Event'
#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
msgstr "参与者"
@@ -19079,11 +19271,11 @@ msgstr "已创建"
msgid "Password"
msgstr "密码"
-#: frappe/core/doctype/user/user.py:1141
+#: frappe/core/doctype/user/user.py:1144
msgid "Password Email Sent"
msgstr "密码邮件已发送"
-#: frappe/core/doctype/user/user.py:497
+#: frappe/core/doctype/user/user.py:500
msgid "Password Reset"
msgstr "密码重置"
@@ -19092,7 +19284,7 @@ msgstr "密码重置"
msgid "Password Reset Link Generation Limit"
msgstr "密码重置链接生成限制"
-#: frappe/public/js/frappe/form/grid_row.js:896
+#: frappe/public/js/frappe/form/grid_row.js:895
msgid "Password cannot be filtered"
msgstr "密码不可被过滤"
@@ -19121,11 +19313,11 @@ msgstr "邮箱账户缺少密码"
msgid "Password not found for {0} {1} {2}"
msgstr "未找到{0} {1} {2}的密码"
-#: frappe/core/doctype/user/user.py:1307
+#: frappe/core/doctype/user/user.py:1310
msgid "Password requirements not met"
msgstr ""
-#: frappe/core/doctype/user/user.py:1140
+#: frappe/core/doctype/user/user.py:1143
msgid "Password reset instructions have been sent to {}'s email"
msgstr "密码重置说明已发送至{}的邮箱"
@@ -19137,7 +19329,7 @@ msgstr "密码已设置"
msgid "Password size exceeded the maximum allowed size"
msgstr "密码长度超过允许最大值"
-#: frappe/core/doctype/user/user.py:926
+#: frappe/core/doctype/user/user.py:929
msgid "Password size exceeded the maximum allowed size."
msgstr "密码长度超过允许最大值"
@@ -19199,7 +19391,7 @@ msgstr "服务器证书的路径"
msgid "Path to private Key File"
msgstr "私钥文件的路径"
-#: frappe/modules/utils.py:209
+#: frappe/modules/utils.py:252
msgid "Path {0} is not within module {1}"
msgstr ""
@@ -19284,15 +19476,15 @@ msgstr "权限级别"
msgid "Permanent"
msgstr "常驻"
-#: frappe/public/js/frappe/form/form.js:1031
+#: frappe/public/js/frappe/form/form.js:1060
msgid "Permanently Cancel {0}?"
msgstr "取消{0} ?"
-#: frappe/public/js/frappe/form/form.js:1077
+#: frappe/public/js/frappe/form/form.js:1106
msgid "Permanently Discard {0}?"
msgstr "永久丢弃{0}?"
-#: frappe/public/js/frappe/form/form.js:864
+#: frappe/public/js/frappe/form/form.js:893
msgid "Permanently Submit {0}?"
msgstr "正式提交{0}?"
@@ -19300,7 +19492,11 @@ msgstr "正式提交{0}?"
msgid "Permanently delete {0}?"
msgstr "永久删除{0} ?"
-#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:914
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "Permission"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:957
msgid "Permission Error"
msgstr "权限错误"
@@ -19310,12 +19506,12 @@ msgid "Permission Inspector"
msgstr "权限调试工具"
#. Label of the permlevel (Int) field in DocType 'Custom Field'
-#: frappe/core/page/permission_manager/permission_manager.js:513
+#: frappe/core/page/permission_manager/permission_manager.js:514
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
msgstr "权限级别"
-#: frappe/core/page/permission_manager/permission_manager_help.html:22
+#: frappe/core/page/permission_manager/permission_manager_help.html:89
msgid "Permission Levels"
msgstr "权限级别"
@@ -19324,11 +19520,6 @@ msgstr "权限级别"
msgid "Permission Log"
msgstr "权限日志"
-#. Label of a shortcut in the Users Workspace
-#: frappe/core/workspace/users/users.json
-msgid "Permission Manager"
-msgstr "角色权限管理"
-
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
@@ -19359,7 +19550,6 @@ msgstr ""
#. Label of the permissions (Table) field in DocType 'DocType'
#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
#. Label of the permissions (Section Break) field in DocType 'System Settings'
-#. Label of a Card Break in the Users Workspace
#. Label of the permissions (Section Break) field in DocType 'Customize Form
#. Field'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
@@ -19370,13 +19560,12 @@ msgstr ""
#: frappe/core/doctype/user/user.js:136 frappe/core/doctype/user/user.js:145
#: frappe/core/doctype/user/user.js:154
#: frappe/core/page/permission_manager/permission_manager.js:221
-#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
msgstr "权限"
-#: frappe/core/doctype/doctype/doctype.py:1869
-#: frappe/core/doctype/doctype/doctype.py:1879
+#: frappe/core/doctype/doctype/doctype.py:1933
+#: frappe/core/doctype/doctype/doctype.py:1943
msgid "Permissions Error"
msgstr "权限错误"
@@ -19388,11 +19577,11 @@ msgstr "权限会自动应用于标准报表和搜索。"
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:93
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
+#: frappe/core/page/permission_manager/permission_manager_help.html:91
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
msgstr "0级权限是单据级的权限,也就是说,它们是主要用于访问文件。"
@@ -19462,13 +19651,13 @@ msgstr "电话"
msgid "Phone No."
msgstr "电话号码"
-#: frappe/utils/__init__.py:124
+#: frappe/utils/__init__.py:115
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "字段{1}中设置的电话号码{0}无效"
#: frappe/public/js/frappe/form/print_utils.js:68
-#: frappe/public/js/frappe/views/reports/report_view.js:1570
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1571
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Pick Columns"
msgstr "选择报表输出字段"
@@ -19526,7 +19715,7 @@ msgstr "请复制此网址主题定制。"
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "请通过pip安装ldap3库以使用ldap功能。"
-#: frappe/public/js/frappe/views/reports/query_report.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
msgstr "请设置图表"
@@ -19542,7 +19731,7 @@ msgstr "请在您的电子邮件中添加主题"
msgid "Please add a valid comment."
msgstr "请添加有效评论"
-#: frappe/core/doctype/user/user.py:1123
+#: frappe/core/doctype/user/user.py:1126
msgid "Please ask your administrator to verify your sign-up"
msgstr "请联络管理员确认您的注册"
@@ -19550,11 +19739,11 @@ msgstr "请联络管理员确认您的注册"
msgid "Please attach a file first."
msgstr "请附上文件第一。"
-#: frappe/printing/doctype/letter_head/letter_head.py:82
+#: frappe/printing/doctype/letter_head/letter_head.py:89
msgid "Please attach an image file to set HTML for Footer."
msgstr "请附加图像文件以设置页脚HTML"
-#: frappe/printing/doctype/letter_head/letter_head.py:70
+#: frappe/printing/doctype/letter_head/letter_head.py:77
msgid "Please attach an image file to set HTML for Letter Head."
msgstr "请附加图像文件以设置信头HTML"
@@ -19566,11 +19755,11 @@ msgstr "请附加安装包"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "请检查仪表板图表设置的过滤值:{}"
-#: frappe/model/base_document.py:1052
+#: frappe/model/base_document.py:1069
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "请检查为字段{0}设置的“提取自”的值"
-#: frappe/core/doctype/user/user.py:1121
+#: frappe/core/doctype/user/user.py:1124
msgid "Please check your email for verification"
msgstr "请在您的电子邮件中查看验证码"
@@ -19602,7 +19791,7 @@ msgstr "请点击以下链接来设置新密码"
msgid "Please confirm your action to {0} this document."
msgstr "确认 {0} 本单据。"
-#: frappe/printing/page/print/print.js:677
+#: frappe/printing/page/print/print.js:685
msgid "Please contact your system manager to install correct version."
msgstr "请联系系统管理员安装正确版本"
@@ -19632,10 +19821,10 @@ msgstr "禁用用户名/密码登录前,请至少启用一个社交登录密
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
-#: frappe/printing/page/print/print.js:697
-#: frappe/printing/page/print/print.js:733
+#: frappe/printing/page/print/print.js:705
+#: frappe/printing/page/print/print.js:747
#: frappe/public/js/frappe/list/bulk_operations.js:161
-#: frappe/public/js/frappe/utils/utils.js:1577
+#: frappe/public/js/frappe/utils/utils.js:1700
msgid "Please enable pop-ups"
msgstr "请启用弹出窗口"
@@ -19648,7 +19837,7 @@ msgstr "请在浏览器中启用弹窗"
msgid "Please enable {} before continuing."
msgstr "请先启用{}再继续"
-#: frappe/utils/oauth.py:220
+#: frappe/utils/oauth.py:222
msgid "Please ensure that your profile has an email address"
msgstr "请确保您的个人资料有一个电子邮件地址,"
@@ -19722,15 +19911,15 @@ msgstr "请登录后发表评论"
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "请确保参考通信单据未被递归引用。"
-#: frappe/model/document.py:1037
+#: frappe/model/document.py:1036
msgid "Please refresh to get the latest document."
msgstr "请刷新获取最新数据。"
-#: frappe/printing/page/print/print.js:594
+#: frappe/printing/page/print/print.js:602
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr "请在打印机设置中移除打印机映射后重试"
-#: frappe/public/js/frappe/form/form.js:359
+#: frappe/public/js/frappe/form/form.js:360
msgid "Please save before attaching."
msgstr "请安装前保存。"
@@ -19746,7 +19935,7 @@ msgstr "请删除分派之前保存的单据"
msgid "Please save the form before previewing the message"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1722
+#: frappe/public/js/frappe/views/reports/report_view.js:1723
msgid "Please save the report first"
msgstr "请先保存报表"
@@ -19766,7 +19955,7 @@ msgstr "请先选择实体类型"
msgid "Please select Minimum Password Score"
msgstr "请选择最低密码分数"
-#: frappe/public/js/frappe/views/reports/query_report.js:1215
+#: frappe/public/js/frappe/views/reports/query_report.js:1227
msgid "Please select X and Y fields"
msgstr "请选择X和Y轴字段"
@@ -19774,7 +19963,7 @@ msgstr "请选择X和Y轴字段"
msgid "Please select a DocType in options before setting filters"
msgstr ""
-#: frappe/utils/__init__.py:131
+#: frappe/utils/__init__.py:122
msgid "Please select a country code for field {1}."
msgstr "请为字段{1}选择国家代码"
@@ -19824,11 +20013,11 @@ msgstr "请选择{0}"
msgid "Please set Email Address"
msgstr "请设置电子邮件地址"
-#: frappe/printing/page/print/print.js:608
+#: frappe/printing/page/print/print.js:616
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "请在“打印机设置”中为此打印格式设置打印机映射"
-#: frappe/public/js/frappe/views/reports/query_report.js:1438
+#: frappe/public/js/frappe/views/reports/query_report.js:1450
msgid "Please set filters"
msgstr "请设置过滤条件"
@@ -19836,7 +20025,7 @@ msgstr "请设置过滤条件"
msgid "Please set filters value in Report Filter table."
msgstr "请设置在报表过滤表过滤条件值。"
-#: frappe/model/naming.py:580
+#: frappe/model/naming.py:578
msgid "Please set the document name"
msgstr "请设置文档名称"
@@ -19856,7 +20045,7 @@ msgstr "请通过SMS设置将其设置为身份验证方式之前设置短信"
msgid "Please setup a message first"
msgstr "请先设置一条消息"
-#: frappe/core/doctype/user/user.py:462
+#: frappe/core/doctype/user/user.py:465
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "请通过设置 > 邮箱账户配置默认发件账户"
@@ -19868,7 +20057,7 @@ msgstr "请通过工具 > 邮箱账户配置默认发件账户"
msgid "Please specify"
msgstr "请先输入"
-#: frappe/permissions.py:809
+#: frappe/permissions.py:815
msgid "Please specify a valid parent DocType for {0}"
msgstr "请为{0}指定有效的父文档类型"
@@ -19896,7 +20085,7 @@ msgstr "请指定需要检查的日期时间字段"
msgid "Please specify which value field must be checked"
msgstr "请指定必须检查的值字段"
-#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/request.js:185
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
msgstr "请再试一次"
@@ -20017,11 +20206,11 @@ msgstr "过账时间戳"
msgid "Precision"
msgstr "精度"
-#: frappe/core/doctype/doctype/doctype.py:1691
+#: frappe/core/doctype/doctype/doctype.py:1705
msgid "Precision ({0}) for {1} cannot be greater than its length ({2})."
msgstr "{1}的精度({0})不能大于其长度({2})。"
-#: frappe/core/doctype/doctype/doctype.py:1415
+#: frappe/core/doctype/doctype/doctype.py:1429
msgid "Precision should be between 1 and 6"
msgstr "精度应为1和6之间"
@@ -20073,11 +20262,11 @@ msgstr "后台运行报表用户"
msgid "Prepared report render failed"
msgstr "预制报表渲染失败"
-#: frappe/public/js/frappe/views/reports/query_report.js:478
+#: frappe/public/js/frappe/views/reports/query_report.js:479
msgid "Preparing Report"
msgstr "准备报表"
-#: frappe/public/js/frappe/views/communication.js:425
+#: frappe/public/js/frappe/views/communication.js:484
msgid "Prepend the template to the email message"
msgstr "将模板内容追加到邮件正文(消息)"
@@ -20085,7 +20274,7 @@ msgstr "将模板内容追加到邮件正文(消息)"
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
msgstr "按Alt键可在菜单和侧边栏中触发其他快速访问"
-#: frappe/public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:104
msgid "Press Enter to save"
msgstr "按Enter键保存"
@@ -20103,7 +20292,7 @@ msgstr "按Enter键保存"
#: 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
+#: frappe/public/js/frappe/ui/capture.js:237
msgid "Preview"
msgstr "预览"
@@ -20147,16 +20336,16 @@ msgstr "预览:"
msgid "Previous"
msgstr "上一个"
-#: frappe/public/js/frappe/ui/slides.js:351
+#: frappe/public/js/frappe/ui/slides.js:365
msgctxt "Go to previous slide"
msgid "Previous"
msgstr "上一条"
-#: frappe/public/js/frappe/form/toolbar.js:328
+#: frappe/public/js/frappe/form/toolbar.js:349
msgid "Previous Document"
msgstr "上一份文档"
-#: frappe/public/js/frappe/form/form.js:2232
+#: frappe/public/js/frappe/form/form.js:2263
msgid "Previous Submission"
msgstr "前次提交"
@@ -20209,19 +20398,19 @@ msgstr "文档类型{0}的主键存在值,不可修改"
#: 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:79
+#: frappe/core/page/permission_manager/permission_manager_help.html:51
+#: frappe/printing/page/print/print.js:85
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
#: 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:393
-#: frappe/public/js/frappe/form/toolbar.js:405
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1819
+#: frappe/public/js/frappe/views/reports/query_report.js:1895
#: frappe/public/js/frappe/views/reports/report_view.js:1533
#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18
msgid "Print"
msgstr "打印"
-#: frappe/public/js/frappe/list/list_view.js:2243
+#: frappe/public/js/frappe/list/list_view.js:2251
msgctxt "Button in list view actions menu"
msgid "Print"
msgstr "打印"
@@ -20239,8 +20428,9 @@ msgstr "打印单据"
#: 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:108
-#: frappe/printing/page/print/print.js:886
+#: frappe/printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:900
+#: frappe/public/js/frappe/form/print_utils.js:31
#: frappe/public/js/frappe/list/bulk_operations.js:59
#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
@@ -20284,7 +20474,7 @@ msgstr "打印格式帮助"
msgid "Print Format Type"
msgstr "打印格式类型"
-#: frappe/public/js/frappe/views/reports/query_report.js:1608
+#: frappe/public/js/frappe/views/reports/query_report.js:1644
msgid "Print Format not found"
msgstr "未找到打印格式"
@@ -20317,11 +20507,11 @@ msgstr "不打印"
msgid "Print Hide If No Value"
msgstr "无值不打印"
-#: frappe/public/js/frappe/views/communication.js:159
+#: frappe/public/js/frappe/views/communication.js:186
msgid "Print Language"
msgstr "打印语言"
-#: frappe/public/js/frappe/form/print_utils.js:225
+#: frappe/public/js/frappe/form/print_utils.js:244
msgid "Print Sent to the printer!"
msgstr "已发送到打印机!"
@@ -20334,8 +20524,8 @@ msgstr "打印服务器"
#. Name of a DocType
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.js:6
-#: frappe/printing/page/print/print.js:174
-#: frappe/public/js/frappe/form/print_utils.js:99
+#: frappe/printing/page/print/print.js:182
+#: frappe/public/js/frappe/form/print_utils.js:118
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
msgstr "打印设置"
@@ -20374,7 +20564,7 @@ msgstr "打印宽度"
msgid "Print Width of the field, if the field is a column in a table"
msgstr "表中的列(字段)打印宽度"
-#: frappe/public/js/frappe/form/form.js:171
+#: frappe/public/js/frappe/form/form.js:172
msgid "Print document"
msgstr "打印单据"
@@ -20383,11 +20573,11 @@ msgstr "打印单据"
msgid "Print with letterhead"
msgstr "打印表头"
-#: frappe/printing/page/print/print.js:895
+#: frappe/printing/page/print/print.js:909
msgid "Printer"
msgstr "打印机"
-#: frappe/printing/page/print/print.js:872
+#: frappe/printing/page/print/print.js:886
msgid "Printer Mapping"
msgstr "打印机映射"
@@ -20397,15 +20587,15 @@ msgstr "打印机映射"
msgid "Printer Name"
msgstr "打印机名称"
-#: frappe/printing/page/print/print.js:864
+#: frappe/printing/page/print/print.js:878
msgid "Printer Settings"
msgstr "打印机设置"
-#: frappe/printing/page/print/print.js:607
+#: frappe/printing/page/print/print.js:615
msgid "Printer mapping not set."
msgstr "未设置打印机映射"
-#: frappe/utils/print_format.py:294
+#: frappe/utils/print_format.py:336
msgid "Printing failed"
msgstr "打印失败"
@@ -20454,7 +20644,7 @@ msgstr "ProTip:添加Reference: {{ reference_doctype }} {{ reference_nam
msgid "Proceed"
msgstr "继续"
-#: frappe/public/js/frappe/views/reports/query_report.js:943
+#: frappe/public/js/frappe/views/reports/query_report.js:955
msgid "Proceed Anyway"
msgstr "仍然继续"
@@ -20494,9 +20684,9 @@ msgid "Project"
msgstr "项目"
#. Label of the property (Data) field in DocType 'Property Setter'
-#: frappe/core/doctype/version/version_view.html:13
-#: frappe/core/doctype/version/version_view.html:38
-#: frappe/core/doctype/version/version_view.html:75
+#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:101
+#: frappe/core/doctype/version/version_view.html:138
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
msgstr "属性"
@@ -20566,7 +20756,7 @@ msgstr "提供者名称"
#: 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:454
+#: frappe/public/js/frappe/views/workspace/workspace.js:502
msgid "Public"
msgstr "公开"
@@ -20716,7 +20906,7 @@ msgstr "二维码"
msgid "QR Code for Login Verification"
msgstr "用于登录验证的QR码"
-#: frappe/public/js/frappe/form/print_utils.js:234
+#: frappe/public/js/frappe/form/print_utils.js:253
msgid "QZ Tray Failed:"
msgstr "QZ托盘失败:"
@@ -20778,7 +20968,7 @@ msgstr "查询必须为SELECT或只读WITH类型"
msgid "Queue"
msgstr "队列"
-#: frappe/utils/background_jobs.py:738
+#: frappe/utils/background_jobs.py:737
msgid "Queue Overloaded"
msgstr "队列过载"
@@ -20799,7 +20989,7 @@ msgstr "队列类型"
msgid "Queue in Background (BETA)"
msgstr "启用后台提交(试验功能)"
-#: frappe/utils/background_jobs.py:563
+#: frappe/utils/background_jobs.py:562
msgid "Queue should be one of {0}"
msgstr "队列应该是{0}"
@@ -20840,7 +21030,7 @@ msgstr "排队备份。您将收到一封包含下载链接的电子邮件"
msgid "Queues"
msgstr "队列列表"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:85
+#: frappe/desk/doctype/bulk_update/bulk_update.py:86
msgid "Queuing {0} for Submission"
msgstr "正在将{0}加入提交队列"
@@ -20932,6 +21122,15 @@ msgstr "原生命令"
msgid "Raw Email"
msgstr "原始电子邮件"
+#: frappe/core/doctype/communication/email.py:95
+msgid "Raw HTML can be used only with Email Templates having 'Use HTML' checked. Proceeding with plain text email."
+msgstr ""
+
+#. Description of the 'Send As Raw HTML' (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Raw HTML emails are rendered as complete Jinja templates. Otherwise, emails are wrapped in the standard.html email template, which inserts brand_logo, header and footer."
+msgstr ""
+
#. Label of the raw_printing (Check) field in DocType 'Print Format'
#. Label of the raw_printing_section (Section Break) field in DocType 'Print
#. Settings'
@@ -20940,7 +21139,7 @@ msgstr "原始电子邮件"
msgid "Raw Printing"
msgstr "原生打印"
-#: frappe/printing/page/print/print.js:179
+#: frappe/printing/page/print/print.js:187
msgid "Raw Printing Setting"
msgstr "原始打印设置"
@@ -20958,7 +21157,7 @@ msgstr "回覆:"
#: frappe/core/doctype/communication/communication.js:268
#: frappe/public/js/frappe/form/footer/form_timeline.js:601
-#: frappe/public/js/frappe/views/communication.js:361
+#: frappe/public/js/frappe/views/communication.js:419
msgid "Re: {0}"
msgstr "回复:{0}"
@@ -20969,11 +21168,12 @@ msgstr "回复:{0}"
#. Label of the read (Check) field in DocType 'User Document Type'
#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: frappe/client.py:453 frappe/core/doctype/communication/communication.json
+#: frappe/client.py:502 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/core/page/permission_manager/permission_manager_help.html:31
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:2
@@ -21010,7 +21210,7 @@ msgstr "是否只读先决条件"
msgid "Read Only Depends On (JS)"
msgstr "只读先决条件(JS)"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:18
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr "只读模式"
@@ -21050,7 +21250,7 @@ msgstr "实时通信(SocketIO)"
msgid "Reason"
msgstr "原因"
-#: frappe/public/js/frappe/views/reports/query_report.js:897
+#: frappe/public/js/frappe/views/reports/query_report.js:909
msgid "Rebuild"
msgstr "重新生成"
@@ -21092,7 +21292,7 @@ msgstr "接收人参数"
msgid "Recent years are easy to guess."
msgstr "近年来,很容易被猜到。"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546
msgid "Recents"
msgstr "最近"
@@ -21143,7 +21343,7 @@ msgstr "记录器建议索引"
msgid "Records for following doctypes will be filtered"
msgstr "以下单据类型的记录将被过滤"
-#: frappe/core/doctype/doctype/doctype.py:1623
+#: frappe/core/doctype/doctype/doctype.py:1637
msgid "Recursive Fetch From"
msgstr "递归获取自"
@@ -21209,12 +21409,12 @@ msgstr "重定向"
msgid "Redis cache server not running. Please contact Administrator / Tech support"
msgstr "Redis缓存服务器无法运行。请联系管理员/技术支持"
-#: frappe/public/js/frappe/form/toolbar.js:563
+#: frappe/public/js/frappe/form/toolbar.js:566
msgid "Redo"
msgstr "恢复"
#: frappe/public/js/frappe/form/form.js:165
-#: frappe/public/js/frappe/form/toolbar.js:571
+#: frappe/public/js/frappe/form/toolbar.js:574
msgid "Redo last action"
msgstr "重做上一步操作"
@@ -21430,12 +21630,12 @@ msgstr "参考:{0} {1}"
msgid "Referrer"
msgstr "来源页"
-#: frappe/printing/page/print/print.js:87 frappe/public/js/frappe/desk.js:168
+#: frappe/printing/page/print/print.js:93 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:552
-#: frappe/public/js/frappe/form/form.js:1213
+#: frappe/public/js/frappe/form/form.js:1242
#: frappe/public/js/frappe/form/templates/print_layout.html:6
#: frappe/public/js/frappe/list/base_list.js:67
-#: frappe/public/js/frappe/views/reports/query_report.js:1808
+#: frappe/public/js/frappe/views/reports/query_report.js:1884
#: frappe/public/js/frappe/views/treeview.js:498
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:352
@@ -21452,7 +21652,7 @@ msgstr "全部刷新"
msgid "Refresh Google Sheet"
msgstr "刷新Google表格"
-#: frappe/printing/page/print/print.js:390
+#: frappe/printing/page/print/print.js:398
msgid "Refresh Print Preview"
msgstr "刷新打印预览"
@@ -21467,7 +21667,7 @@ msgstr "刷新打印预览"
msgid "Refresh Token"
msgstr "刷新令牌"
-#: frappe/public/js/frappe/list/list_view.js:537
+#: frappe/public/js/frappe/list/list_view.js:540
msgctxt "Document count in list view"
msgid "Refreshing"
msgstr "正在刷新"
@@ -21478,7 +21678,7 @@ msgstr "正在刷新"
msgid "Refreshing..."
msgstr "正在刷新..."
-#: frappe/core/doctype/user/user.py:1083
+#: frappe/core/doctype/user/user.py:1086
msgid "Registered but disabled"
msgstr "已注册但被禁用"
@@ -21524,10 +21724,8 @@ msgstr "重新链接沟通"
msgid "Relinked"
msgstr "重新链接"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
-#: frappe/public/js/frappe/form/toolbar.js:480
+#: frappe/custom/doctype/customize_form/customize_form.js:120
+#: frappe/public/js/frappe/form/toolbar.js:483
msgid "Reload"
msgstr "刷新"
@@ -21539,7 +21737,7 @@ msgstr "重新加载数据"
msgid "Reload List"
msgstr "重新加载列表"
-#: frappe/public/js/frappe/views/reports/query_report.js:100
+#: frappe/public/js/frappe/views/reports/query_report.js:101
msgid "Reload Report"
msgstr "重新加载报表"
@@ -21558,7 +21756,7 @@ msgstr "保存最后一次输入值"
msgid "Remind At"
msgstr "提醒时间"
-#: frappe/public/js/frappe/form/toolbar.js:512
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Remind Me"
msgstr "提醒我"
@@ -21638,9 +21836,9 @@ msgid "Removed"
msgstr "已移除"
#: frappe/custom/doctype/custom_field/custom_field.js:138
-#: frappe/public/js/frappe/form/toolbar.js:265
-#: frappe/public/js/frappe/form/toolbar.js:269
-#: frappe/public/js/frappe/form/toolbar.js:468
+#: frappe/public/js/frappe/form/toolbar.js:282
+#: frappe/public/js/frappe/form/toolbar.js:286
+#: frappe/public/js/frappe/form/toolbar.js:458
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
@@ -21668,7 +21866,7 @@ msgstr "本部分标签左对齐,值右对齐"
msgid "Reopen"
msgstr "重新打开"
-#: frappe/public/js/frappe/form/toolbar.js:580
+#: frappe/public/js/frappe/form/toolbar.js:583
msgid "Repeat"
msgstr "重复"
@@ -21715,7 +21913,7 @@ msgstr "像“AAA”重复很容易被猜到"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "重复像“ABCABCABC”只稍硬比“ABC”猜测"
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:174
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:196
msgid "Repeats {0}"
msgstr "重复{0}"
@@ -21778,6 +21976,7 @@ msgstr "全部回复"
#: 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/page/permission_manager/permission_manager_help.html:61
#: 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
@@ -21792,10 +21991,9 @@ msgstr "全部回复"
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/printing/doctype/print_format/print_format.py:104
-#: frappe/public/js/frappe/form/print_utils.js:31
-#: frappe/public/js/frappe/request.js:616
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:104
-#: frappe/public/js/frappe/utils/utils.js:949
+#: frappe/public/js/frappe/request.js:614
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/utils/utils.js:947
msgid "Report"
msgstr "报表"
@@ -21864,7 +22062,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:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2074
msgid "Report Name"
msgstr "报表名称"
@@ -21898,14 +22096,10 @@ msgstr "报表类型"
msgid "Report View"
msgstr "报表视图"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:44
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
msgid "Report bug"
msgstr "报告缺陷"
-#: frappe/core/doctype/doctype/doctype.py:1844
-msgid "Report cannot be set for Single types"
-msgstr "报表不能单类型设置"
-
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:194
msgid "Report has no data, please modify the filters or change the Report Name"
@@ -21916,7 +22110,7 @@ msgstr "报表无数据,请调整过滤器或更换报表名称"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "报表无数字字段,请更换报表名称"
-#: frappe/public/js/frappe/views/reports/query_report.js:1024
+#: frappe/public/js/frappe/views/reports/query_report.js:1036
msgid "Report initiated, click to view status"
msgstr "生成报表结果的后台任务已启动,点击查看任务状态"
@@ -21928,7 +22122,7 @@ msgstr "达到报表限制"
msgid "Report timed out."
msgstr "报表超时"
-#: frappe/desk/query_report.py:686
+#: frappe/desk/query_report.py:685
msgid "Report updated successfully"
msgstr "报表已成功更新"
@@ -21936,12 +22130,12 @@ msgstr "报表已成功更新"
msgid "Report was not saved (there were errors)"
msgstr "报表尚未保存(有错误)"
-#: frappe/public/js/frappe/views/reports/query_report.js:2033
+#: frappe/public/js/frappe/views/reports/query_report.js:2112
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "超过10列的报表更适合横向模式"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:262
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:263
msgid "Report {0}"
msgstr "报表{0}"
@@ -21964,7 +22158,7 @@ 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:591
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561
msgid "Reports"
msgstr "报表"
@@ -21972,7 +22166,7 @@ msgstr "报表"
msgid "Reports & Masters"
msgstr "报表与主数据"
-#: frappe/public/js/frappe/views/reports/query_report.js:940
+#: frappe/public/js/frappe/views/reports/query_report.js:952
msgid "Reports already in Queue"
msgstr "报表已加入队列"
@@ -22031,13 +22225,13 @@ msgstr "请求方法"
msgid "Request Structure"
msgstr "请求数据格式"
-#: frappe/public/js/frappe/request.js:231
+#: frappe/public/js/frappe/request.js:229
msgid "Request Timed Out"
msgstr "请求超时"
#. Label of the timeout (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
-#: frappe/public/js/frappe/request.js:244
+#: frappe/public/js/frappe/request.js:242
msgid "Request Timeout"
msgstr "请求超时"
@@ -22153,7 +22347,7 @@ msgstr "重置为默认"
msgid "Reset sorting"
msgstr "重置排序"
-#: frappe/public/js/frappe/form/grid_row.js:433
+#: frappe/public/js/frappe/form/grid_row.js:435
msgid "Reset to default"
msgstr "恢复默认设置"
@@ -22211,7 +22405,7 @@ msgstr ""
msgid "Response Type"
msgstr "响应类型"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:445
+#: frappe/public/js/frappe/ui/notifications/notifications.js:454
msgid "Rest of the day"
msgstr "今日剩余时间"
@@ -22220,7 +22414,7 @@ msgstr "今日剩余时间"
msgid "Restore"
msgstr "恢复"
-#: frappe/core/page/permission_manager/permission_manager.js:559
+#: frappe/core/page/permission_manager/permission_manager.js:560
msgid "Restore Original Permissions"
msgstr "恢复原权限"
@@ -22242,6 +22436,11 @@ msgstr "正在恢复已删除文档"
msgid "Restrict IP"
msgstr "限制IP"
+#. Label of the restrict_removal (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Restrict Removal"
+msgstr ""
+
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
#. Label of the restrict_to_domain (Link) field in DocType 'Page'
@@ -22269,8 +22468,8 @@ msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
msgstr "限制条件"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:455
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:470
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:457
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:472
msgid "Result"
msgstr "结果"
@@ -22317,9 +22516,15 @@ msgstr "撤销"
msgid "Rich Text"
msgstr "富文本"
+#. Option for the 'Alignment' (Select) field in DocType 'DocField'
+#. Option for the 'Alignment' (Select) field in DocType 'Custom Field'
+#. Option for the 'Alignment' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/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_step/form_tour_step.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
@@ -22354,8 +22559,6 @@ msgstr "机器人自动回复文字"
#. Name of a DocType
#. Label of the role (Link) field in DocType 'User Role'
#. Label of the role (Link) field in DocType 'User Type'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the role (Link) field in DocType 'Onboarding Permission'
#. Label of the role (Link) field in DocType 'ToDo'
#. Label of the role (Link) field in DocType 'OAuth Client Role'
@@ -22370,8 +22573,7 @@ msgstr "机器人自动回复文字"
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:110
#: frappe/core/page/permission_manager/permission_manager.js:219
-#: frappe/core/page/permission_manager/permission_manager.js:506
-#: frappe/core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:507
#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
#: frappe/desk/doctype/todo/todo.json
#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
@@ -22415,7 +22617,7 @@ msgstr "角色权限"
msgid "Role Permissions Manager"
msgstr "角色权限管理"
-#: frappe/public/js/frappe/list/list_view.js:1936
+#: frappe/public/js/frappe/list/list_view.js:1944
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
msgstr "角色权限管理器"
@@ -22423,11 +22625,9 @@ msgstr "角色权限管理器"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
#. Label of the role_profile (Link) field in DocType 'User Role Profile'
-#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
#: frappe/core/doctype/user_role_profile/user_role_profile.json
-#: frappe/core/workspace/users/users.json
msgid "Role Profile"
msgstr "岗位"
@@ -22449,7 +22649,7 @@ msgstr "角色复制"
msgid "Role and Level"
msgstr "角色和级别"
-#: frappe/core/doctype/user/user.py:403
+#: frappe/core/doctype/user/user.py:406
msgid "Role has been set as per the user type {0}"
msgstr "已根据用户类型{0}设置角色"
@@ -22568,20 +22768,20 @@ msgstr "网址重定向"
msgid "Route: Example \"/app\""
msgstr "路径: 例如 \"/app\""
-#: frappe/model/base_document.py:953 frappe/model/document.py:822
+#: frappe/model/base_document.py:972 frappe/model/document.py:821
msgid "Row"
msgstr "行"
-#: frappe/core/doctype/version/version_view.html:74
+#: frappe/core/doctype/version/version_view.html:137
msgid "Row #"
msgstr "行#"
-#: frappe/core/doctype/doctype/doctype.py:1866
-#: frappe/core/doctype/doctype/doctype.py:1876
-msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr "行号{0}:非管理员用户无法为自定义文档类型设置角色{1}"
+#: frappe/core/doctype/doctype/doctype.py:1930
+#: frappe/core/doctype/doctype/doctype.py:1940
+msgid "Row # {0}: Non-administrator users cannot add the role {1} to a custom DocType."
+msgstr ""
-#: frappe/model/base_document.py:1083
+#: frappe/model/base_document.py:1100
msgid "Row #{0}:"
msgstr "行#{0}:"
@@ -22608,7 +22808,7 @@ msgstr "行名称"
msgid "Row Number"
msgstr "行号"
-#: frappe/core/doctype/version/version_view.html:69
+#: frappe/core/doctype/version/version_view.html:132
msgid "Row Values Changed"
msgstr "明细表变更"
@@ -22627,14 +22827,14 @@ msgstr "行{0}:不允许启用允许对提交的标准字段"
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Added"
msgstr "新增行"
#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
-#: frappe/core/doctype/version/version_view.html:33
+#: frappe/core/doctype/version/version_view.html:96
msgid "Rows Removed"
msgstr "已删除行"
@@ -22657,7 +22857,7 @@ msgstr "规则"
msgid "Rule Conditions"
msgstr "规则条件"
-#: frappe/permissions.py:681
+#: frappe/permissions.py:687
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "该文档类型、角色、权限层级和所有者条件的组合规则已存在。"
@@ -22737,7 +22937,7 @@ msgstr "短信设置"
msgid "SMS sent successfully"
msgstr "短信发送成功"
-#: frappe/templates/includes/login/login.js:369
+#: frappe/templates/includes/login/login.js:368
msgid "SMS was not sent. Please contact Administrator."
msgstr "短信未发送,请联系管理员。"
@@ -22771,7 +22971,7 @@ msgstr "SQL输出"
msgid "SQL Queries"
msgstr "SQL查询"
-#: frappe/database/query.py:1876
+#: frappe/database/query.py:1954
msgid "SQL functions are not allowed as strings in SELECT: {0}. Use dict syntax like {{'COUNT': '*'}} instead."
msgstr ""
@@ -22843,22 +23043,23 @@ msgstr "星期六"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: cypress/integration/web_form.js:52
#: frappe/core/doctype/data_import/data_import.js:119
+#: frappe/desk/page/desktop/desktop.html:65
#: frappe/email/doctype/notification/notification.json
-#: frappe/printing/page/print/print.js:923
+#: frappe/printing/page/print/print.js:937
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
#: frappe/public/js/frappe/form/footer/form_timeline.js:678
-#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/form/quick_entry.js:186
#: frappe/public/js/frappe/list/list_settings.js:37
#: frappe/public/js/frappe/list/list_settings.js:245
-#: frappe/public/js/frappe/list/list_view.js:1998
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:267
+#: frappe/public/js/frappe/list/list_view.js:2006
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:252
#: frappe/public/js/frappe/utils/common.js:452
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:357
-#: frappe/public/js/frappe/views/reports/query_report.js:1987
-#: frappe/public/js/frappe/views/reports/report_view.js:1739
-#: frappe/public/js/frappe/views/workspace/workspace.js:350
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/workspace/workspace.js:398
#: 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
@@ -22871,7 +23072,7 @@ msgid "Save Anyway"
msgstr "仍然保存"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/report_view.js:1747
msgid "Save As"
msgstr "另存为"
@@ -22879,7 +23080,7 @@ msgstr "另存为"
msgid "Save Customizations"
msgstr "保存自定义"
-#: frappe/public/js/frappe/views/reports/query_report.js:1990
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Save Report"
msgstr "保存报表"
@@ -22897,20 +23098,20 @@ msgid "Save the document."
msgstr "保存文档。"
#: frappe/model/rename_doc.py:106
-#: frappe/printing/page/print_format_builder/print_format_builder.js:858
-#: frappe/public/js/frappe/form/toolbar.js:297
+#: frappe/printing/page/print_format_builder/print_format_builder.js:892
+#: frappe/public/js/frappe/form/toolbar.js:315
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
-#: frappe/public/js/frappe/views/workspace/workspace.js:729
+#: frappe/public/js/frappe/views/workspace/workspace.js:778
msgid "Saved"
msgstr "已保存"
-#: frappe/public/js/frappe/list/list_filter.js:20
+#: frappe/public/js/frappe/list/list_filter.js:21
msgid "Saved Filters"
msgstr "已保存的筛选器"
#: frappe/public/js/frappe/list/list_settings.js:41
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
-#: frappe/public/js/frappe/views/workspace/workspace.js:362
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
msgid "Saving"
msgstr "保存"
@@ -22919,11 +23120,11 @@ msgctxt "Freeze message while saving a document"
msgid "Saving"
msgstr "正在保存"
-#: frappe/public/js/frappe/list/list_view.js:2009
+#: frappe/public/js/frappe/list/list_view.js:2017
msgid "Saving Changes..."
msgstr ""
-#: frappe/custom/doctype/customize_form/customize_form.js:411
+#: frappe/custom/doctype/customize_form/customize_form.js:421
msgid "Saving Customization..."
msgstr "正在保存自定义..."
@@ -23127,7 +23328,7 @@ msgstr "脚本"
#: frappe/public/js/frappe/form/link_selector.js:46
#: frappe/public/js/frappe/list/list_sidebar_stat.html:4
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20
-#: frappe/public/js/frappe/ui/sidebar/sidebar.js:246
+#: frappe/public/js/frappe/ui/sidebar/sidebar.js:282
#: frappe/public/js/frappe/ui/toolbar/search.js:49
#: frappe/public/js/frappe/ui/toolbar/search.js:68
#: frappe/templates/discussions/search.html:2
@@ -23147,7 +23348,7 @@ msgstr "搜索框"
msgid "Search Fields"
msgstr "搜索字段"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:253
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:260
msgid "Search Help"
msgstr "搜索帮助"
@@ -23165,7 +23366,7 @@ msgstr "搜索结果"
msgid "Search by filename or extension"
msgstr "按文件名或后缀搜索"
-#: frappe/core/doctype/doctype/doctype.py:1482
+#: frappe/core/doctype/doctype/doctype.py:1496
msgid "Search field {0} is not valid"
msgstr "搜索字段{0}无效"
@@ -23182,12 +23383,12 @@ msgstr "搜索字段类型"
msgid "Search for anything"
msgstr "搜索任何内容"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:367
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:372
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:378
msgid "Search for {0}"
msgstr "搜索{0}"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:228
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
msgid "Search in a document type"
msgstr "在单据类型中搜索"
@@ -23259,15 +23460,15 @@ msgstr "段至少须包括一栏"
msgid "Security Settings"
msgstr "安全设置"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:340
+#: frappe/public/js/frappe/ui/notifications/notifications.js:349
msgid "See all Activity"
msgstr "查看所有活动"
-#: frappe/public/js/frappe/views/reports/query_report.js:866
+#: frappe/public/js/frappe/views/reports/query_report.js:878
msgid "See all past reports."
msgstr "点这儿可以查看之前的历史报表。"
-#: frappe/public/js/frappe/form/form.js:1247
+#: frappe/public/js/frappe/form/form.js:1276
#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
msgstr "在门户网站查看"
@@ -23317,24 +23518,26 @@ msgstr "查看人列表"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/report_column/report_column.json
#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/printing/page/print/print.js:661
+#: frappe/printing/page/print/print.js:669
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
msgstr "单选"
-#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/frappe/data_import/data_exporter.js:150
#: frappe/public/js/frappe/form/controls/multicheck.js:167
#: frappe/public/js/frappe/form/controls/multiselect_list.js:6
-#: frappe/public/js/frappe/form/grid_row.js:497
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/form/grid_row.js:499
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Select All"
msgstr "全选"
-#: frappe/public/js/frappe/views/communication.js:168
-#: frappe/public/js/frappe/views/communication.js:592
+#: frappe/public/js/frappe/views/communication.js:202
+#: frappe/public/js/frappe/views/communication.js:653
#: frappe/public/js/frappe/views/interaction.js:93
#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
@@ -23350,7 +23553,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:73
+#: frappe/public/js/frappe/form/print_utils.js:74
msgid "Select Columns"
msgstr "选择列"
@@ -23394,13 +23597,13 @@ msgstr "选择单据类型"
msgid "Select Document Type or Role to start."
msgstr "请选择单据类型或角色。"
-#: frappe/core/page/permission_manager/permission_manager_help.html:34
+#: frappe/core/page/permission_manager/permission_manager_help.html:101
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:207
-#: frappe/public/js/frappe/form/toolbar.js:871
+#: frappe/public/js/frappe/form/toolbar.js:874
msgid "Select Field"
msgstr "选择字段"
@@ -23409,7 +23612,7 @@ msgstr "选择字段"
msgid "Select Field..."
msgstr "选择字段"
-#: frappe/public/js/frappe/form/grid_row.js:489
+#: frappe/public/js/frappe/form/grid_row.js:491
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
msgstr "选择字段"
@@ -23418,19 +23621,19 @@ msgstr "选择字段"
msgid "Select Fields (Up to {0})"
msgstr "选择字段(最多{0}个)"
-#: frappe/public/js/frappe/data_import/data_exporter.js:147
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Insert"
msgstr "选择字段"
-#: frappe/public/js/frappe/data_import/data_exporter.js:148
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
msgid "Select Fields To Update"
msgstr "选择要更新的字段"
-#: frappe/public/js/frappe/list/list_view.js:1994
+#: frappe/public/js/frappe/list/list_view.js:2002
msgid "Select Filters"
msgstr "选择过滤条件"
-#: frappe/desk/doctype/event/event.py:107
+#: frappe/desk/doctype/event/event.py:112
msgid "Select Google Calendar to which event should be synced."
msgstr "选择要同步事件的Google日历。"
@@ -23455,16 +23658,16 @@ msgstr "选择语言"
msgid "Select List View"
msgstr "选择列表视图"
-#: frappe/public/js/frappe/data_import/data_exporter.js:158
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
msgid "Select Mandatory"
msgstr "选择必填字段"
-#: frappe/custom/doctype/customize_form/customize_form.js:280
+#: frappe/custom/doctype/customize_form/customize_form.js:290
msgid "Select Module"
msgstr "选择模块"
-#: frappe/printing/page/print/print.js:189
-#: frappe/printing/page/print/print.js:644
+#: frappe/printing/page/print/print.js:197
+#: frappe/printing/page/print/print.js:652
msgid "Select Network Printer"
msgstr "选择网络打印机"
@@ -23474,7 +23677,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:151
+#: frappe/public/js/frappe/views/communication.js:178
msgid "Select Print Format"
msgstr "选择打印格式"
@@ -23510,12 +23713,6 @@ msgstr "选择工作流"
msgid "Select Workspace"
msgstr "选择工作空间"
-#. Label of the select_workspaces_section (Section Break) field in DocType
-#. 'Workspace Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Select Workspaces"
-msgstr "选择工作空间"
-
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
msgstr "首先选择一个品牌形象。"
@@ -23532,11 +23729,11 @@ msgstr "选择字段在此编辑属性"
msgid "Select a group {0} first."
msgstr "请先选择{0}组。"
-#: frappe/core/doctype/doctype/doctype.py:1977
+#: frappe/core/doctype/doctype/doctype.py:2041
msgid "Select a valid Sender Field for creating documents from Email"
msgstr "选择有效的发件人字段以从邮件创建文档"
-#: frappe/core/doctype/doctype/doctype.py:1961
+#: frappe/core/doctype/doctype/doctype.py:2025
msgid "Select a valid Subject field for creating documents from Email"
msgstr "选择有效的主旨字段以从邮件创建文档"
@@ -23562,13 +23759,13 @@ msgstr "选择打印ATLEAST 1项纪录"
msgid "Select atleast 2 actions"
msgstr "选择至少2个操作"
-#: frappe/public/js/frappe/list/list_view.js:1455
+#: frappe/public/js/frappe/list/list_view.js:1463
msgctxt "Description of a list view shortcut"
msgid "Select list item"
msgstr "选择列表项"
-#: frappe/public/js/frappe/list/list_view.js:1407
-#: frappe/public/js/frappe/list/list_view.js:1423
+#: frappe/public/js/frappe/list/list_view.js:1415
+#: frappe/public/js/frappe/list/list_view.js:1431
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
msgstr "选择多个列表项"
@@ -23602,7 +23799,7 @@ msgstr "选择两个版本比较差异"
msgid "Select {0}"
msgstr "选择{0}"
-#: frappe/model/workflow.py:120
+#: frappe/model/workflow.py:138
msgid "Self approval is not allowed"
msgstr "不允许申请者自己批准"
@@ -23632,6 +23829,11 @@ msgstr "发送后"
msgid "Send Alert On"
msgstr "通知发送时机"
+#. Label of the raw_html (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Send As Raw HTML"
+msgstr ""
+
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
@@ -23684,7 +23886,7 @@ msgstr "立即发送"
msgid "Send Print as PDF"
msgstr "使用PDF格式发送打印"
-#: frappe/public/js/frappe/views/communication.js:141
+#: frappe/public/js/frappe/views/communication.js:168
msgid "Send Read Receipt"
msgstr "发送阅读回执"
@@ -23747,7 +23949,7 @@ msgstr "向此邮件地址发送询价"
msgid "Send login link"
msgstr "发送登录链接"
-#: frappe/public/js/frappe/views/communication.js:135
+#: frappe/public/js/frappe/views/communication.js:162
msgid "Send me a copy"
msgstr "抄送给自己"
@@ -23786,7 +23988,7 @@ msgstr "发件人电子邮箱"
msgid "Sender Email Field"
msgstr "发件人邮箱字段"
-#: frappe/core/doctype/doctype/doctype.py:1980
+#: frappe/core/doctype/doctype/doctype.py:2044
msgid "Sender Field should have Email in options"
msgstr "发件人字段选项中应包含邮箱"
@@ -23880,7 +24082,7 @@ msgstr "单据类型 {} 的编号模板已更新"
msgid "Series counter for {} updated to {} successfully"
msgstr "{}的序列计数器成功更新至{}"
-#: frappe/core/doctype/doctype/doctype.py:1124
+#: frappe/core/doctype/doctype/doctype.py:1127
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
msgstr "单据编号模板{0}已经被{1}使用"
@@ -23890,7 +24092,7 @@ msgstr "单据编号模板{0}已经被{1}使用"
msgid "Server Action"
msgstr "服务器操作"
-#: frappe/app.py:399 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:399 frappe/public/js/frappe/request.js:609
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "服务器错误"
@@ -23917,11 +24119,15 @@ msgstr "服务器(python)脚本已禁用,可通过后台bench命令 bench set-
msgid "Server Scripts feature is not available on this site."
msgstr "此站点未启用服务器脚本功能"
-#: frappe/public/js/frappe/request.js:254
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+msgid "Server error during upload. The file might be corrupted."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:252
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
msgstr "因并发请求冲突,服务器未能处理本请求。请稍后重试。"
-#: frappe/public/js/frappe/request.js:246
+#: frappe/public/js/frappe/request.js:244
msgid "Server was too busy to process this request. Please try again."
msgstr "服务器繁忙,请稍后重试"
@@ -23949,16 +24155,14 @@ msgstr "会话默认值"
msgid "Session Default Settings"
msgstr "会话默认设置"
-#. Label of a standard navbar item
-#. Type: Action
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:266
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
msgid "Session Defaults"
msgstr "会话默认值"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:251
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:236
msgid "Session Defaults Saved"
msgstr "会话默认值已保存"
@@ -23999,7 +24203,7 @@ msgstr "设置"
msgid "Set Banner from Image"
msgstr "从图像设置横幅"
-#: frappe/public/js/frappe/views/reports/query_report.js:200
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
msgstr "设置图表"
@@ -24025,7 +24229,7 @@ msgstr "设置过滤条件"
msgid "Set Filters for {0}"
msgstr "为{0}设置过滤器"
-#: frappe/public/js/frappe/views/reports/query_report.js:2143
+#: frappe/public/js/frappe/views/reports/query_report.js:2225
msgid "Set Level"
msgstr "设置层级"
@@ -24068,8 +24272,8 @@ msgstr "设置属性"
msgid "Set Property After Alert"
msgstr "发送通知后变更字段值"
-#: frappe/public/js/frappe/form/link_selector.js:207
-#: frappe/public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:216
+#: frappe/public/js/frappe/form/link_selector.js:217
msgid "Set Quantity"
msgstr "设置数量"
@@ -24089,12 +24293,12 @@ msgstr "设置用户权限限制"
msgid "Set Value"
msgstr "设定值"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:155
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:162
msgid "Set all private"
msgstr "设为私有"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:96
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:103
msgid "Set all public"
msgstr "设为公共"
@@ -24222,8 +24426,8 @@ msgstr "设置您的系统"
#: 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/toolbar/toolbar.js:224
-#: frappe/public/js/frappe/views/workspace/workspace.js:376
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:209
+#: frappe/public/js/frappe/views/workspace/workspace.js:424
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json frappe/www/me.html:20
msgid "Settings"
@@ -24246,11 +24450,11 @@ 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:611
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581
msgid "Setup"
msgstr "设置"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "Setup > Customize Form"
msgstr "设置 > 自定义表单"
@@ -24258,12 +24462,12 @@ msgstr "设置 > 自定义表单"
msgid "Setup > User"
msgstr "设置 > 用户"
-#: frappe/core/page/permission_manager/permission_manager_help.html:33
+#: frappe/core/page/permission_manager/permission_manager_help.html:100
msgid "Setup > User Permissions"
msgstr "设置 > 用户权限"
-#: frappe/public/js/frappe/views/reports/query_report.js:1856
-#: frappe/public/js/frappe/views/reports/report_view.js:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1931
+#: frappe/public/js/frappe/views/reports/report_view.js:1718
msgid "Setup Auto Email"
msgstr "设置电子邮件自动发送"
@@ -24292,13 +24496,14 @@ msgstr "始始化失败"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:76
#: frappe/desk/doctype/notification_log/notification_log.json
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:112
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:133
#: frappe/public/js/frappe/form/templates/set_sharing.html:5
msgid "Share"
msgstr "分享"
-#: frappe/public/js/frappe/form/sidebar/share.js:108
+#: frappe/public/js/frappe/form/sidebar/share.js:114
msgid "Share With"
msgstr "分享"
@@ -24306,7 +24511,7 @@ msgstr "分享"
msgid "Share this document with"
msgstr "分享给"
-#: frappe/public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/sidebar/share.js:51
msgid "Share {0} with"
msgstr "分享给{0}"
@@ -24366,16 +24571,10 @@ msgstr "在时间轴中显示绝对日期时间"
msgid "Show Absolute Values"
msgstr "显示绝对值"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:93
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:114
msgid "Show All"
msgstr "显示全部"
-#. Label of the show_app_icons_as_folder (Check) field in DocType 'Desktop
-#. Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Show App Icons As Folder"
-msgstr ""
-
#. Label of the show_arrow (Check) field in DocType 'Workspace Sidebar Item'
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
msgid "Show Arrow"
@@ -24421,7 +24620,7 @@ msgstr "显示错误"
msgid "Show External Link Warning"
msgstr "显示外部链接警告"
-#: frappe/public/js/frappe/form/layout.js:603
+#: frappe/public/js/frappe/form/layout.js:597
msgid "Show Fieldname (click to copy on clipboard)"
msgstr "显示字段名(点击复制到剪贴板)"
@@ -24473,7 +24672,7 @@ msgstr "显示语言选择框"
msgid "Show Line Breaks after Sections"
msgstr "章节后,显示换行符"
-#: frappe/public/js/frappe/form/toolbar.js:443
+#: frappe/public/js/frappe/form/toolbar.js:433
msgid "Show Links"
msgstr "显示链接"
@@ -24593,7 +24792,7 @@ msgstr "显示周末"
msgid "Show account deletion link in My Account page"
msgstr "在我的账号页显示帐号删除链接"
-#: frappe/core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:3
msgid "Show all Versions"
msgstr "显示所有版本"
@@ -24735,7 +24934,7 @@ msgstr "退出登录"
msgid "Sign Up and Confirmation"
msgstr "注册与确认"
-#: frappe/core/doctype/user/user.py:1076
+#: frappe/core/doctype/user/user.py:1079
msgid "Sign Up is disabled"
msgstr "禁止注册"
@@ -24858,7 +25057,7 @@ msgstr "跳过未命名列"
msgid "Skipping column {0}"
msgstr "跳过列{0}"
-#: frappe/modules/utils.py:179
+#: frappe/modules/utils.py:219
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr "跳过从文件{1}同步文档类型{0}的夹具"
@@ -25033,15 +25232,15 @@ msgstr "出了些问题"
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
msgstr "在令牌生成期间出了点问题。单击{0}以生成新的。"
-#: frappe/templates/includes/login/login.js:293
+#: frappe/templates/includes/login/login.js:292
msgid "Something went wrong."
msgstr "出现错误"
-#: frappe/public/js/frappe/views/pageview.js:122
+#: frappe/public/js/frappe/views/pageview.js:127
msgid "Sorry! I could not find what you were looking for."
msgstr "抱歉,无法找你要的信息。"
-#: frappe/public/js/frappe/views/pageview.js:130
+#: frappe/public/js/frappe/views/pageview.js:135
msgid "Sorry! You are not permitted to view this page."
msgstr "抱歉,你不允许查看此页面。"
@@ -25072,13 +25271,13 @@ msgstr "按选项值排序"
msgid "Sort Order"
msgstr "排序"
-#: frappe/core/doctype/doctype/doctype.py:1565
+#: frappe/core/doctype/doctype/doctype.py:1579
msgid "Sort field {0} must be a valid fieldname"
msgstr "排序字段{0}必须是有效的字段名"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
-#: frappe/public/js/frappe/utils/utils.js:1872
+#: frappe/public/js/frappe/utils/utils.js:2003
#: 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
@@ -25127,7 +25326,7 @@ msgstr "在后台任务中生成操作"
msgid "Special Characters are not allowed"
msgstr "不能使用特殊字符"
-#: frappe/model/naming.py:68
+#: frappe/model/naming.py:66
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
msgstr "命名序列{0}中不允许使用除'-'、'#'、'.'、'/'、'{{'和'}}'外的特殊字符"
@@ -25166,6 +25365,7 @@ msgstr "调用栈"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
+#. Label of the standard (Check) field in DocType 'Workspace Sidebar'
#. 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'
@@ -25173,6 +25373,7 @@ msgstr "调用栈"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.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
@@ -25240,8 +25441,8 @@ msgstr "标准用户类型{0}不可删除"
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
-#: frappe/printing/page/print/print.js:328
-#: frappe/printing/page/print/print.js:375
+#: frappe/printing/page/print/print.js:336
+#: frappe/printing/page/print/print.js:383
msgid "Start"
msgstr "开始"
@@ -25413,7 +25614,7 @@ msgstr "频率"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:357
-#: frappe/public/js/frappe/list/list_view.js:2415
+#: frappe/public/js/frappe/list/list_view.js:2443
#: frappe/public/js/frappe/views/reports/report_view.js:974
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -25451,7 +25652,7 @@ msgstr "验证您的登录的步骤"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
-#: frappe/public/js/frappe/form/grid_row.js:454
+#: frappe/public/js/frappe/form/grid_row.js:456
msgid "Sticky"
msgstr "置顶"
@@ -25565,7 +25766,7 @@ msgstr "子域名"
#: frappe/email/doctype/email_template/email_template.json
#: frappe/email/doctype/notification/notification.js:214
#: frappe/email/doctype/notification/notification.json
-#: frappe/public/js/frappe/views/communication.js:110
+#: frappe/public/js/frappe/views/communication.js:128
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
msgstr "主题"
@@ -25579,7 +25780,7 @@ msgstr "主题"
msgid "Subject Field"
msgstr "主题字段"
-#: frappe/core/doctype/doctype/doctype.py:1970
+#: frappe/core/doctype/doctype/doctype.py:2034
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
msgstr "主题字段类型应为数据、文本、长文本、短文本或文本编辑器"
@@ -25600,14 +25801,14 @@ msgstr "提交队列"
#: 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/form/quick_entry.js:248
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
-#: frappe/public/js/frappe/ui/capture.js:307
+#: frappe/public/js/frappe/ui/capture.js:308
#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json
msgid "Submit"
msgstr "提交"
-#: frappe/public/js/frappe/list/list_view.js:2310
+#: frappe/public/js/frappe/list/list_view.js:2318
msgctxt "Button in list view actions menu"
msgid "Submit"
msgstr "提交"
@@ -25637,7 +25838,7 @@ msgstr "提交"
msgid "Submit After Import"
msgstr "将上传单据状态设为已提交"
-#: frappe/core/page/permission_manager/permission_manager_help.html:39
+#: frappe/core/page/permission_manager/permission_manager_help.html:106
msgid "Submit an Issue"
msgstr "提交问题"
@@ -25661,11 +25862,11 @@ msgstr "创建时提交"
msgid "Submit this document to complete this step."
msgstr "提交此文档以完成此步骤"
-#: frappe/public/js/frappe/form/form.js:1233
+#: frappe/public/js/frappe/form/form.js:1262
msgid "Submit this document to confirm"
msgstr "点提交按钮进行确认"
-#: frappe/public/js/frappe/list/list_view.js:2315
+#: frappe/public/js/frappe/list/list_view.js:2323
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
msgstr "是否提交{0}个文档?"
@@ -25691,7 +25892,7 @@ msgctxt "Freeze message while submitting a document"
msgid "Submitting"
msgstr "提交中"
-#: frappe/desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:89
msgid "Submitting {0}"
msgstr "正在提交{0}"
@@ -25726,12 +25927,12 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
-#: frappe/public/js/frappe/form/grid.js:1193
+#: frappe/public/js/frappe/form/grid.js:1230
#: 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/includes/login/login.js:228
+#: frappe/templates/includes/login/login.js:234
+#: frappe/templates/includes/login/login.js:267
+#: frappe/templates/includes/login/login.js:275
#: 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
@@ -25773,7 +25974,7 @@ msgstr "成功标题"
msgid "Successful Job Count"
msgstr "成功任务数量"
-#: frappe/model/workflow.py:363
+#: frappe/model/workflow.py:384
msgid "Successful Transactions"
msgstr "成功事务"
@@ -25798,7 +25999,7 @@ msgstr "成功导入{1}条记录中的{0}条。"
msgid "Successfully reset onboarding status for all users."
msgstr "已成功重置所有用户的入职状态。"
-#: frappe/core/doctype/user/user.py:1478
+#: frappe/core/doctype/user/user.py:1481
msgid "Successfully signed out"
msgstr "已成功退出登录"
@@ -25823,7 +26024,7 @@ msgstr "建议优化"
msgid "Suggested Indexes"
msgstr "建议索引"
-#: frappe/core/doctype/user/user.py:771
+#: frappe/core/doctype/user/user.py:774
msgid "Suggested Username: {0}"
msgstr "建议用户名:{0}"
@@ -25864,7 +26065,7 @@ msgstr "星期天"
msgid "Suspend Sending"
msgstr "暂停发送"
-#: frappe/public/js/frappe/ui/capture.js:276
+#: frappe/public/js/frappe/ui/capture.js:277
msgid "Switch Camera"
msgstr "切换摄像头"
@@ -25877,7 +26078,7 @@ msgstr "切换主题"
msgid "Switch To Desk"
msgstr "切换到主页(桌面)"
-#: frappe/public/js/frappe/ui/capture.js:281
+#: frappe/public/js/frappe/ui/capture.js:282
msgid "Switching Camera"
msgstr "正在切换摄像头"
@@ -25946,9 +26147,7 @@ msgid "Syntax Error"
msgstr "语法错误"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#. Name of a Workspace
#: frappe/core/doctype/doctype/doctype.json
-#: frappe/core/workspace/system/system.json
msgid "System"
msgstr "系统"
@@ -25958,7 +26157,7 @@ msgstr "系统"
msgid "System Console"
msgstr "系统控制台"
-#: frappe/custom/doctype/custom_field/custom_field.py:409
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "System Generated Fields can not be renamed"
msgstr "系统生成字段不可重命名"
@@ -26085,6 +26284,7 @@ msgstr "系统日志"
#: 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/desktop_layout/desktop_layout.json
#: frappe/desk/doctype/desktop_settings/desktop_settings.json
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -26099,7 +26299,6 @@ msgstr "系统日志"
#: 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/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/document_follow/document_follow.json
@@ -26175,6 +26374,11 @@ msgstr "系统页面"
msgid "System Settings"
msgstr "系统设置"
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "System Users"
+msgstr ""
+
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
@@ -26191,6 +26395,12 @@ msgstr "T"
msgid "TOS URI"
msgstr "服务条款URI"
+#. Label of the navigate_to_tab (Autocomplete) field in DocType 'Workspace
+#. Sidebar Item'
+#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
+msgid "Tab"
+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'
@@ -26226,7 +26436,7 @@ msgstr "表"
msgid "Table Break"
msgstr "表格分页符"
-#: frappe/core/doctype/version/version_view.html:73
+#: frappe/core/doctype/version/version_view.html:136
msgid "Table Field"
msgstr "表字段"
@@ -26235,7 +26445,7 @@ msgstr "表字段"
msgid "Table Fieldname"
msgstr "表字段名"
-#: frappe/core/doctype/doctype/doctype.py:1218
+#: frappe/core/doctype/doctype/doctype.py:1221
msgid "Table Fieldname Missing"
msgstr "缺失表格字段名"
@@ -26253,7 +26463,7 @@ msgstr "表HTML"
msgid "Table MultiSelect"
msgstr "表-多选"
-#: frappe/desk/search.py:271
+#: frappe/desk/search.py:278
msgid "Table MultiSelect requires a table with at least one Link field, but none was found in {0}"
msgstr ""
@@ -26261,11 +26471,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr "表格已截断"
-#: frappe/public/js/frappe/form/grid.js:1192
+#: frappe/public/js/frappe/form/grid.js:1229
msgid "Table updated"
msgstr "表更新"
-#: frappe/model/document.py:1627
+#: frappe/model/document.py:1626
msgid "Table {0} cannot be empty"
msgstr "表{0}不能为空"
@@ -26285,17 +26495,17 @@ msgid "Tag Link"
msgstr "标签链接"
#: frappe/model/meta.py:59
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:102
-#: frappe/public/js/frappe/list/base_list.js:813
-#: frappe/public/js/frappe/list/base_list.js:996
-#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:123
+#: frappe/public/js/frappe/list/base_list.js:812
+#: frappe/public/js/frappe/list/base_list.js:995
+#: frappe/public/js/frappe/list/bulk_operations.js:444
#: frappe/public/js/frappe/model/meta.js:215
#: frappe/public/js/frappe/model/model.js:133
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:233
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
msgid "Tags"
msgstr "标签"
-#: frappe/public/js/frappe/ui/capture.js:220
+#: frappe/public/js/frappe/ui/capture.js:221
msgid "Take Photo"
msgstr "拍照"
@@ -26379,7 +26589,7 @@ msgstr "模板警告"
msgid "Templates"
msgstr "模板"
-#: frappe/core/doctype/user/user.py:1089
+#: frappe/core/doctype/user/user.py:1092
msgid "Temporarily Disabled"
msgstr "暂时禁用"
@@ -26477,7 +26687,7 @@ msgstr "谢谢"
msgid "The Auto Repeat for this document has been disabled."
msgstr "此文档的自动重复功能已禁用。"
-#: frappe/public/js/frappe/form/grid.js:1215
+#: frappe/public/js/frappe/form/grid.js:1252
msgid "The CSV format is case sensitive"
msgstr "CSV格式区分大小写"
@@ -26533,7 +26743,7 @@ msgstr "从\n"
"\"API & Services\" > \"Credentials\"\n"
"下的 Google Cloud Console 获取的浏览器 API 密钥"
-#: frappe/database/database.py:475
+#: frappe/database/database.py:481
msgid "The changes have been reverted."
msgstr "更改已还原。"
@@ -26549,7 +26759,7 @@ msgstr "评论内容不能为空"
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
msgstr "此邮件内容严格保密。请勿转发给任何人。"
-#: frappe/public/js/frappe/list/list_view.js:688
+#: frappe/public/js/frappe/list/list_view.js:691
msgid "The count shown is an estimated count. Click here to see the accurate count."
msgstr "显示数量为估算值。点击此处查看精确数量。"
@@ -26575,11 +26785,15 @@ msgstr "该单据已分派给{0}"
msgid "The document type selected is a child table, so the parent document type is required."
msgstr "所选文档类型为子表,需指定父文档类型。"
-#: frappe/desk/search.py:284
+#: frappe/core/page/permission_manager/permission_manager_help.html:58
+msgid "The email button is enabled for the user in the document."
+msgstr ""
+
+#: frappe/desk/search.py:291
msgid "The field {0} in {1} does not allow ignoring user permissions"
msgstr ""
-#: frappe/desk/search.py:294
+#: frappe/desk/search.py:301
msgid "The field {0} in {1} links to {2} and not {3}"
msgstr ""
@@ -26646,6 +26860,10 @@ msgstr "请求逾期时间(秒)"
msgid "The password of your account has expired."
msgstr "您账户的密码已过期。"
+#: frappe/core/page/permission_manager/permission_manager_help.html:53
+msgid "The print button is enabled for the user in the document."
+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}数据的过程已启动。"
@@ -26663,15 +26881,15 @@ msgstr "从\n"
msgid "The report you requested has been generated.
Click here to download:
{0}
This link will expire in {1} hours."
msgstr "您请求的报告已生成。
点击此处下载:
{0}
此链接将在{1}小时后过期。"
-#: frappe/core/doctype/user/user.py:1047
+#: frappe/core/doctype/user/user.py:1050
msgid "The reset password link has been expired"
msgstr "重置密码链接已过期"
-#: frappe/core/doctype/user/user.py:1049
+#: frappe/core/doctype/user/user.py:1052
msgid "The reset password link has either been used before or is invalid"
msgstr "重置密码链接已被使用或无效"
-#: frappe/app.py:391 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:391 frappe/public/js/frappe/request.js:147
msgid "The resource you are looking for is not available"
msgstr "您正在查找的资源不可用"
@@ -26683,7 +26901,7 @@ msgstr "角色{0}应为自定义角色。"
msgid "The selected document {0} is not a {1}."
msgstr "所选文档{0}不是{1}类型。"
-#: frappe/utils/response.py:338
+#: frappe/utils/response.py:343
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "系统正在更新。请稍后刷新页面。"
@@ -26695,6 +26913,42 @@ msgstr "本系统提供了许多预定义角色。您可以添加新角色设定
msgid "The total number of user document types limit has been crossed."
msgstr "已超过用户文档类型总数限制。"
+#: frappe/core/page/permission_manager/permission_manager_help.html:43
+msgid "The user can create a new Item but cannot edit existing items."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:48
+msgid "The user can delete Draft / Cancelled documents."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:68
+msgid "The user can export report data."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:73
+msgid "The user can import new records or update existing data for the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:28
+msgid "The user can select a Customer in Sales Order but cannot open the Customer master."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:78
+msgid "The user can share document access with another user."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "The user can update a customer or any other fields in an existing Sales Order but cannot create a new Sales Order."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:33
+msgid "The user can view Sales Invoices but cannot modify any field values in them."
+msgstr ""
+
+#: frappe/model/base_document.py:817
+msgid "The value of the field {0} is too long in the {1} document. To resolve this issue, please reduce the value length or change the {0} field Type to Long Text using customize form, and then try again."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr "您粘贴的值长度为{0}个字符。最大允许字符数为{1}。"
@@ -26736,7 +26990,7 @@ msgstr "主题网址"
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:473
+#: frappe/public/js/frappe/ui/notifications/notifications.js:482
msgid "There are no upcoming events for you."
msgstr "你没有待处理事项"
@@ -26744,7 +26998,7 @@ msgstr "你没有待处理事项"
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "此{1}无{0},何不创建一个!"
-#: frappe/public/js/frappe/views/reports/query_report.js:976
+#: frappe/public/js/frappe/views/reports/query_report.js:988
msgid "There are {0} with the same filters already in the queue:"
msgstr "队列中已有{0}条相同筛选条件的记录:"
@@ -26753,7 +27007,7 @@ msgstr "队列中已有{0}条相同筛选条件的记录:"
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr "网页表单最多允许9个分页符字段"
-#: frappe/core/doctype/doctype/doctype.py:1458
+#: frappe/core/doctype/doctype/doctype.py:1472
msgid "There can be only one Fold in a form"
msgstr "一个表单只能有一个折叠"
@@ -26765,11 +27019,11 @@ msgstr "地址模板有一个错误{0}"
msgid "There is no data to be exported"
msgstr "没有可导出的数据"
-#: frappe/model/workflow.py:170
+#: frappe/model/workflow.py:191
msgid "There is no task called \"{}\""
msgstr "不存在名为\"{}\"的任务"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:523
+#: frappe/public/js/frappe/ui/notifications/notifications.js:532
msgid "There is nothing new to show you right now."
msgstr "暂无可显示新消息"
@@ -26777,7 +27031,7 @@ msgstr "暂无可显示新消息"
msgid "There is some problem with the file url: {0}"
msgstr "有一些问题与文件的URL:{0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:973
+#: frappe/public/js/frappe/views/reports/query_report.js:985
msgid "There is {0} with the same filters already in the queue:"
msgstr "队列中已有{0}条相同筛选条件的记录:"
@@ -26793,7 +27047,7 @@ msgstr "构建此页面时出错"
msgid "There was an error saving filters"
msgstr "保存过滤条件时出错"
-#: frappe/public/js/frappe/form/sidebar/attachments.js:237
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
msgstr "出错了"
@@ -26801,11 +27055,11 @@ msgstr "出错了"
msgid "There were errors while creating the document. Please try again."
msgstr "创建单据时出错。请再试一次。"
-#: frappe/public/js/frappe/views/communication.js:834
+#: frappe/public/js/frappe/views/communication.js:903
msgid "There were errors while sending email. Please try again."
msgstr "邮件发送失败,请重试。"
-#: frappe/model/naming.py:502
+#: frappe/model/naming.py:500
msgid "There were some errors setting the name, please contact the administrator"
msgstr "设置名称时出现错误,请与管理员联系"
@@ -26874,11 +27128,11 @@ msgstr "本年"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "此操作不可逆。是否继续?"
-#: frappe/__init__.py:545
+#: frappe/__init__.py:543
msgid "This action is only allowed for {}"
msgstr "此操作仅允许{}执行"
-#: frappe/public/js/frappe/form/toolbar.js:128
+#: frappe/public/js/frappe/form/toolbar.js:127
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "不可撤销"
@@ -26902,7 +27156,7 @@ msgstr "如勾选,所有用户可查看此统计图表"
msgid "This doctype has no orphan fields to trim"
msgstr "此文档类型无孤立字段需清理"
-#: frappe/core/doctype/doctype/doctype.py:1069
+#: frappe/core/doctype/doctype/doctype.py:1072
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
msgstr "此文档类型有待执行迁移,修改前请运行'bench migrate'以避免丢失更改。"
@@ -26918,15 +27172,15 @@ msgstr "本文档已加入提交队列。您可通过{0}跟踪进度。"
msgid "This document has been modified after the email was sent."
msgstr "发电子邮件后,此单据已被修改。"
-#: frappe/public/js/frappe/form/form.js:1317
+#: frappe/public/js/frappe/form/form.js:1346
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
msgstr "此文档存在未保存更改,可能不会反映在最终PDF中。
打印前请先保存文档。"
-#: frappe/public/js/frappe/form/form.js:1105
+#: frappe/public/js/frappe/form/form.js:1134
msgid "This document is already amended, you cannot ammend it again"
msgstr "此文档已修订,不可再次修订"
-#: frappe/model/document.py:509
+#: frappe/model/document.py:508
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "单据被后台待执行操作锁定,请稍后再试。"
@@ -26940,7 +27194,7 @@ msgid "This feature can not be used as dependencies are missing.\n"
msgstr "由于缺少依赖项,该功能无法使用。\n"
"\t\t\t\t请联系系统管理员,通过安装 pycups 来启用此功能!"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:41
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:65
msgid "This feature is brand new and still experimental"
msgstr "此功能是全新的,仍处于试验阶段"
@@ -26968,11 +27222,11 @@ msgstr "本文件为公开文件,无需登录即可访问。请设为私有以
msgid "This file is public. It can be accessed without authentication."
msgstr "此为公开文件,用户无需登录即可访问"
-#: frappe/public/js/frappe/form/form.js:1211
+#: frappe/public/js/frappe/form/form.js:1240
msgid "This form has been modified after you have loaded it"
msgstr "重新加载后表单就已被修改,"
-#: frappe/public/js/frappe/form/form.js:2275
+#: frappe/public/js/frappe/form/form.js:2306
msgid "This form is not editable due to a Workflow."
msgstr "此表单因工作流状态不能被编辑。"
@@ -26991,7 +27245,7 @@ msgstr "暂不支持此地理位置服务提供商。"
msgid "This goes above the slideshow."
msgstr "在幻灯片上面。"
-#: frappe/public/js/frappe/views/reports/query_report.js:2219
+#: frappe/public/js/frappe/views/reports/query_report.js:2306
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "此报表是后台运行报表,请设置恰当的过滤条件并点击右上角生成新报表按钮获取报表结果"
@@ -27033,15 +27287,15 @@ msgstr "此链接已激活以进行验证。"
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
msgstr "此链接是无效或过期。请确保你已经正确粘贴。"
-#: frappe/printing/page/print/print.js:450
+#: frappe/printing/page/print/print.js:458
msgid "This may get printed on multiple pages"
msgstr "可能会打印多页"
-#: frappe/utils/goal.py:121
+#: frappe/utils/goal.py:120
msgid "This month"
msgstr "这个月"
-#: frappe/public/js/frappe/views/reports/query_report.js:1052
+#: frappe/public/js/frappe/views/reports/query_report.js:1064
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告。"
@@ -27049,7 +27303,7 @@ msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告
msgid "This report was generated on {0}"
msgstr "此报表是在{0}上生成的"
-#: frappe/public/js/frappe/views/reports/query_report.js:864
+#: frappe/public/js/frappe/views/reports/query_report.js:876
msgid "This report was generated {0}."
msgstr "报表{0}已生成。"
@@ -27073,7 +27327,7 @@ msgstr "本软件基于众多开源软件包构建。"
msgid "This title will be used as the title of the webpage as well as in meta tags"
msgstr "此标题将作为网页标题及元标签内容"
-#: frappe/public/js/frappe/form/controls/base_input.js:129
+#: frappe/public/js/frappe/form/controls/base_input.js:141
msgid "This value is fetched from {0}'s {1} field"
msgstr "此值取自{0}的{1}字段"
@@ -27117,7 +27371,7 @@ msgstr "将重置此导览并向所有用户显示。是否继续?"
msgid "This will terminate the job immediately and might be dangerous, are you sure?"
msgstr "此操作将立即终止任务且可能存在风险,是否确认继续?"
-#: frappe/core/doctype/user/user.py:1322
+#: frappe/core/doctype/user/user.py:1325
msgid "Throttled"
msgstr "节流"
@@ -27148,6 +27402,7 @@ msgstr "星期四"
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the time (Time) field in DocType 'Event Notifications'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/recorder/recorder.json
@@ -27155,6 +27410,7 @@ 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/desk/doctype/event_notifications/event_notifications.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "时间"
@@ -27237,11 +27493,6 @@ msgstr "时间{0}必须符合格式:{1}"
msgid "Timed Out"
msgstr "超时"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "Timeless Launchpad"
-msgstr ""
-
#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr "永恒之夜主题"
@@ -27273,11 +27524,11 @@ msgstr "时间线链接"
msgid "Timeline Name"
msgstr "时间线名称"
-#: frappe/core/doctype/doctype/doctype.py:1553
+#: frappe/core/doctype/doctype/doctype.py:1567
msgid "Timeline field must be a Link or Dynamic Link"
msgstr "时间线字段必须是一个链接或动态链接"
-#: frappe/core/doctype/doctype/doctype.py:1549
+#: frappe/core/doctype/doctype/doctype.py:1563
msgid "Timeline field must be a valid fieldname"
msgstr "时间线字段必须是有效的字段名"
@@ -27348,7 +27599,7 @@ msgstr "提示:尝试使用新的下拉控制台"
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/public/js/frappe/views/workspace/workspace.js:407
+#: frappe/public/js/frappe/views/workspace/workspace.js:455
#: 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
@@ -27371,7 +27622,7 @@ msgstr "标题字段"
msgid "Title Prefix"
msgstr "标题前缀"
-#: frappe/core/doctype/doctype/doctype.py:1490
+#: frappe/core/doctype/doctype/doctype.py:1504
msgid "Title field must be a valid fieldname"
msgstr "标题字段必须是有效的字段名"
@@ -27462,7 +27713,7 @@ msgstr "导出此步骤为JSON需关联到入职文档并保存"
msgid "To generate password click {0}"
msgstr "生成密码请点击{0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:865
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "To get the updated report, click on {0}."
msgstr "要获取已更新报表,请单击{0}。"
@@ -27515,31 +27766,14 @@ msgstr "待办"
msgid "Today"
msgstr "今天"
-#: frappe/public/js/frappe/views/reports/report_view.js:1566
+#: frappe/public/js/frappe/views/reports/report_view.js:1567
msgid "Toggle Chart"
msgstr "切换图表"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Full Width"
-msgstr "切换全屏宽度显示"
-
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
msgstr "切换到图标视图"
-#: frappe/public/js/frappe/ui/page.js:206
-#: frappe/public/js/frappe/ui/page.js:208
-msgid "Toggle Sidebar"
-msgstr "切换边栏"
-
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
-msgid "Toggle Theme"
-msgstr "切换主题"
-
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
@@ -27575,7 +27809,7 @@ msgid "Tomorrow"
msgstr "明天"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
-#: frappe/model/workflow.py:310
+#: frappe/model/workflow.py:331
msgid "Too Many Documents"
msgstr "文档数量过多"
@@ -27583,15 +27817,19 @@ msgstr "文档数量过多"
msgid "Too Many Requests"
msgstr "请求过多"
-#: frappe/database/database.py:474
+#: frappe/database/database.py:480
msgid "Too many changes to database in single action."
msgstr "单次操作中数据库变更过多"
-#: frappe/utils/background_jobs.py:737
+#: frappe/utils/background_jobs.py:736
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "后台作业队列过长({0}),请稍后重试"
-#: frappe/core/doctype/user/user.py:1090
+#: frappe/templates/includes/login/login.js:291
+msgid "Too many requests. Please try again later."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1093
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "最近有太多用户注册,导致注册功能被自动临时禁用了,请一个小时后重试。"
@@ -27647,10 +27885,10 @@ msgstr "顶部右侧"
msgid "Topic"
msgstr "主题"
-#: frappe/desk/query_report.py:622
-#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1354
-#: frappe/public/js/frappe/views/reports/report_view.js:1547
+#: frappe/desk/query_report.py:621
+#: frappe/public/js/frappe/views/reports/print_grid.html:50
+#: frappe/public/js/frappe/views/reports/query_report.js:1366
+#: frappe/public/js/frappe/views/reports/report_view.js:1548
msgid "Total"
msgstr "总计"
@@ -27665,7 +27903,7 @@ msgstr "后台工作进程总数"
msgid "Total Errors (last 1 day)"
msgstr "总错误数(最近1天)"
-#: frappe/public/js/frappe/ui/capture.js:259
+#: frappe/public/js/frappe/ui/capture.js:260
msgid "Total Images"
msgstr "总图片数"
@@ -27767,7 +28005,7 @@ msgstr "追踪收件人是否打开邮件.\n"
msgid "Track milestones for any document"
msgstr "跟踪任何单据的里程碑"
-#: frappe/public/js/frappe/utils/utils.js:1936
+#: frappe/public/js/frappe/utils/utils.js:2067
msgid "Tracking URL generated and copied to clipboard"
msgstr "跟踪URL已生成并复制到剪贴板"
@@ -27803,7 +28041,7 @@ msgstr "状态转换"
msgid "Translatable"
msgstr "可翻译"
-#: frappe/public/js/frappe/views/reports/query_report.js:2274
+#: frappe/public/js/frappe/views/reports/query_report.js:2367
msgid "Translate Data"
msgstr "翻译数据"
@@ -27814,7 +28052,7 @@ msgstr "翻译数据"
msgid "Translate Link Fields"
msgstr "翻译链接字段"
-#: frappe/public/js/frappe/views/reports/report_view.js:1662
+#: frappe/public/js/frappe/views/reports/report_view.js:1663
msgid "Translate values"
msgstr "翻译值"
@@ -27850,7 +28088,7 @@ msgstr "垃圾"
#. 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
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:89
msgid "Tree"
msgstr "树"
@@ -27899,8 +28137,8 @@ msgstr "重试"
msgid "Try a Naming Series"
msgstr "单据编号模板预览"
-#: frappe/printing/page/print/print.js:204
-#: frappe/printing/page/print/print.js:210
+#: frappe/printing/page/print/print.js:212
+#: frappe/printing/page/print/print.js:218
msgid "Try the new Print Designer"
msgstr "试用新版打印设计器"
@@ -27946,6 +28184,7 @@ msgstr "双重验证方法"
#. 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 'Event Notifications'
#. 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'
@@ -27959,6 +28198,7 @@ msgstr "双重验证方法"
#: 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/event_notifications/event_notifications.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
@@ -27967,7 +28207,7 @@ msgstr "双重验证方法"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
#: frappe/public/js/frappe/views/file/file_view.js:371
-#: frappe/public/js/frappe/views/workspace/workspace.js:413
+#: frappe/public/js/frappe/views/workspace/workspace.js:461
#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
@@ -28135,7 +28375,7 @@ msgstr "UTM来源"
msgid "UUID"
msgstr "通用唯一标识符"
-#: frappe/desk/form/document_follow.py:79
+#: frappe/desk/form/document_follow.py:85
msgid "Un-following document {0}"
msgstr "取消关注文档{0}"
@@ -28143,7 +28383,7 @@ msgstr "取消关注文档{0}"
msgid "Unable to find DocType {0}"
msgstr "无法找到DocType {0}"
-#: frappe/public/js/frappe/ui/capture.js:338
+#: frappe/public/js/frappe/ui/capture.js:339
msgid "Unable to load camera."
msgstr "无法加载相机。"
@@ -28159,7 +28399,7 @@ msgstr "无法打开附件单据,您确认导出文件并存为了CSV格式?
msgid "Unable to read file format for {0}"
msgstr "无法读取{0}的文件格式"
-#: frappe/core/doctype/communication/email.py:180
+#: frappe/core/doctype/communication/email.py:204
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr "缺少邮箱账户无法发送邮件,请通过设置>邮箱账户配置默认账户"
@@ -28180,20 +28420,20 @@ msgstr "取消分派条件"
msgid "Uncaught Exception"
msgstr "未捕获异常"
-#: frappe/public/js/frappe/form/toolbar.js:114
+#: frappe/public/js/frappe/form/toolbar.js:113
msgid "Unchanged"
msgstr "未变更"
-#: frappe/public/js/frappe/form/toolbar.js:551
+#: frappe/public/js/frappe/form/toolbar.js:554
msgid "Undo"
msgstr "撤销"
-#: frappe/public/js/frappe/form/toolbar.js:559
+#: frappe/public/js/frappe/form/toolbar.js:562
msgid "Undo last action"
msgstr "撤销上一步操作"
-#: frappe/public/js/frappe/form/templates/form_sidebar.html:131
-#: frappe/public/js/frappe/form/toolbar.js:912
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:152
+#: frappe/public/js/frappe/form/toolbar.js:944
msgid "Unfollow"
msgstr "取消关注"
@@ -28267,9 +28507,10 @@ msgstr "未读发送通知"
msgid "Unsafe SQL query"
msgstr "不安全的SQL查询"
-#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:9
+#: frappe/public/js/frappe/data_import/data_exporter.js:160
#: frappe/public/js/frappe/form/controls/multicheck.js:167
-#: frappe/public/js/frappe/views/reports/report_view.js:1605
+#: frappe/public/js/frappe/views/reports/report_view.js:1606
msgid "Unselect All"
msgstr "全部不选"
@@ -28302,11 +28543,11 @@ msgstr "退订参数"
msgid "Unsubscribed"
msgstr "已退订"
-#: frappe/database/query.py:1055
+#: frappe/database/query.py:1098
msgid "Unsupported function or operator: {0}"
msgstr ""
-#: frappe/database/query.py:1967
+#: frappe/database/query.py:2045
msgid "Unsupported {0}: {1}"
msgstr ""
@@ -28326,7 +28567,7 @@ msgstr "解压缩{0}个文件"
msgid "Unzipping files..."
msgstr "解压缩文件..."
-#: frappe/desk/doctype/event/event.py:273
+#: frappe/desk/doctype/event/event.py:323
msgid "Upcoming Events for Today"
msgstr "今日活动"
@@ -28334,13 +28575,13 @@ msgstr "今日活动"
#: 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/custom/doctype/customize_form/customize_form.js:448
#: 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:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:799
+#: frappe/public/js/frappe/form/grid_row.js:429
msgid "Update"
msgstr "更新"
@@ -28411,7 +28652,7 @@ msgstr "更新值"
msgid "Update from Frappe Cloud"
msgstr "从Frappe云更新"
-#: frappe/public/js/frappe/list/bulk_operations.js:375
+#: frappe/public/js/frappe/list/bulk_operations.js:387
msgid "Update {0} records"
msgstr "更新{0}个单据"
@@ -28419,8 +28660,7 @@ msgstr "更新{0}个单据"
#. 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/workspace_settings/workspace_settings.py:41
-#: frappe/public/js/frappe/web_form/web_form.js:451
+#: frappe/public/js/frappe/web_form/web_form.js:447
msgid "Updated"
msgstr "已更新"
@@ -28432,11 +28672,11 @@ msgstr "更新成功"
msgid "Updated To A New Version 🎉"
msgstr "已更新至新版本🎉"
-#: frappe/public/js/frappe/list/bulk_operations.js:372
+#: frappe/public/js/frappe/list/bulk_operations.js:384
msgid "Updated successfully"
msgstr "更新成功"
-#: frappe/utils/response.py:337
+#: frappe/utils/response.py:342
msgid "Updating"
msgstr "更新"
@@ -28461,11 +28701,11 @@ msgstr "更新全局设置"
msgid "Updating naming series options"
msgstr "更新命名系列选项"
-#: frappe/public/js/frappe/form/toolbar.js:147
+#: frappe/public/js/frappe/form/toolbar.js:146
msgid "Updating related fields..."
msgstr "正在更新相关字段..."
-#: frappe/desk/doctype/bulk_update/bulk_update.py:95
+#: frappe/desk/doctype/bulk_update/bulk_update.py:117
msgid "Updating {0}"
msgstr "更新{0}"
@@ -28473,12 +28713,12 @@ msgstr "更新{0}"
msgid "Updating {0} of {1}, {2}"
msgstr "上传中 {0} / {1} {2}"
-#: frappe/public/js/billing.bundle.js:131
+#: frappe/public/js/billing.bundle.js:133
msgid "Upgrade plan"
msgstr "升级计划"
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:145
-#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:152
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:153
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
@@ -28526,6 +28766,7 @@ msgstr "所选期间的第一天"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:116
msgid "Use HTML"
msgstr "使用HTML"
@@ -28597,7 +28838,7 @@ msgstr "当默认设置无法正确识别数据时使用"
msgid "Use of sub-query or function is restricted"
msgstr "子查询或函数的使用受到限制"
-#: frappe/printing/page/print/print.js:311
+#: frappe/printing/page/print/print.js:319
msgid "Use the new Print Format Builder"
msgstr "启用新打印格式编辑器"
@@ -28631,9 +28872,8 @@ msgstr "启用OAuth"
#. Label of the user (Link) field in DocType 'User Group Member'
#. Label of the user (Link) field in DocType 'User Invitation'
#. Label of the user (Link) field in DocType 'User Permission'
-#. Label of a Link in the Users Workspace
-#. Label of a shortcut in the Users Workspace
#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Desktop Layout'
#. 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'
@@ -28660,11 +28900,11 @@ msgstr "启用OAuth"
#: frappe/core/doctype/user_group_member/user_group_member.json
#: frappe/core/doctype/user_invitation/user_invitation.json
#: frappe/core/doctype/user_permission/user_permission.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
+#: frappe/core/page/permission_manager/permission_manager.js:367
#: 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/desktop_layout/desktop_layout.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
@@ -28800,7 +29040,7 @@ msgstr "用户图片"
msgid "User Invitation"
msgstr "用户邀请"
-#: frappe/public/js/frappe/ui/sidebar/sidebar.html:50
+#: frappe/public/js/frappe/ui/sidebar/sidebar.html:51
msgid "User Menu"
msgstr "用户菜单"
@@ -28816,19 +29056,19 @@ msgid "User Permission"
msgstr "用户权限限制"
#. Label of a Link in the Users Workspace
-#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:97
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1974
-#: frappe/public/js/frappe/views/reports/report_view.js:1765
+#: frappe/public/js/frappe/views/reports/query_report.js:2053
+#: frappe/public/js/frappe/views/reports/report_view.js:1766
msgid "User Permissions"
msgstr "用户权限限制"
-#: frappe/public/js/frappe/list/list_view.js:1925
+#: frappe/public/js/frappe/list/list_view.js:1933
msgctxt "Button in list view menu"
msgid "User Permissions"
msgstr "用户权限"
-#: frappe/core/page/permission_manager/permission_manager_help.html:32
+#: frappe/core/page/permission_manager/permission_manager_help.html:99
msgid "User Permissions are used to limit users to specific records."
msgstr "用户权限限制用于过滤出允许用户访问的单据。"
@@ -28901,7 +29141,7 @@ msgstr "用户可以使用电子邮件ID或手机号登录"
msgid "User can login using Email id or User Name"
msgstr "用户可以使用电子邮件ID或用户名登录"
-#: frappe/templates/includes/login/login.js:292
+#: frappe/templates/includes/login/login.js:290
msgid "User does not exist."
msgstr "用户不存在"
@@ -28935,27 +29175,27 @@ 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:576
+#: frappe/core/doctype/user/user.py:579
msgid "User {0} cannot be deleted"
msgstr "用户{0}不能被删除"
-#: frappe/core/doctype/user/user.py:366
+#: frappe/core/doctype/user/user.py:369
msgid "User {0} cannot be disabled"
msgstr "用户{0}不能被禁用"
-#: frappe/core/doctype/user/user.py:649
+#: frappe/core/doctype/user/user.py:652
msgid "User {0} cannot be renamed"
msgstr "不允许变更用户名{0}"
-#: frappe/permissions.py:142
+#: frappe/permissions.py:146
msgid "User {0} does not have access to this document"
msgstr "用户{0}无权访问此单据"
-#: frappe/permissions.py:165
+#: frappe/permissions.py:171
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "角色权限管理中未授权用户 {0} 访问 {1}"
-#: frappe/desk/doctype/workspace/workspace.py:306
+#: frappe/desk/doctype/workspace/workspace.py:285
msgid "User {0} does not have the permission to create a Workspace."
msgstr "用户{0}无权创建工作区"
@@ -28964,11 +29204,11 @@ msgstr "用户{0}无权创建工作区"
msgid "User {0} has requested for data deletion"
msgstr "用户{0}已请求数据删除"
-#: frappe/core/doctype/user/user.py:1449
+#: frappe/core/doctype/user/user.py:1452
msgid "User {0} impersonated as {1}"
msgstr "用户 {0} 以 {1} 身份登录"
-#: frappe/utils/oauth.py:298
+#: frappe/utils/oauth.py:300
msgid "User {0} is disabled"
msgstr "用户{0}已禁用"
@@ -28993,18 +29233,17 @@ msgstr "用户信息URI"
msgid "Username"
msgstr "用户名"
-#: frappe/core/doctype/user/user.py:738
+#: frappe/core/doctype/user/user.py:741
msgid "Username {0} already exists"
msgstr "用户名{0}已存在"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
-#. Label of a Card Break in the Users Workspace
#. Label of the users_section (Section Break) field in DocType 'System Health
#. Report'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
-#: frappe/core/page/permission_manager/permission_manager.js:366
-#: frappe/core/page/permission_manager/permission_manager.js:405
+#: frappe/core/page/permission_manager/permission_manager.js:367
+#: frappe/core/page/permission_manager/permission_manager.js:406
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
@@ -29075,7 +29314,7 @@ msgstr "验证Frappe邮件设置"
msgid "Validate SSL Certificate"
msgstr "验证SSL证书"
-#: frappe/public/js/frappe/web_form/web_form.js:384
+#: frappe/public/js/frappe/web_form/web_form.js:380
msgid "Validation Error"
msgstr "验证错误"
@@ -29104,7 +29343,7 @@ msgstr "有效性"
#: 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/bulk_operations.js:410
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
#: frappe/website/doctype/web_form/web_form.js:213
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
@@ -29131,15 +29370,19 @@ msgstr "值变更的字段"
msgid "Value To Be Set"
msgstr "字段值"
-#: frappe/model/base_document.py:1159 frappe/model/document.py:878
+#: frappe/model/base_document.py:820
+msgid "Value Too Long"
+msgstr ""
+
+#: frappe/model/base_document.py:1176 frappe/model/document.py:877
msgid "Value cannot be changed for {0}"
msgstr "值不能被改变为{0}"
-#: frappe/model/document.py:824
+#: frappe/model/document.py:823
msgid "Value cannot be negative for"
msgstr "值不能为负数:"
-#: frappe/model/document.py:828
+#: frappe/model/document.py:827
msgid "Value cannot be negative for {0}: {1}"
msgstr "{0}的值不能为负数:{1}"
@@ -29151,7 +29394,7 @@ msgstr "勾选字段值可以为0或1"
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
msgstr "{1} 中的字段 {0} 值太长,长度应该小于 {2}"
-#: frappe/model/base_document.py:526
+#: frappe/model/base_document.py:531
msgid "Value for {0} cannot be a list"
msgstr "{0}不能是列表值"
@@ -29176,7 +29419,13 @@ msgstr "值为\"None\"表示公共客户端。在此情况下,客户端密钥
msgid "Value to Validate"
msgstr "待验证的值"
-#: frappe/model/base_document.py:1229
+#. Description of the 'Update Value' (Data) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Value to set when this workflow state is applied. Use plain text (e.g. Approved) or an expression if “Evaluate as Expression” is enabled."
+msgstr ""
+
+#: frappe/model/base_document.py:1246
msgid "Value too big"
msgstr "值过大"
@@ -29193,7 +29442,7 @@ msgstr "值{0}必须符合有效时长格式:d h m s"
msgid "Value {0} must in {1} format"
msgstr "值{0}必须符合{1}格式"
-#: frappe/core/doctype/version/version_view.html:9
+#: frappe/core/doctype/version/version_view.html:59
msgid "Values Changed"
msgstr "值已更改"
@@ -29202,11 +29451,11 @@ msgstr "值已更改"
msgid "Verdana"
msgstr "Verdana"
-#: frappe/templates/includes/login/login.js:333
+#: frappe/templates/includes/login/login.js:332
msgid "Verification"
msgstr "验证"
-#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:366
+#: frappe/templates/includes/login/login.js:335 frappe/twofactor.py:366
msgid "Verification Code"
msgstr "验证码"
@@ -29214,7 +29463,7 @@ msgstr "验证码"
msgid "Verification Link"
msgstr "验证链接"
-#: frappe/templates/includes/login/login.js:383
+#: frappe/templates/includes/login/login.js:382
msgid "Verification code email not sent. Please contact Administrator."
msgstr "验证码邮件未发送,请联系管理员"
@@ -29228,7 +29477,7 @@ msgid "Verified"
msgstr "验证"
#: frappe/public/js/frappe/ui/messages.js:359
-#: frappe/templates/includes/login/login.js:337
+#: frappe/templates/includes/login/login.js:336
msgid "Verify"
msgstr "确认"
@@ -29264,7 +29513,7 @@ msgstr "查看"
msgid "View All"
msgstr "查看全部"
-#: frappe/public/js/frappe/form/toolbar.js:613
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "View Audit Trail"
msgstr "查看审计跟踪"
@@ -29276,7 +29525,7 @@ msgstr "查看文档类型权限"
msgid "View File"
msgstr "查看文件"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:251
+#: frappe/public/js/frappe/ui/notifications/notifications.js:260
msgid "View Full Log"
msgstr "查看全部日志"
@@ -29313,7 +29562,7 @@ msgstr "查看报表"
msgid "View Settings"
msgstr "视图设置"
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:7
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.js:11
msgid "View Sidebar"
msgstr ""
@@ -29322,14 +29571,11 @@ msgstr ""
msgid "View Switcher"
msgstr "视图切换"
-#. Label of a standard navbar item
-#. Type: Action
-#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
msgstr "查看网站"
-#: frappe/core/page/permission_manager/permission_manager.js:395
+#: frappe/core/page/permission_manager/permission_manager.js:396
msgid "View all {0} users"
msgstr ""
@@ -29345,7 +29591,7 @@ msgstr "在浏览器中查看报表"
msgid "View this in your browser"
msgstr "在浏览器查看"
-#: frappe/public/js/frappe/web_form/web_form.js:478
+#: frappe/public/js/frappe/web_form/web_form.js:474
msgctxt "Button in web form"
msgid "View your response"
msgstr "查看您的响应"
@@ -29381,7 +29627,7 @@ msgstr "虚拟文档类型{}需要名为{}的静态方法,找到{}"
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr "虚拟文档类型{}需要重写名为{}的实例方法,找到{}"
-#: frappe/core/doctype/doctype/doctype.py:1672
+#: frappe/core/doctype/doctype/doctype.py:1686
msgid "Virtual tables must be virtual fields"
msgstr "虚拟表必须为虚拟字段"
@@ -29429,7 +29675,7 @@ msgstr "仓库"
#: 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/frappe/router.js:613
+#: frappe/public/js/frappe/router.js:618
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
msgstr "警告"
@@ -29438,7 +29684,7 @@ msgstr "警告"
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
msgstr "警告:即将数据丢失!继续操作将永久删除{0}的数据库列:"
-#: frappe/core/doctype/doctype/doctype.py:1140
+#: frappe/core/doctype/doctype/doctype.py:1143
msgid "Warning: Naming is not set"
msgstr "警告:未设置命名规则"
@@ -29522,7 +29768,7 @@ msgstr "网站网页"
msgid "Web Page Block"
msgstr "网页区块"
-#: frappe/public/js/frappe/utils/utils.js:1864
+#: frappe/public/js/frappe/utils/utils.js:1995
msgid "Web Page URL"
msgstr "网页URL"
@@ -29619,7 +29865,7 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:37
+#: frappe/public/js/frappe/ui/sidebar/sidebar_header.js:32
#: frappe/public/js/frappe/ui/toolbar/about.js:11
#: frappe/website/workspace/website/website.json
msgid "Website"
@@ -29674,7 +29920,7 @@ msgstr "网站脚本"
msgid "Website Search Field"
msgstr "网站搜索字段"
-#: frappe/core/doctype/doctype/doctype.py:1537
+#: frappe/core/doctype/doctype/doctype.py:1551
msgid "Website Search Field must be a valid fieldname"
msgstr "网站搜索字段必须是有效字段名"
@@ -29739,6 +29985,11 @@ msgstr "网站主题图片链接"
msgid "Website Themes Available"
msgstr ""
+#. Label of a number card in the Users Workspace
+#: frappe/core/workspace/users/users.json
+msgid "Website Users"
+msgstr ""
+
#. Label of a chart in the Website Workspace
#: frappe/website/workspace/website/website.json
msgid "Website Visits"
@@ -29826,15 +30077,15 @@ msgstr "欢迎页网址"
msgid "Welcome Workspace"
msgstr "欢迎工作区"
-#: frappe/core/doctype/user/user.py:454
+#: frappe/core/doctype/user/user.py:457
msgid "Welcome email sent"
msgstr "欢迎电子邮件已发送"
-#: frappe/core/doctype/user/user.py:515
+#: frappe/core/doctype/user/user.py:518
msgid "Welcome to {0}"
msgstr "欢迎{0}"
-#: frappe/public/js/frappe/ui/notifications/notifications.js:73
+#: frappe/public/js/frappe/ui/notifications/notifications.js:80
msgid "What's New"
msgstr "新消息"
@@ -29856,10 +30107,6 @@ msgstr "邮件发送单据时在沟通(时间线)记录中保存pdf附件。提
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr "上传文件时强制使用网页上传图片机制,如未勾选,如侦测是移动设备则默认使用移动设备照相机"
-#: frappe/core/page/permission_manager/permission_manager_help.html:18
-msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr "当你修订一个已取消和保存的单据时,单据会复制为一个副本。"
-
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
@@ -29877,7 +30124,7 @@ msgstr "此快捷方式应跳转至关联文档类型的哪个视图?"
#: 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/printing/page/print_format_builder/print_format_builder_column_selector.html:14
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
msgstr "宽度"
@@ -29998,6 +30245,10 @@ msgstr "工作流详情"
msgid "Workflow Document State"
msgstr "工作流单据状态"
+#: frappe/model/workflow.py:113
+msgid "Workflow Evaluation Error"
+msgstr ""
+
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
@@ -30015,11 +30266,11 @@ msgstr "工作流状态"
msgid "Workflow State Field"
msgstr "工作流状态字段"
-#: frappe/model/workflow.py:64
+#: frappe/model/workflow.py:67
msgid "Workflow State not set"
msgstr "工作流状态未设置"
-#: frappe/model/workflow.py:260 frappe/model/workflow.py:268
+#: frappe/model/workflow.py:281 frappe/model/workflow.py:289
msgid "Workflow State transition not allowed from {0} to {1}"
msgstr "不允许从{0}到{1}的工作流状态转换"
@@ -30027,7 +30278,7 @@ msgstr "不允许从{0}到{1}的工作流状态转换"
msgid "Workflow States Don't Exist"
msgstr "工作流状态不存在"
-#: frappe/model/workflow.py:384
+#: frappe/model/workflow.py:405
msgid "Workflow Status"
msgstr "工作流状态"
@@ -30062,18 +30313,15 @@ msgstr "工作流更新成功"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Sidebar
#. Item'
#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
-#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_sidebar_item/workspace_sidebar_item.json
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:100
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:601
-#: frappe/public/js/frappe/utils/utils.js:968
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+#: frappe/public/js/frappe/utils/utils.js:956
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr "工作区"
@@ -30100,7 +30348,6 @@ 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 "工作区管理员"
@@ -30114,27 +30361,15 @@ msgstr "工作区数字卡"
msgid "Workspace Quick List"
msgstr "工作区快速访问列表"
-#. Label of a standard navbar item
-#. Type: Action
-#. Name of a DocType
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-#: frappe/hooks.py
-msgid "Workspace Settings"
-msgstr "工作区设置"
-
-#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Setup Completed"
-msgstr "工作区设置完成"
-
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr "工作区捷径"
+#. Option for the 'Link Type' (Select) field in DocType 'Desktop Icon'
#. Name of a DocType
#: frappe/desk/doctype/desktop_icon/desktop_icon.js:17
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.json
msgid "Workspace Sidebar"
msgstr ""
@@ -30144,13 +30379,7 @@ msgstr ""
msgid "Workspace Sidebar Item"
msgstr ""
-#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
-#. Settings'
-#: frappe/desk/doctype/workspace_settings/workspace_settings.json
-msgid "Workspace Visibility"
-msgstr "工作区可见性"
-
-#: frappe/public/js/frappe/views/workspace/workspace.js:553
+#: frappe/public/js/frappe/views/workspace/workspace.js:602
msgid "Workspace {0} created"
msgstr "工作区{0}已创建"
@@ -30179,11 +30408,12 @@ msgstr "已圆满完成"
#: frappe/core/doctype/docperm/docperm.json
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/page/permission_manager/permission_manager_help.html:36
#: frappe/public/js/frappe/form/templates/set_sharing.html:3
msgid "Write"
msgstr "写"
-#: frappe/model/base_document.py:1055
+#: frappe/model/base_document.py:1072
msgid "Wrong Fetch From value"
msgstr "错误的获取来源值"
@@ -30201,7 +30431,7 @@ msgstr "X轴字段"
msgid "XLSX"
msgstr "XLSX"
-#: frappe/public/js/frappe/file_uploader/FileUploader.vue:641
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:644
msgid "XMLHttpRequest Error"
msgstr ""
@@ -30216,7 +30446,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:1255
+#: frappe/public/js/frappe/views/reports/query_report.js:1267
msgid "Y Field"
msgstr "Y轴字段"
@@ -30264,10 +30494,14 @@ msgstr "黄色"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
+#. Option for the 'Attending' (Select) field in DocType 'Event'
+#. Option for the 'Attending' (Select) field in DocType 'Event Participants'
#. 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/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/notification/notification.py:97
#: frappe/email/doctype/notification/notification.py:102
#: frappe/email/doctype/notification/notification.py:104
@@ -30276,10 +30510,10 @@ msgstr "黄色"
#: frappe/integrations/doctype/webhook/webhook.py:132
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/form_builder/utils.js:336
-#: frappe/public/js/frappe/form/controls/link.js:573
-#: frappe/public/js/frappe/list/base_list.js:949
+#: frappe/public/js/frappe/form/controls/link.js:574
+#: frappe/public/js/frappe/list/base_list.js:948
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:170
-#: frappe/public/js/frappe/views/reports/query_report.js:1695
+#: frappe/public/js/frappe/views/reports/query_report.js:47
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "是"
@@ -30315,7 +30549,7 @@ msgstr "您向{0}添加了1行"
msgid "You added {0} rows to {1}"
msgstr "您向{1}添加了{0}行"
-#: frappe/public/js/frappe/router.js:642
+#: frappe/public/js/frappe/router.js:647
msgid "You are about to open an external link. To confirm, click the link again."
msgstr "您即将打开外部链接。请再次点击链接以确认。"
@@ -30323,7 +30557,7 @@ msgstr "您即将打开外部链接。请再次点击链接以确认。"
msgid "You are connected to internet."
msgstr "已联网。"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:22
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:12
msgid "You are impersonating as another user."
msgstr "您正在模拟其他用户"
@@ -30331,11 +30565,11 @@ msgstr "您正在模拟其他用户"
msgid "You are not allowed to access this resource"
msgstr "您无权访问此资源"
-#: frappe/permissions.py:437
+#: frappe/permissions.py:443
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "无权限访问{0} 类型单据,链接字段 {3} 引用了你无权访问的 {1} '{2}'"
-#: frappe/permissions.py:426
+#: frappe/permissions.py:432
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}'"
@@ -30358,7 +30592,7 @@ msgstr "您无权编辑此报表"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:447 frappe/desk/reportview.py:450
-#: frappe/permissions.py:632
+#: frappe/permissions.py:638
msgid "You are not allowed to export {} doctype"
msgstr "未被授权导出单据类型{}"
@@ -30366,10 +30600,14 @@ msgstr "未被授权导出单据类型{}"
msgid "You are not allowed to print this report"
msgstr "您未被授权打印此报表"
-#: frappe/public/js/frappe/views/communication.js:778
+#: frappe/public/js/frappe/views/communication.js:845
msgid "You are not allowed to send emails related to this document"
msgstr "你不允许发送与此单据相关的电子邮件"
+#: frappe/desk/doctype/event/event.py:251
+msgid "You are not allowed to update the status of this event."
+msgstr ""
+
#: frappe/website/doctype/web_form/web_form.py:633
msgid "You are not allowed to update this Web Form Document"
msgstr "你不允许更新此Web表单"
@@ -30386,7 +30624,7 @@ msgstr "未登录状态下无权访问此页面"
msgid "You are not permitted to access this page."
msgstr "你没有权限访问此页面。"
-#: frappe/__init__.py:464
+#: frappe/__init__.py:462
msgid "You are not permitted to access this resource. Login to access"
msgstr "您无权访问此资源。请登录后访问"
@@ -30394,7 +30632,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:125
+#: frappe/core/doctype/installed_applications/installed_applications.py:126
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "仅允许调整应用顺序,不可增删应用"
@@ -30407,7 +30645,7 @@ msgctxt "Form timeline"
msgid "You attached {0}"
msgstr "您已附加{0}"
-#: frappe/printing/page/print_format_builder/print_format_builder.js:749
+#: frappe/printing/page/print_format_builder/print_format_builder.js:783
msgid "You can add dynamic properties from the document by using Jinja templating."
msgstr "您可以通过Jinja模板来添加单据的动态属性。"
@@ -30431,10 +30669,6 @@ msgstr "也可将{0}粘贴到浏览器"
msgid "You can ask your team to resend the invitation if you'd still like to join."
msgstr "若您仍希望加入,可请团队重新发送邀请。"
-#: frappe/core/page/permission_manager/permission_manager_help.html:17
-msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr "您可以通过撤销已提交的文件,然后再修订单据。"
-
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr "可在 {0} 中设置日志保留天数让系统自动删除过期数据"
@@ -30489,7 +30723,7 @@ msgstr "如多个用户通过相同网络登录,请设置一个大一点的数
msgid "You can try changing the filters of your report."
msgstr "可尝试变更报表过滤条件"
-#: frappe/core/page/permission_manager/permission_manager_help.html:27
+#: frappe/core/page/permission_manager/permission_manager_help.html:94
msgid "You can use Customize Form to set levels on fields."
msgstr "可以使用定制表单设置字段的权限级别。"
@@ -30519,6 +30753,10 @@ msgstr "您已取消此文档{1}"
msgid "You cannot create a dashboard chart from single DocTypes"
msgstr "不能为单记录单据类型创建统计图表"
+#: frappe/share.py:246
+msgid "You cannot share `{0}` on {1} `{2}` as you do not have `{0}` permission on `{1}`"
+msgstr ""
+
#: frappe/custom/doctype/customize_form/customize_form.py:390
msgid "You cannot unset 'Read Only' for field {0}"
msgstr "你不能为字段{0}取消“只读”设置"
@@ -30545,7 +30783,6 @@ msgid "You changed {0} to {1}"
msgstr "您已将{0}改为{1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "You created this"
msgstr "你创建了本单据"
@@ -30554,11 +30791,7 @@ msgctxt "Form timeline"
msgid "You created this document {0}"
msgstr "您于{0}创建本文档"
-#: frappe/client.py:420
-msgid "You do not have Read or Select Permissions for {}"
-msgstr "您对{}无读取或选择权限"
-
-#: frappe/public/js/frappe/request.js:177
+#: frappe/public/js/frappe/request.js:175
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "您没有足够的权限来访问该资源。请联系您的经理,以获得访问权。"
@@ -30570,15 +30803,19 @@ msgstr "您未被授权完成此操作"
msgid "You do not have import permission for {0}"
msgstr ""
-#: frappe/database/query.py:910
+#: frappe/database/query.py:943
+msgid "You do not have permission to access child table field: {0}"
+msgstr ""
+
+#: frappe/database/query.py:953
msgid "You do not have permission to access field: {0}"
msgstr "您无权访问字段:{0}"
-#: frappe/desk/query_report.py:969
+#: frappe/desk/query_report.py:968
msgid "You do not have permission to access {0}: {1}."
msgstr "您无权访问{0}:{1}。"
-#: frappe/public/js/frappe/form/form.js:963
+#: frappe/public/js/frappe/form/form.js:992
msgid "You do not have permissions to cancel all linked documents."
msgstr "没有权限取消所有关联的单据"
@@ -30614,7 +30851,7 @@ msgstr "您已成功注销"
msgid "You have hit the row size limit on database table: {0}"
msgstr "已达到数据库表{0}的行大小限制"
-#: frappe/public/js/frappe/list/bulk_operations.js:412
+#: frappe/public/js/frappe/list/bulk_operations.js:426
msgid "You have not entered a value. The field will be set to empty."
msgstr "未输入字段值,字段值将被设为空值"
@@ -30634,7 +30871,7 @@ msgstr "待查看{0}"
msgid "You haven't added any Dashboard Charts or Number Cards yet."
msgstr "尚未创建统计图表或数字卡"
-#: frappe/public/js/frappe/list/list_view.js:504
+#: frappe/public/js/frappe/list/list_view.js:507
msgid "You haven't created a {0} yet"
msgstr "暂无数据 {0}"
@@ -30643,7 +30880,6 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "请求过多触发速率限制,请稍后重试"
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:141
msgid "You last edited this"
msgstr "你最新修订了本单据"
@@ -30659,12 +30895,12 @@ msgstr "必须登录才能使用此表单"
msgid "You must login to submit this form"
msgstr "您必须登录才能提交此表单"
-#: frappe/model/document.py:391
+#: frappe/model/document.py:390
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "执行此操作需要{1} {2}的'{0}'权限"
#: frappe/desk/doctype/workspace/workspace.py:129
-#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:75
+#: frappe/desk/doctype/workspace_sidebar/workspace_sidebar.py:71
msgid "You need to be Workspace Manager to delete a public workspace."
msgstr "需为工作区管理员才能删除公共工作区"
@@ -30672,7 +30908,7 @@ msgstr "需为工作区管理员才能删除公共工作区"
msgid "You need to be Workspace Manager to edit this document"
msgstr "您需要是工作空间管理员才能编辑此文档"
-#: frappe/www/attribution.py:16
+#: frappe/www/attribution.py:15
msgid "You need to be a system user to access this page."
msgstr "您需要是系统用户才能访问此页面"
@@ -30704,7 +30940,7 @@ msgstr "您需要启用JavaScript才能使应用正常工作"
msgid "You need to have \"Share\" permission"
msgstr "你需要有“分享”权限"
-#: frappe/utils/print_format.py:271
+#: frappe/utils/print_format.py:313
msgid "You need to install pycups to use this feature!"
msgstr "您需要安装pycups才能使用此功能!"
@@ -30724,7 +30960,7 @@ msgstr "您需要{0} {1}的写入权限才能合并"
msgid "You need write permission on {0} {1} to rename"
msgstr "您需要{0} {1}的写入权限才能重命名"
-#: frappe/client.py:452
+#: frappe/client.py:501
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr "您需要{0}权限才能从{1} {2}获取值"
@@ -30771,7 +31007,7 @@ msgstr "您取消了对该单据的关注"
msgid "You viewed this"
msgstr "您查看了此内容"
-#: frappe/public/js/frappe/router.js:653
+#: frappe/public/js/frappe/router.js:658
msgid "You will be redirected to:"
msgstr "您将被重定向至:"
@@ -30848,7 +31084,7 @@ msgstr "您的电子邮件地址"
msgid "Your exported report: {0}"
msgstr "您导出的报告:{0}"
-#: frappe/public/js/frappe/web_form/web_form.js:452
+#: frappe/public/js/frappe/web_form/web_form.js:448
msgid "Your form has been successfully updated"
msgstr "您的表单已成功更新"
@@ -30890,7 +31126,7 @@ msgstr "您的报告正在后台生成。报告准备就绪后,您将在{0}收
msgid "Your session has expired, please login again to continue."
msgstr "您的会话已过期,请再次登录以继续。"
-#: frappe/public/js/frappe/ui/toolbar/navbar.html:17
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:7
msgid "Your site is undergoing maintenance or being updated."
msgstr "站点正在维护或更新中"
@@ -30912,7 +31148,7 @@ msgstr "零表示资料更新后立即发送"
msgid "[Action taken by {0}]"
msgstr "[操作由{0}执行]"
-#: frappe/database/database.py:361
+#: frappe/database/database.py:367
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
msgstr "`as_iterator`仅在使用`as_list=True`或`as_dict=True`时有效"
@@ -30931,7 +31167,7 @@ msgstr "新增"
msgid "amend"
msgstr "修订"
-#: frappe/public/js/frappe/utils/utils.js:394 frappe/utils/data.py:1563
+#: frappe/public/js/frappe/utils/utils.js:396 frappe/utils/data.py:1563
msgid "and"
msgstr "和"
@@ -30954,7 +31190,7 @@ msgstr "角色"
msgid "cProfile Output"
msgstr "cProfile输出"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:323
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:297
msgid "calendar"
msgstr "日历"
@@ -30970,7 +31206,9 @@ msgid "canceled"
msgstr "取消"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "chrome"
msgstr "Chrome浏览器"
@@ -30994,7 +31232,7 @@ msgid "cyan"
msgstr "青色"
#: frappe/public/js/frappe/form/controls/duration.js:219
-#: frappe/public/js/frappe/utils/utils.js:1163
+#: frappe/public/js/frappe/utils/utils.js:1192
msgctxt "Days (Field: Duration)"
msgid "d"
msgstr "天"
@@ -31052,7 +31290,7 @@ msgstr "删除"
msgid "descending"
msgstr "降序"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:225
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:232
msgid "document type..., e.g. customer"
msgstr "单据类型...,如客户"
@@ -31062,7 +31300,7 @@ msgstr "单据类型...,如客户"
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
msgstr "例如“支持“,”销售“,”杨杰“"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:250
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:257
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
msgstr "例如:(55 + 434)/ 4 =或Math.sin(Math.PI / 2)..."
@@ -31104,12 +31342,16 @@ msgstr "Emacs编辑器"
msgid "email"
msgstr "电子邮件"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:344
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:318
msgid "email inbox"
msgstr "电子邮件收件箱"
-#: frappe/permissions.py:431 frappe/permissions.py:442
-#: frappe/public/js/frappe/form/controls/link.js:585
+#: frappe/permissions.py:437 frappe/permissions.py:448
+msgid "empty"
+msgstr "空"
+
+#: frappe/public/js/frappe/form/controls/link.js:594
+msgctxt "Comparison value is empty"
msgid "empty"
msgstr "空"
@@ -31165,12 +31407,12 @@ msgid "gzip not found in PATH! This is required to take a backup."
msgstr "在PATH中找不到gzip!这是进行备份的必要条件"
#: frappe/public/js/frappe/form/controls/duration.js:220
-#: frappe/public/js/frappe/utils/utils.js:1167
+#: frappe/public/js/frappe/utils/utils.js:1196
msgctxt "Hours (Field: Duration)"
msgid "h"
msgstr "小时"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:334
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
msgid "hub"
msgstr "集市(Hub)网站"
@@ -31185,6 +31427,20 @@ msgstr "图标"
msgid "import"
msgstr "导入"
+#: frappe/public/js/frappe/form/controls/link.js:631
+#: frappe/public/js/frappe/form/controls/link.js:636
+#: frappe/public/js/frappe/form/controls/link.js:649
+#: frappe/public/js/frappe/form/controls/link.js:656
+msgid "is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:630
+#: frappe/public/js/frappe/form/controls/link.js:637
+#: frappe/public/js/frappe/form/controls/link.js:650
+#: frappe/public/js/frappe/form/controls/link.js:655
+msgid "is enabled"
+msgstr ""
+
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr "jane@example.com"
@@ -31224,16 +31480,11 @@ msgid "long"
msgstr "长整型"
#: frappe/public/js/frappe/form/controls/duration.js:221
-#: frappe/public/js/frappe/utils/utils.js:1171
+#: frappe/public/js/frappe/utils/utils.js:1200
msgctxt "Minutes (Field: Duration)"
msgid "m"
msgstr "月"
-#. Option for the 'Navbar Style' (Select) field in DocType 'Desktop Settings'
-#: frappe/desk/doctype/desktop_settings/desktop_settings.json
-msgid "macOS Launchpad"
-msgstr ""
-
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
msgstr "{0}合并为{1}"
@@ -31252,15 +31503,15 @@ msgstr "月-日-年"
msgid "mm/dd/yyyy"
msgstr "月/日/年"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:240
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:247
msgid "module name..."
msgstr "模块名称..."
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:171
msgid "new"
msgstr "新建"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:220
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:227
msgid "new type of document"
msgstr "单据新类型"
@@ -31322,7 +31573,7 @@ msgstr "变更"
msgid "on_update_after_submit"
msgstr "提交后变更"
-#: frappe/public/js/frappe/utils/utils.js:391 frappe/www/login.html:90
+#: frappe/public/js/frappe/utils/utils.js:393 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
msgstr "或"
@@ -31395,7 +31646,7 @@ msgid "restored {0} as {1}"
msgstr "恢复{0}为{1}"
#: frappe/public/js/frappe/form/controls/duration.js:222
-#: frappe/public/js/frappe/utils/utils.js:1175
+#: frappe/public/js/frappe/utils/utils.js:1204
msgctxt "Seconds (Field: Duration)"
msgid "s"
msgstr "秒"
@@ -31479,11 +31730,11 @@ msgstr "字符串值,例如{0}或uid={0},ou=users,dc=example,dc=com"
msgid "submit"
msgstr "提交"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:235
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:242
msgid "tag name..., e.g. #tag"
msgstr "标签名称...,例如#标签"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:230
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:237
msgid "text in document type"
msgstr "文件类型的文本"
@@ -31581,11 +31832,13 @@ msgid "when clicked on element it will focus popover if present."
msgstr "点击元素时如果存在弹出框将获得焦点"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "wkhtmltopdf"
msgstr "wkhtmltopdf工具"
-#: frappe/printing/page/print/print.js:681
+#: frappe/printing/page/print/print.js:689
msgid "wkhtmltopdf 0.12.x (with patched qt)."
msgstr "wkhtmltopdf 0.12.x(带补丁的qt)"
@@ -31621,11 +31874,11 @@ msgstr "年-月-日"
msgid "{0}"
msgstr "{0}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:204
msgid "{0} ${skip_list ? \"\" : type}"
msgstr "{0} ${skip_list ? \"\" : 类型}"
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:229
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:209
msgid "{0} ${type}"
msgstr "{0} ${type}"
@@ -31642,8 +31895,8 @@ msgstr "{0}({1})(至少1行)"
msgid "{0} ({1}) - {2}%"
msgstr "{0}({1})- {2}%"
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:446
-#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:450
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:448
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:452
msgid "{0} = {1}"
msgstr "{0} = {1}"
@@ -31656,13 +31909,13 @@ msgid "{0} Chart"
msgstr "{0}图表"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:391
-#: frappe/public/js/frappe/ui/toolbar/search_utils.js:392
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:361
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:362
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
msgstr "{0}数据面板"
-#: frappe/public/js/frappe/form/grid_row.js:486
+#: frappe/public/js/frappe/form/grid_row.js:488
#: frappe/public/js/frappe/list/list_settings.js:225
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
@@ -31696,11 +31949,11 @@ msgstr "{0} 月"
msgid "{0} Map"
msgstr "{0}地图"
-#: frappe/public/js/frappe/form/quick_entry.js:122
+#: frappe/public/js/frappe/form/quick_entry.js:134
msgid "{0} Name"
msgstr "{0}单据编号(名称)"
-#: frappe/model/base_document.py:1259
+#: frappe/model/base_document.py:1276
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} 提交后不允许将 {1} 从 {2} 修改为 {3}"
@@ -31708,7 +31961,7 @@ msgstr "{0} 提交后不允许将 {1} 从 {2} 修改为 {3}"
msgid "{0} Report"
msgstr "{0}报表"
-#: frappe/public/js/frappe/views/reports/query_report.js:967
+#: frappe/public/js/frappe/views/reports/query_report.js:979
msgid "{0} Reports"
msgstr "{0}报告"
@@ -31721,11 +31974,11 @@ msgid "{0} Tree"
msgstr "{0} 树"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:130
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:152
msgid "{0} Web page views"
msgstr "{0}次网页浏览"
-#: frappe/public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/form/link_selector.js:234
msgid "{0} added"
msgstr "{0} 成功添加"
@@ -31787,7 +32040,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0}于{1}取消了此文档"
-#: frappe/model/document.py:583
+#: frappe/model/document.py:582
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0}未被取消,无法修订。请在创建修订前取消该文档"
@@ -31816,16 +32069,19 @@ msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr "{0}将{1}更改为{2}"
-#: frappe/core/doctype/doctype/doctype.py:1620
+#: frappe/core/doctype/doctype/doctype.py:1634
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
msgstr "{0}包含无效的Fetch From表达式,不能自我引用"
+#: frappe/public/js/frappe/form/controls/link.js:669
+msgid "{0} contains {1}"
+msgstr ""
+
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
msgstr "{0}已成功创建"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:153
msgid "{0} created this"
msgstr "{0} 创建了本单据"
@@ -31842,11 +32098,19 @@ msgstr "{0} 天"
msgid "{0} days ago"
msgstr "{0}天前"
+#: frappe/public/js/frappe/form/controls/link.js:671
+msgid "{0} does not contain {1}"
+msgstr ""
+
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
msgstr "{0}不存在于第{1}行中"
+#: frappe/public/js/frappe/form/controls/link.js:644
+msgid "{0} equals {1}"
+msgstr ""
+
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:187
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0}字段不能在{1}中设置为唯一,因为这里存在非唯一的数值"
@@ -31871,7 +32135,7 @@ msgstr "{0}小时"
msgid "{0} has already assigned default value for {1}."
msgstr "{0}已为{1}分派了默认值。"
-#: frappe/database/query.py:1158
+#: frappe/database/query.py:1202
msgid "{0} has invalid backtick notation: {1}"
msgstr ""
@@ -31892,7 +32156,11 @@ msgstr "如果{1}秒内未自动跳转,请点击{0}"
msgid "{0} in row {1} cannot have both URL and child items"
msgstr "行{1}中的{0}不能同时有URL和子项"
-#: frappe/core/doctype/doctype/doctype.py:949
+#: frappe/public/js/frappe/form/controls/link.js:710
+msgid "{0} is a descendant of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:952
msgid "{0} is a mandatory field"
msgstr "{0}是必填字段"
@@ -31900,7 +32168,15 @@ msgstr "{0}是必填字段"
msgid "{0} is a not a valid zip file"
msgstr "{0}不是有效的zip文件"
-#: frappe/core/doctype/doctype/doctype.py:1633
+#: frappe/public/js/frappe/form/controls/link.js:674
+msgid "{0} is after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:712
+msgid "{0} is an ancestor of {1}"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "{0} is an invalid Data field."
msgstr "{0}是无效的数据字段"
@@ -31908,6 +32184,15 @@ msgstr "{0}是无效的数据字段"
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0}是“收件人”中的无效电子邮件地址"
+#: frappe/public/js/frappe/form/controls/link.js:679
+msgid "{0} is before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:708
+msgid "{0} is between {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:705
#: frappe/public/js/frappe/views/reports/report_view.js:1464
msgid "{0} is between {1} and {2}"
msgstr "{0}介于{1}和{2}之间"
@@ -31917,22 +32202,36 @@ msgstr "{0}介于{1}和{2}之间"
msgid "{0} is currently {1}"
msgstr "{0}当前状态为{1}"
+#: frappe/public/js/frappe/form/controls/link.js:642
+#: frappe/public/js/frappe/form/controls/link.js:660
+msgid "{0} is disabled"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:641
+#: frappe/public/js/frappe/form/controls/link.js:661
+msgid "{0} is enabled"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:1433
msgid "{0} is equal to {1}"
msgstr "{0}等于{1}"
+#: frappe/public/js/frappe/form/controls/link.js:686
#: frappe/public/js/frappe/views/reports/report_view.js:1453
msgid "{0} is greater than or equal to {1}"
msgstr "{0}大于或等于{1}"
+#: frappe/public/js/frappe/form/controls/link.js:676
#: frappe/public/js/frappe/views/reports/report_view.js:1443
msgid "{0} is greater than {1}"
msgstr "{0}大于{1}"
+#: frappe/public/js/frappe/form/controls/link.js:691
#: frappe/public/js/frappe/views/reports/report_view.js:1458
msgid "{0} is less than or equal to {1}"
msgstr "{0}小于或等于{1}"
+#: frappe/public/js/frappe/form/controls/link.js:681
#: frappe/public/js/frappe/views/reports/report_view.js:1448
msgid "{0} is less than {1}"
msgstr "{0}小于{1}"
@@ -31945,10 +32244,14 @@ msgstr "{0}类似于{1}"
msgid "{0} is mandatory"
msgstr "{0}是必填项"
-#: frappe/database/query.py:826
+#: frappe/database/query.py:860
msgid "{0} is not a child table of {1}"
msgstr "{0}不是{1}的子表"
+#: frappe/public/js/frappe/form/controls/link.js:714
+msgid "{0} is not a descendant 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}的字段"
@@ -31965,12 +32268,12 @@ msgstr "{0}不是有效的日历,正在重定向到默认日历"
msgid "{0} is not a valid Cron expression."
msgstr "{0}不是有效的Cron表达式"
-#: frappe/public/js/frappe/form/controls/dynamic_link.js:23
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:25
msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0}不是有效的动态链接文档类型"
#: frappe/email/doctype/email_group/email_group.py:140
-#: frappe/utils/__init__.py:198 frappe/utils/__init__.py:213
+#: frappe/utils/__init__.py:189 frappe/utils/__init__.py:204
msgid "{0} is not a valid Email Address"
msgstr "{0} 不是有效的邮箱地址"
@@ -31978,23 +32281,23 @@ msgstr "{0} 不是有效的邮箱地址"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0}不是有效的ISO 3166 ALPHA-2代码"
-#: frappe/utils/__init__.py:176
+#: frappe/utils/__init__.py:167
msgid "{0} is not a valid Name"
msgstr "{0}不是有效的名称"
-#: frappe/utils/__init__.py:155
+#: frappe/utils/__init__.py:146
msgid "{0} is not a valid Phone Number"
msgstr "{0}不是有效的电话号码"
-#: frappe/model/workflow.py:245
+#: frappe/model/workflow.py:266
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0}不是有效的工作流状态。请更新您的工作流,然后重试。"
-#: frappe/permissions.py:824
+#: frappe/permissions.py:830
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0}不是{1}的有效父文档类型"
-#: frappe/permissions.py:844
+#: frappe/permissions.py:850
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0}不是{1}的有效父字段"
@@ -32010,6 +32313,11 @@ msgstr "{0}不是zip文件"
msgid "{0} is not an allowed role for {1}"
msgstr "{0}不是{1}的允许角色"
+#: frappe/public/js/frappe/form/controls/link.js:716
+msgid "{0} is not an ancestor of {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:663
#: frappe/public/js/frappe/views/reports/report_view.js:1438
msgid "{0} is not equal to {1}"
msgstr "{0}不等于{1}"
@@ -32018,10 +32326,12 @@ msgstr "{0}不等于{1}"
msgid "{0} is not like {1}"
msgstr "{0}与{1}不相似"
+#: frappe/public/js/frappe/form/controls/link.js:667
#: frappe/public/js/frappe/views/reports/report_view.js:1479
msgid "{0} is not one of {1}"
msgstr "{0}不属于{1}"
+#: frappe/public/js/frappe/form/controls/link.js:697
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not set"
msgstr "{0}未设置"
@@ -32030,36 +32340,50 @@ msgstr "{0}未设置"
msgid "{0} is now default print format for {1} doctype"
msgstr "{0}现在是{1}类型的默认打印格式"
+#: frappe/public/js/frappe/form/controls/link.js:684
+msgid "{0} is on or after {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:689
+msgid "{0} is on or before {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/link.js:665
#: frappe/public/js/frappe/views/reports/report_view.js:1472
msgid "{0} is one of {1}"
msgstr "{0}属于{1}"
#: frappe/email/doctype/email_account/email_account.py:304
-#: frappe/model/naming.py:226
+#: frappe/model/naming.py:224
#: frappe/printing/doctype/print_format/print_format.py:101
#: frappe/printing/doctype/print_format/print_format.py:104
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
msgstr "{0}是必填项"
+#: frappe/public/js/frappe/form/controls/link.js:694
#: frappe/public/js/frappe/views/reports/report_view.js:1488
msgid "{0} is set"
msgstr "{0}已设置"
+#: frappe/public/js/frappe/form/controls/link.js:718
#: frappe/public/js/frappe/views/reports/report_view.js:1467
msgid "{0} is within {1}"
msgstr "{0}在{1}范围内"
-#: frappe/public/js/frappe/list/list_view.js:1844
+#: frappe/public/js/frappe/form/controls/link.js:699
+msgid "{0} is {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1852
msgid "{0} items selected"
msgstr "已选{0}条记录"
-#: frappe/core/doctype/user/user.py:1458
+#: frappe/core/doctype/user/user.py:1461
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} 因为 {1} 原因以你的帐号登录了系统"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:142
msgid "{0} last edited this"
msgstr "{0} 最新修订了本单据"
@@ -32087,35 +32411,35 @@ msgstr "{0}分钟前"
msgid "{0} months ago"
msgstr "{0}个月前"
-#: frappe/model/document.py:1861
+#: frappe/model/document.py:1860
msgid "{0} must be after {1}"
msgstr "{0}必须在{1}之后"
-#: frappe/model/document.py:1613
+#: frappe/model/document.py:1612
msgid "{0} must be beginning with '{1}'"
msgstr "{0}必须以'{1}'开头"
-#: frappe/model/document.py:1615
+#: frappe/model/document.py:1614
msgid "{0} must be equal to '{1}'"
msgstr "{0}必须等于'{1}'"
-#: frappe/model/document.py:1611
+#: frappe/model/document.py:1610
msgid "{0} must be none of {1}"
msgstr "{0}不能是{1}中的任何一项"
-#: frappe/model/document.py:1609 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1608 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0}必须属于{1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:994
msgid "{0} must be set first"
msgstr "{0}必须首先设置"
-#: frappe/model/base_document.py:830
+#: frappe/model/base_document.py:849
msgid "{0} must be unique"
msgstr "{0}必须是唯一的"
-#: frappe/model/document.py:1617
+#: frappe/model/document.py:1616
msgid "{0} must be {1} {2}"
msgstr "{0}必须为{1}{2}"
@@ -32132,11 +32456,11 @@ msgid "{0} not allowed to be renamed"
msgstr "{0}不允许改名"
#: frappe/core/doctype/report/report.py:432
-#: frappe/public/js/frappe/list/list_view.js:1221
+#: frappe/public/js/frappe/list/list_view.js:1229
msgid "{0} of {1}"
msgstr "第{0}项 / 共{1}项"
-#: frappe/public/js/frappe/list/list_view.js:1223
+#: frappe/public/js/frappe/list/list_view.js:1231
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} / {1} ({2} 行有子记录)"
@@ -32165,7 +32489,7 @@ msgstr "{0}条记录将保留{1}天"
msgid "{0} records deleted"
msgstr "已删除{0}条记录"
-#: frappe/public/js/frappe/data_import/data_exporter.js:229
+#: frappe/public/js/frappe/data_import/data_exporter.js:230
msgid "{0} records will be exported"
msgstr "将导出 {0} 笔记录"
@@ -32190,7 +32514,7 @@ msgstr "{0}从{2}移除了{1}行"
msgid "{0} role does not have permission on any doctype"
msgstr "角色 {0} 无单据类型权限"
-#: frappe/model/document.py:1852
+#: frappe/model/document.py:1851
msgid "{0} row #{1}:"
msgstr "{0}第{1}行:"
@@ -32204,7 +32528,7 @@ msgctxt "User added rows to child table"
msgid "{0} rows to {1}"
msgstr "{0}行至{1}"
-#: frappe/desk/query_report.py:701
+#: frappe/desk/query_report.py:700
msgid "{0} saved successfully"
msgstr "{0}已成功保存"
@@ -32212,7 +32536,7 @@ msgstr "{0}已成功保存"
msgid "{0} self assigned this task: {1}"
msgstr "{0}分派了待办给自己:{1}"
-#: frappe/share.py:229
+#: frappe/share.py:262
msgid "{0} shared a document {1} {2} with you"
msgstr "{0}分享了单据{1} {2}给你"
@@ -32280,7 +32604,7 @@ msgstr "{0} 周"
msgid "{0} weeks ago"
msgstr "{0}周前"
-#: frappe/core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:379
msgid "{0} with the role {1}"
msgstr ""
@@ -32292,7 +32616,7 @@ msgstr "{0}年前"
msgid "{0} years ago"
msgstr "{0}年前"
-#: frappe/public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:228
msgid "{0} {1} added"
msgstr "已添加{0} {1}"
@@ -32300,11 +32624,11 @@ msgstr "已添加{0} {1}"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0}{1}已添加到仪表盘{2}"
-#: frappe/model/base_document.py:763 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:768 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1}已经存在"
-#: frappe/model/base_document.py:1088
+#: frappe/model/base_document.py:1105
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1}不能为“{2}”。只能是“{3}”其中一个"
@@ -32316,11 +32640,11 @@ msgstr "{0} {1}不能是一个叶节点,因为它有下级"
msgid "{0} {1} does not exist, select a new target to merge"
msgstr "{0} {1}不存在,选择一个新的目标合并"
-#: frappe/public/js/frappe/form/form.js:954
+#: frappe/public/js/frappe/form/form.js:983
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} 关联了下列已提交单据: {2}"
-#: frappe/model/document.py:278 frappe/permissions.py:586
+#: frappe/model/document.py:277 frappe/permissions.py:592
msgid "{0} {1} not found"
msgstr "{0} {1}未找到"
@@ -32328,87 +32652,59 @@ msgstr "{0} {1}未找到"
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: 已提交单据不可被删除. 应 {2} 先取消 {3}."
-#: frappe/model/base_document.py:1220
+#: frappe/model/base_document.py:1237
msgid "{0}, Row {1}"
msgstr "{0},第{1}行"
-#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+#: frappe/utils/print_format.py:149 frappe/utils/print_format.py:193
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "已完成{0}/{1} | 请保持此标签页开启直至完成"
-#: frappe/model/base_document.py:1225
+#: frappe/model/base_document.py:1242
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}:“{1}”({3})将被截断,因最大允许字符数为{2}"
-#: frappe/core/doctype/doctype/doctype.py:1835
-msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0} :没有“取消”的情况下不能设置“修订”"
-
-#: frappe/core/doctype/doctype/doctype.py:1853
-msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0} :没有“提交”的情况下不能分派“修订”"
-
-#: frappe/core/doctype/doctype/doctype.py:1851
-msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0} :没有“提交”的情况下不能分派“提交”"
-
-#: frappe/core/doctype/doctype/doctype.py:1830
-msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0} :没有“提交”的情况下不能分派“取消”"
-
-#: frappe/core/doctype/doctype/doctype.py:1837
-msgid "{0}: Cannot set Import without Create"
-msgstr "{0} :没有“创建”的情况下不能分派“导入”"
-
-#: frappe/core/doctype/doctype/doctype.py:1833
-msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0} :没有写入的情况下不能设置“提交”,“取消”,“修订”"
-
-#: frappe/core/doctype/doctype/doctype.py:1857
-msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0} :{1}无法导入所以不能设置“导入”"
-
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
msgstr "{0}:附加新周期性文档失败。需在打印设置中启用{1}以在自动重复通知邮件中附加文档"
-#: frappe/core/doctype/doctype/doctype.py:1441
+#: frappe/core/doctype/doctype/doctype.py:1455
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
msgstr "{0}:字段“{1}”无法设置为“唯一”,因为它具有非唯一值"
-#: frappe/core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1363
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
msgstr "{0}:行{2}中的字段{1}无法隐藏,并且在没有默认情况下是必需的"
-#: frappe/core/doctype/doctype/doctype.py:1308
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Field {1} of type {2} cannot be mandatory"
msgstr "{0}:类型{2}的字段{1}不能是必需的"
-#: frappe/core/doctype/doctype/doctype.py:1296
+#: frappe/core/doctype/doctype/doctype.py:1310
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
msgstr "{0}:字段名{1}在行{2}中多次出现"
-#: frappe/core/doctype/doctype/doctype.py:1428
+#: frappe/core/doctype/doctype/doctype.py:1442
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
msgstr "{0}:{2}的字段类型{1}不能是唯一的"
-#: frappe/core/doctype/doctype/doctype.py:1790
+#: frappe/core/doctype/doctype/doctype.py:1804
msgid "{0}: No basic permissions set"
msgstr "{0} :基本权限未设置"
-#: frappe/core/doctype/doctype/doctype.py:1804
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
msgstr "{0}:具有相同的角色,级别和允许只有一个规则{1}"
-#: frappe/core/doctype/doctype/doctype.py:1330
+#: frappe/core/doctype/doctype/doctype.py:1344
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
msgstr "{0}:选项必须是行{2}中字段{1}的有效DocType"
-#: frappe/core/doctype/doctype/doctype.py:1319
+#: frappe/core/doctype/doctype/doctype.py:1333
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
msgstr "{0}:请为第{2}行中的链接或表类型字段{1}维护选项信息"
-#: frappe/core/doctype/doctype/doctype.py:1337
+#: frappe/core/doctype/doctype/doctype.py:1351
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
msgstr "{0}:选项{1}必须与字段{3}的单据类型名称{2}相同"
@@ -32416,15 +32712,59 @@ msgstr "{0}:选项{1}必须与字段{3}的单据类型名称{2}相同"
msgid "{0}: Other permission rules may also apply"
msgstr "{0}:其它权限也可能适用"
-#: frappe/core/doctype/doctype/doctype.py:1819
+#: frappe/core/doctype/doctype/doctype.py:1833
msgid "{0}: Permission at level 0 must be set before higher levels are set"
msgstr "{0} :更高级别的权限设置前请先设置0级权限"
+#: frappe/core/doctype/doctype/doctype.py:1910
+msgid "{0}: The 'Amend' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1858
+msgid "{0}: The 'Amend' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1845
+msgid "{0}: The 'Cancel' permission cannot be granted without the 'Submit' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1892
+msgid "{0}: The 'Export' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1918
+msgid "{0}: The 'Import' permission cannot be granted for a non-importable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1864
+msgid "{0}: The 'Import' permission cannot be granted without the 'Create' permission."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1884
+msgid "{0}: The 'Import' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1876
+msgid "{0}: The 'Report' permission was removed because it cannot be granted for a 'single' DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1903
+msgid "{0}: The 'Submit' permission cannot be granted for a non-submittable DocType."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1852
+msgid "{0}: The 'Submit', 'Cancel', and 'Amend' permissions cannot be granted without the 'Write' permission."
+msgstr ""
+
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr "{0}:可通过{1}按需调整字段限制"
-#: frappe/core/doctype/doctype/doctype.py:1283
+#: frappe/core/doctype/doctype/doctype.py:1297
+msgid "{0}: fieldname cannot be set to reserved field {1} in DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1288
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr "{0}:字段名不能设为保留关键字{1}"
@@ -32437,15 +32777,15 @@ msgstr "{0}:{1}"
msgid "{0}: {1} is set to state {2}"
msgstr "{0}:{1} 状态已变更为 {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1313
+#: frappe/public/js/frappe/views/reports/query_report.js:1325
msgid "{0}: {1} vs {2}"
msgstr "{0}:{1}与{2}"
-#: frappe/core/doctype/doctype/doctype.py:1449
+#: frappe/core/doctype/doctype/doctype.py:1463
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
msgstr "{0}:无法为{2}的字段类型{1}生成索引"
-#: frappe/public/js/frappe/form/quick_entry.js:195
+#: frappe/public/js/frappe/form/quick_entry.js:203
msgid "{1} saved"
msgstr "{1}已保存"
@@ -32465,11 +32805,11 @@ msgstr "已选择{count}行"
msgid "{count} rows selected"
msgstr "已选择{count}行"
-#: frappe/core/doctype/doctype/doctype.py:1503
+#: frappe/core/doctype/doctype/doctype.py:1517
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
msgstr "{{{0}}}是不是一个有效的字段名模式。它应该是{{FIELD_NAME}}。"
-#: frappe/public/js/frappe/form/form.js:524
+#: frappe/public/js/frappe/form/form.js:525
msgid "{} Complete"
msgstr "已完成{}"
diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py
index 8ce1639e51..6c88dfefd6 100644
--- a/frappe/model/base_document.py
+++ b/frappe/model/base_document.py
@@ -1404,7 +1404,10 @@ class BaseDocument:
):
currency = frappe.db.get_value("Currency", currency_value, cache=True)
- val = self.get(fieldname)
+ if fieldname and (prop := getattr(type(self), fieldname, None)) and is_a_property(prop):
+ val = getattr(self, fieldname)
+ else:
+ val = self.get(fieldname)
if translated:
val = _(val)
diff --git a/frappe/model/mapper.py b/frappe/model/mapper.py
index a9a256df9a..3e436cfb61 100644
--- a/frappe/model/mapper.py
+++ b/frappe/model/mapper.py
@@ -240,9 +240,6 @@ def map_fetch_fields(target_doc, df, no_copy_fields):
# options should be like "link_fieldname.fieldname_in_liked_doc"
for fetch_df in target_doc.meta.get("fields", {"fetch_from": f"^{df.fieldname}."}):
- if not (fetch_df.fieldtype == "Read Only" or fetch_df.read_only):
- continue
-
if (
not target_doc.get(fetch_df.fieldname) or fetch_df.fieldtype == "Read Only"
) and fetch_df.fieldname not in no_copy_fields:
diff --git a/frappe/model/naming.py b/frappe/model/naming.py
index c7caefd9d3..1da27e577c 100644
--- a/frappe/model/naming.py
+++ b/frappe/model/naming.py
@@ -6,10 +6,8 @@ import datetime
import re
import time
from collections.abc import Callable
-from typing import TYPE_CHECKING, Optional
-from uuid import UUID
-
-import uuid_utils
+from typing import TYPE_CHECKING
+from uuid import UUID, uuid7
import frappe
from frappe import _
@@ -166,8 +164,8 @@ def set_new_name(doc):
if meta.autoname == "UUID":
if not doc.name:
- doc.name = str(uuid_utils.uuid7())
- elif isinstance(doc.name, UUID | uuid_utils.UUID):
+ doc.name = str(uuid7())
+ elif isinstance(doc.name, UUID):
doc.name = str(doc.name)
elif isinstance(doc.name, str): # validate
try:
diff --git a/frappe/model/sync.py b/frappe/model/sync.py
index 73cf16a616..8054082249 100644
--- a/frappe/model/sync.py
+++ b/frappe/model/sync.py
@@ -201,13 +201,14 @@ def remove_orphan_doctypes():
def remove_orphan_entities():
entites = ["Workspace", "Dashboard", "Page", "Report"]
- app_level_entities = ["Workspace Sidebar"]
+ app_level_entities = ["Workspace Sidebar", "Desktop Icon"]
entity_filter_map = {
"Workspace": {"public": 1},
"Page": {"standard": "Yes"},
"Report": {"is_standard": "Yes"},
"Dashboard": {"is_standard": True},
"Workspace Sidebar": {"standard": True},
+ "Desktop Icon": {"standard": True},
}
entity_file_map = create_entity_file_map(entites)
diff --git a/frappe/model/utils/user_settings.py b/frappe/model/utils/user_settings.py
index 68766a8d05..6a689b495e 100644
--- a/frappe/model/utils/user_settings.py
+++ b/frappe/model/utils/user_settings.py
@@ -40,7 +40,6 @@ def update_user_settings(doctype, user_settings, for_update=False):
current = {}
current.update(user_settings)
-
frappe.cache.hset("_user_settings", f"{doctype}::{frappe.session.user}", json.dumps(current))
diff --git a/frappe/oauth.py b/frappe/oauth.py
index 2cbeb9a362..098e17a009 100644
--- a/frappe/oauth.py
+++ b/frappe/oauth.py
@@ -5,7 +5,6 @@ import re
from http import cookies
from urllib.parse import unquote, urljoin, urlparse
-import jwt
from oauthlib.openid import RequestValidator
import frappe
@@ -302,6 +301,8 @@ class OAuthWebRequestValidator(RequestValidator):
# OpenID Connect
def finalize_id_token(self, id_token, token, token_handler, request):
+ import jwt
+
# Check whether frappe server URL is set
id_token_header = {"typ": "jwt", "alg": "HS256"}
@@ -437,6 +438,8 @@ class OAuthWebRequestValidator(RequestValidator):
- OpenIDConnectImplicit
- OpenIDConnectHybrid
"""
+ import jwt
+
if id_token_hint:
try:
user = None
diff --git a/frappe/patches.txt b/frappe/patches.txt
index 8e3157f7f9..5d32252e25 100644
--- a/frappe/patches.txt
+++ b/frappe/patches.txt
@@ -239,7 +239,6 @@ frappe.patches.v15_0.migrate_session_data
frappe.custom.doctype.property_setter.patches.remove_invalid_fetch_from_expressions
frappe.patches.v16_0.switch_default_sort_order
frappe.integrations.doctype.oauth_client.patches.set_default_allowed_role_in_oauth_client
-execute:frappe.db.set_single_value("Workspace Settings", "workspace_setup_completed", 1)
frappe.patches.v16_0.add_app_launcher_in_navbar_settings
frappe.desk.doctype.workspace.patches.update_app
frappe.patches.v16_0.move_role_desk_settings_to_user
@@ -256,3 +255,4 @@ frappe.patches.v16_0.change_link_type_to_workspace_sidebar
frappe.patches.v16_0.add_standard_field_in_workspace_sidebar
execute:frappe.db.set_single_value("Desktop Settings", "icon_style", "Solid")
execute:frappe.delete_doc_if_exists("Workspace Sidebar", "Productivity")
+frappe.patches.v16_0.unset_standard_field_for_auto_generated_icons
diff --git a/frappe/patches/v16_0/unset_standard_field_for_auto_generated_icons.py b/frappe/patches/v16_0/unset_standard_field_for_auto_generated_icons.py
new file mode 100644
index 0000000000..e12f34cf7c
--- /dev/null
+++ b/frappe/patches/v16_0/unset_standard_field_for_auto_generated_icons.py
@@ -0,0 +1,18 @@
+import frappe
+from frappe.model.sync import check_if_record_exists
+
+
+def execute():
+ for icon in frappe.get_all("Desktop Icon"):
+ icon_doc = frappe.get_doc("Desktop Icon", icon.name)
+ if (icon_doc.standard and icon_doc.app) and not check_if_record_exists(
+ "app",
+ frappe.get_app_path(icon_doc.app),
+ "Desktop Icon",
+ icon_doc.name,
+ ):
+ try:
+ icon_doc.standard = 0
+ icon_doc.save()
+ except Exception as e:
+ print("Error in unsetting standard field", e)
diff --git a/frappe/printing/page/print_format_builder/print_format_builder.js b/frappe/printing/page/print_format_builder/print_format_builder.js
index 51f33c0706..bae82ba040 100644
--- a/frappe/printing/page/print_format_builder/print_format_builder.js
+++ b/frappe/printing/page/print_format_builder/print_format_builder.js
@@ -704,6 +704,40 @@ frappe.PrintFormatBuilder = class PrintFormatBuilder {
update_column_count_message();
});
+ // Toggle all checkboxes in column selector
+ const toggle_all_checkboxes = function (should_check, should_clear_value) {
+ // Scope to column selector list checkboxes only
+ $body
+ .find(".column-selector-list input[type='checkbox'][data-fieldname]")
+ .each(function () {
+ const $checkbox = $(this);
+ const is_checked = $checkbox.prop("checked");
+
+ // Only process checkboxes that need to be changed
+ if ((should_check && !is_checked) || (!should_check && is_checked)) {
+ $checkbox.prop("checked", should_check);
+ const fieldname = $checkbox.attr("data-fieldname");
+ const input = get_width_input(fieldname);
+ input.prop("disabled", !should_check);
+
+ if (should_clear_value) {
+ input.val("");
+ }
+ }
+ });
+ update_column_count_message();
+ };
+
+ // Select All functionality
+ $body.on("click", ".select-all-btn", function () {
+ toggle_all_checkboxes(true, false);
+ });
+
+ // Unselect All functionality
+ $body.on("click", ".unselect-all-btn", function () {
+ toggle_all_checkboxes(false, true);
+ });
+
d.show();
return false;
diff --git a/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html b/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html
index adc87fff22..5bf8764c26 100644
--- a/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html
+++ b/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html
@@ -3,6 +3,12 @@
+
+
+
+
+
+
{{ __("Column") }}
{{ __("Width") }}
diff --git a/frappe/public/js/form_builder/components/controls/CheckControl.vue b/frappe/public/js/form_builder/components/controls/CheckControl.vue
index f19b3b6b79..127c36bcac 100644
--- a/frappe/public/js/form_builder/components/controls/CheckControl.vue
+++ b/frappe/public/js/form_builder/components/controls/CheckControl.vue
@@ -47,6 +47,11 @@ input {
cursor: pointer;
}
+label {
+ display: flex;
+ align-items: center;
+}
+
label .checkbox {
display: flex;
align-items: center;
diff --git a/frappe/public/js/frappe/file_uploader/FileUploader.vue b/frappe/public/js/frappe/file_uploader/FileUploader.vue
index 709e081d66..2420cc1bf5 100644
--- a/frappe/public/js/frappe/file_uploader/FileUploader.vue
+++ b/frappe/public/js/frappe/file_uploader/FileUploader.vue
@@ -636,10 +636,13 @@ function upload_file(file, i) {
: __("File upload failed.");
} else {
file.failed = true;
+ let detail =
+ xhr.statusText ||
+ __("Server error during upload. The file might be corrupted.");
file.error_message =
xhr.status === 0
? __("XMLHttpRequest Error")
- : `${xhr.status} : ${xhr.statusText}`;
+ : `${xhr.status} : ${detail}`;
let error = null;
try {
diff --git a/frappe/public/js/frappe/form/controls/base_input.js b/frappe/public/js/frappe/form/controls/base_input.js
index beab7e96bd..3cd277a239 100644
--- a/frappe/public/js/frappe/form/controls/base_input.js
+++ b/frappe/public/js/frappe/form/controls/base_input.js
@@ -55,6 +55,18 @@ frappe.ui.form.ControlInput = class ControlInput extends frappe.ui.form.Control
// like links, currencies, HTMLs etc.
this.disp_area = this.$wrapper.find(".control-value").get(0);
}
+ this.setup_shortcut();
+ }
+ setup_shortcut() {
+ $(this.input_area).on("keydown", function (event) {
+ if (event.originalEvent.ctrlKey || event.originalEvent.metaKey) {
+ if (event.originalEvent.key === "k" || event.originalEvent.key === "K") {
+ $("#navbar-modal-search").click();
+ event.preventDefault();
+ return false;
+ }
+ }
+ });
}
set_max_width() {
if (this.constructor.horizontal) {
@@ -165,7 +177,16 @@ frappe.ui.form.ControlInput = class ControlInput extends frappe.ui.form.Control
let doc = this.doc || (this.frm && this.frm.doc);
let display_value = frappe.format(value, this.df, { no_icon: true, inline: true }, doc);
// This is used to display formatted output AND showing values in read only fields
- this.disp_area && $(this.disp_area).html(display_value);
+ if (this.disp_area) {
+ $(this.disp_area).html(display_value);
+ // Apply alignment only for supported fields
+ if (
+ this.df.alignment &&
+ ["Data", "Int", "Float", "Currency", "Percent"].includes(this.df.fieldtype)
+ ) {
+ $(this.disp_area).css("text-align", this.df.alignment.toLowerCase());
+ }
+ }
}
set_label(label) {
if (label) this.df.label = label;
diff --git a/frappe/public/js/frappe/form/controls/data.js b/frappe/public/js/frappe/form/controls/data.js
index 6b3a501eb8..dcaf1cab44 100644
--- a/frappe/public/js/frappe/form/controls/data.js
+++ b/frappe/public/js/frappe/form/controls/data.js
@@ -251,6 +251,13 @@ frappe.ui.form.ControlData = class ControlData extends frappe.ui.form.ControlInp
if (this.df.input_class) {
this.$input.addClass(this.df.input_class);
}
+ // Apply alignment for supported field types
+ if (
+ this.df.alignment &&
+ ["Data", "Int", "Float", "Currency", "Percent"].includes(this.df.fieldtype)
+ ) {
+ this.$input.css("text-align", this.df.alignment.toLowerCase());
+ }
}
set_input(value) {
this.last_value = this.value;
diff --git a/frappe/public/js/frappe/form/controls/dynamic_link.js b/frappe/public/js/frappe/form/controls/dynamic_link.js
index 3980f003fb..500f5dabb0 100644
--- a/frappe/public/js/frappe/form/controls/dynamic_link.js
+++ b/frappe/public/js/frappe/form/controls/dynamic_link.js
@@ -13,7 +13,9 @@ frappe.ui.form.ControlDynamicLink = class ControlDynamicLink extends frappe.ui.f
} else if (cur_page) {
const selector = `input[data-fieldname="${this.df.options}"]`;
let input = $(cur_page.page).find(selector);
- options = input.length ? input.val() : null;
+ options = input.length
+ ? input.val()
+ : frappe.model.get_value(this.df.parent, this.docname, this.df.options);
}
} else {
options = frappe.model.get_value(this.df.parent, this.docname, this.df.options);
diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js
index 3439a290f7..37cda7421d 100644
--- a/frappe/public/js/frappe/form/controls/link.js
+++ b/frappe/public/js/frappe/form/controls/link.js
@@ -180,12 +180,6 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat
frappe.route_options = df.get_route_options_for_new_doc(this);
} else {
frappe.route_options = {};
- // Reuse set_custom_query to extract filters from link_filters, get_query, and df.filters
- let args = {};
- this.set_custom_query(args);
- if (args.filters) {
- Object.assign(frappe.route_options, args.filters);
- }
}
// partially entered name field
@@ -600,7 +594,7 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat
}
// Numbers, dates, etc. - not translated, not quoted
- return frappe.format(val, docfield || {});
+ return frappe.format(val, docfield || {}, { inline: true });
}
async function describe_filter(filter) {
@@ -859,7 +853,7 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat
}
validate_link_and_fetch(value) {
const args = this.get_search_args(value);
- if (!args.doctype) return;
+ if (!args) return;
const columns_to_fetch = Object.values(this.fetch_map);
diff --git a/frappe/public/js/frappe/form/controls/rating.js b/frappe/public/js/frappe/form/controls/rating.js
index 2ae44d8f45..4401adbf4b 100644
--- a/frappe/public/js/frappe/form/controls/rating.js
+++ b/frappe/public/js/frappe/form/controls/rating.js
@@ -43,6 +43,9 @@ frappe.ui.form.ControlRating = class ControlRating extends frappe.ui.form.Contro
}
update_rating(ev, click) {
+ // Rating doesn't have $input, so check write status at interaction time
+ if (!this.can_write()) return;
+
const el = $(ev.currentTarget);
let star_value = el.data("rating");
let left_half = false;
diff --git a/frappe/public/js/frappe/form/controls/text_editor.js b/frappe/public/js/frappe/form/controls/text_editor.js
index 8edcb6d889..ce0e516f65 100644
--- a/frappe/public/js/frappe/form/controls/text_editor.js
+++ b/frappe/public/js/frappe/form/controls/text_editor.js
@@ -252,10 +252,12 @@ frappe.ui.form.ControlTextEditor = class ControlTextEditor extends frappe.ui.for
return null;
}
let me = this;
+
return {
allowedChars: /^[A-Za-z0-9_]*$/,
mentionDenotationChars: ["@"],
isolateCharacter: true,
+
source: frappe.utils.debounce(async function (search_term, renderList) {
let method =
me.mention_search_method || "frappe.desk.search.get_names_for_mentions";
@@ -268,7 +270,8 @@ frappe.ui.form.ControlTextEditor = class ControlTextEditor extends frappe.ui.for
}, 300),
renderItem(item) {
let value = item.value;
- return `${value} ${item.is_group ? frappe.utils.icon("users") : ""}`;
+ let email = item?.email ? `(${item?.email})` : "";
+ return `${value} ${email} ${item.is_group ? frappe.utils.icon("users") : ""}`;
},
};
}
diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js
index 2eadf88417..3311570a21 100644
--- a/frappe/public/js/frappe/form/form.js
+++ b/frappe/public/js/frappe/form/form.js
@@ -659,12 +659,18 @@ frappe.ui.form.Form = class FrappeForm {
let el = this.page.page_actions[0];
const rect = el.getBoundingClientRect();
let is_outside = rect.right > document.documentElement.clientWidth;
+
if (is_outside) {
// check if the default actions are outside of the screen
const overflow = Math.max(0, rect.right - document.documentElement.clientWidth);
- this.page.$title_area
- .parent()
- .css("max-width", overflow ? `calc(50% - ${overflow}px)` : "50%");
+
+ if (!overflow) return;
+ let max_breadcrumb_width = Math.max(
+ 290,
+ this.page.$title_area.find("ul").width() - overflow
+ );
+
+ this.page.$title_area.parent().css("max-width", `${max_breadcrumb_width}px`);
let breadcrumb = this.page.$title_area.find("ul li.ellipsis");
if (cint(breadcrumb[0]?.clientWidth) <= 30) {
@@ -1400,7 +1406,7 @@ frappe.ui.form.Form = class FrappeForm {
}
email_doc(message) {
- new frappe.views.CommunicationComposer({
+ return new frappe.views.CommunicationComposer({
doc: this.doc,
frm: this,
subject: __(this.meta.name) + ": " + this.docname,
@@ -1509,7 +1515,9 @@ frappe.ui.form.Form = class FrappeForm {
if (group && group.indexOf("fa fa-") !== -1) group = null;
let btn = this.page.add_inner_button(label, fn, group);
-
+ if (btn) {
+ this.custom_buttons[label] = btn;
+ }
return btn;
}
diff --git a/frappe/public/js/frappe/form/formatters.js b/frappe/public/js/frappe/form/formatters.js
index b2e6b3a22a..6da3227a48 100644
--- a/frappe/public/js/frappe/form/formatters.js
+++ b/frappe/public/js/frappe/form/formatters.js
@@ -418,7 +418,7 @@ frappe.form.get_formatter = function (fieldtype) {
frappe.format = function (value, df, options, doc) {
let mask_readonly = false;
- if (df.parent) {
+ if (df?.parent) {
const mask_fields = frappe.get_meta(df.parent)?.masked_fields;
mask_readonly = mask_fields?.includes(df.fieldname);
}
@@ -433,9 +433,7 @@ frappe.format = function (value, df, options, doc) {
df._options = doc ? doc[df.options] : null;
}
- var formatter =
- frappe.meta.get_docfield(doc?.doctype, df.fieldname)?.formatter ||
- frappe.form.get_formatter(fieldtype);
+ var formatter = df.formatter || frappe.form.get_formatter(fieldtype);
var formatted = formatter(value, df, options, doc);
diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js
index 87c62aee55..1bf448ef25 100644
--- a/frappe/public/js/frappe/form/grid.js
+++ b/frappe/public/js/frappe/form/grid.js
@@ -223,7 +223,14 @@ export default class Grid {
const num_selected_rows = this.get_selected_children().length;
// toggle "Add row" button
- this.wrapper.find(".grid-add-row").toggleClass("hidden", num_selected_rows > 0);
+ this.wrapper
+ .find(".grid-add-row")
+ .toggleClass(
+ "hidden",
+ num_selected_rows > 0 ||
+ this.cannot_add_rows ||
+ (this.df && this.df.cannot_add_rows)
+ );
// update "Delete" and "Duplicate" button labels
if (num_selected_rows == 1) {
@@ -344,7 +351,10 @@ export default class Grid {
? false
: true;
this.remove_rows_button.toggleClass("hidden", show_buttons);
- this.duplicate_rows_button.toggleClass("hidden", show_buttons);
+ this.duplicate_rows_button.toggleClass(
+ "hidden",
+ show_buttons || this.cannot_add_rows || (this.df && this.df.cannot_add_rows)
+ );
let select_all_checkbox_checked = this.wrapper.find(
".grid-heading-row .grid-row-check:checked:first"
@@ -364,7 +374,7 @@ export default class Grid {
);
refresh_duplicate_rows_button() {
- if (this.df.cannot_add_rows) {
+ if (this.df.cannot_add_rows || (this.df && this.df.cannot_add_rows)) {
return;
}
@@ -552,7 +562,7 @@ export default class Grid {
grid_row = new GridRow({
parent: $rows,
parent_df: this.df,
- docfields: JSON.parse(JSON.stringify(this.docfields)),
+ docfields: this.docfields,
doc: d,
frm: this.frm,
grid: this,
diff --git a/frappe/public/js/frappe/form/grid_row.js b/frappe/public/js/frappe/form/grid_row.js
index 23215eed6c..472e8a1780 100644
--- a/frappe/public/js/frappe/form/grid_row.js
+++ b/frappe/public/js/frappe/form/grid_row.js
@@ -1,5 +1,11 @@
import GridRowForm from "./grid_row_form";
+const DEPENDENCY_PROPERTIES = [
+ { expr: "depends_on", prop: "hidden_due_to_dependency", negate: true },
+ { expr: "mandatory_depends_on", prop: "reqd", negate: false },
+ { expr: "read_only_depends_on", prop: "read_only", negate: false },
+];
+
export default class GridRow {
constructor(opts) {
this.on_grid_fields_dict = {};
@@ -8,10 +14,6 @@ export default class GridRow {
this.set_docfields();
this.columns = {};
this.columns_list = [];
- this.dependent_fields = {
- mandatory: [],
- read_only: [],
- };
this.row_check_html = '';
this.default_rows_threshold_for_grid_search = 20;
this.make();
@@ -796,35 +798,32 @@ export default class GridRow {
}
set_dependant_property(df) {
- if (
- !df.reqd &&
- df.mandatory_depends_on &&
- this.evaluate_depends_on_value(df.mandatory_depends_on)
- ) {
- df.reqd = 1;
- this.dependent_fields["mandatory"].push(df);
+ let changed = false;
+
+ for (const { expr, prop, negate } of DEPENDENCY_PROPERTIES) {
+ if (df[expr]) {
+ const result = this.evaluate_depends_on_value(df[expr]);
+ const new_value = (negate ? !result : result) ? 1 : 0;
+ changed ||= df[prop] !== new_value;
+ df[prop] = new_value;
+ }
}
- if (
- !df.read_only &&
- df.read_only_depends_on &&
- this.evaluate_depends_on_value(df.read_only_depends_on)
- ) {
- df.read_only = 1;
- this.dependent_fields["read_only"].push(df);
- }
+ return changed;
}
refresh_dependency() {
- this.dependent_fields["read_only"].forEach((df) => {
- df.read_only = 0;
- this.set_dependant_property(df);
- });
- this.dependent_fields["mandatory"].forEach((df) => {
- df.reqd = 0;
- this.set_dependant_property(df);
- });
- this.refresh();
+ // re-evaluate dependency expressions of visible columns
+ // refresh if some property changed
+ let changed = false;
+ for (const { df } of this.columns_list) {
+ if (DEPENDENCY_PROPERTIES.some((d) => df[d.expr])) {
+ changed ||= this.set_dependant_property(df);
+ }
+ }
+ if (changed) {
+ this.refresh();
+ }
}
evaluate_depends_on_value(expression) {
diff --git a/frappe/public/js/frappe/form/layout.js b/frappe/public/js/frappe/form/layout.js
index aad7c8c45a..c0da70f26e 100644
--- a/frappe/public/js/frappe/form/layout.js
+++ b/frappe/public/js/frappe/form/layout.js
@@ -529,12 +529,6 @@ frappe.ui.form.Layout = class Layout {
}
}
- refresh_section_count() {
- this.wrapper.find(".section-count-label:visible").each(function (i) {
- $(this).html(i + 1);
- });
- }
-
setup_events() {
let last_scroll = 0;
let tabs_list = $(".form-tabs-list");
@@ -724,40 +718,16 @@ frappe.ui.form.Layout = class Layout {
build dependants' dictionary
*/
- let has_dep = false;
-
const fields = this.fields_list.concat(this.tabs);
- for (let fkey in fields) {
- let f = fields[fkey];
- if (f.df.depends_on || f.df.mandatory_depends_on || f.df.read_only_depends_on) {
- has_dep = true;
- break;
- }
- }
-
- if (!has_dep) return;
-
// show / hide based on values
- for (let i = fields.length - 1; i >= 0; i--) {
- let f = fields[i];
- f.guardian_has_value = true;
+ for (const f of fields) {
if (f.df.depends_on) {
- // evaluate guardian
+ const should_hide = !this.evaluate_depends_on_value(f.df.depends_on);
- f.guardian_has_value = this.evaluate_depends_on_value(f.df.depends_on);
-
- // show / hide
- if (f.guardian_has_value) {
- if (f.df.hidden_due_to_dependency) {
- f.df.hidden_due_to_dependency = false;
- f.refresh();
- }
- } else {
- if (!f.df.hidden_due_to_dependency) {
- f.df.hidden_due_to_dependency = true;
- f.refresh();
- }
+ if (f.df.hidden_due_to_dependency !== should_hide) {
+ f.df.hidden_due_to_dependency = should_hide;
+ f.refresh();
}
}
@@ -772,9 +742,13 @@ frappe.ui.form.Layout = class Layout {
"read_only"
);
}
- }
- this.refresh_section_count();
+ if (f.df.fieldtype === "Table") {
+ for (const row of f.grid?.grid_rows || []) {
+ row.refresh_dependency();
+ }
+ }
+ }
}
set_dependant_property(condition, fieldname, property) {
diff --git a/frappe/public/js/frappe/form/multi_select_dialog.js b/frappe/public/js/frappe/form/multi_select_dialog.js
index 1a3eb1359f..2e930cc80c 100644
--- a/frappe/public/js/frappe/form/multi_select_dialog.js
+++ b/frappe/public/js/frappe/form/multi_select_dialog.js
@@ -142,7 +142,7 @@ frappe.ui.form.MultiSelectDialog = class MultiSelectDialog {
setup_results() {
this.$parent = $(this.dialog.body);
this.$wrapper = this.dialog.fields_dict.results_area.$wrapper
- .append(``);
this.$results = this.$wrapper.find(".results");
@@ -191,7 +191,7 @@ frappe.ui.form.MultiSelectDialog = class MultiSelectDialog {
get_child_datatable_columns() {
const parent = this.doctype;
return [parent, ...this.child_columns].map((d) => ({
- name: frappe.unscrub(d),
+ name: __(frappe.unscrub(d)),
editable: false,
}));
}
@@ -477,7 +477,7 @@ frappe.ui.form.MultiSelectDialog = class MultiSelectDialog {
`;
});
- let $row = $(`
+ let $row = $(`
`
+ ``
).append($row));
return $row;
diff --git a/frappe/public/js/frappe/form/print_utils.js b/frappe/public/js/frappe/form/print_utils.js
index 44879b377e..2b15bc8a42 100644
--- a/frappe/public/js/frappe/form/print_utils.js
+++ b/frappe/public/js/frappe/form/print_utils.js
@@ -88,14 +88,20 @@ frappe.ui.get_print_settings = function (
return frappe.prompt(
columns,
function (settings) {
- settings = $.extend({}, print_settings, settings);
+ settings = $.extend(print_settings, settings);
if (!settings.with_letter_head) {
settings.letter_head = null;
- }
-
- if (settings.letter_head) {
- settings.letter_head = frappe.boot.letter_heads[print_settings.letter_head];
+ settings.letter_head_name = null;
+ } else {
+ const letter_head_name =
+ settings.letter_head ||
+ settings.letter_head_name ||
+ print_settings.letter_head;
+ if (letter_head_name) {
+ settings.letter_head_name = letter_head_name;
+ settings.letter_head = frappe.boot.letter_heads[letter_head_name];
+ }
}
if (settings.print_format) {
@@ -104,6 +110,10 @@ frappe.ui.get_print_settings = function (
}
callback(settings);
+ // clean up print format to avoid affecting next print
+ if (settings.print_format) {
+ settings.print_format = null;
+ }
},
__("Print Settings")
);
diff --git a/frappe/public/js/frappe/form/quick_entry.js b/frappe/public/js/frappe/form/quick_entry.js
index e5ee1e0036..a2583ac15f 100644
--- a/frappe/public/js/frappe/form/quick_entry.js
+++ b/frappe/public/js/frappe/form/quick_entry.js
@@ -7,7 +7,14 @@ frappe.quick_edit = function (doctype, name) {
});
};
-frappe.ui.form.make_quick_entry = (doctype, after_insert, init_callback, doc, force) => {
+frappe.ui.form.make_quick_entry = (
+ doctype,
+ after_insert,
+ init_callback,
+ doc,
+ force,
+ skip_insert
+) => {
var trimmed_doctype = doctype.replace(/ /g, "");
var controller_name = "QuickEntryForm";
@@ -20,19 +27,23 @@ frappe.ui.form.make_quick_entry = (doctype, after_insert, init_callback, doc, fo
after_insert,
init_callback,
doc,
- force
+ force,
+ skip_insert
);
return frappe.quick_entry.setup();
};
frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog {
- constructor(doctype, after_insert, init_callback, doc, force) {
- super({ auto_make: false });
+ constructor(doctype, after_insert, init_callback, doc, force, skip_insert) {
+ super({
+ auto_make: false,
+ });
this.doctype = doctype;
this.after_insert = after_insert;
this.init_callback = init_callback;
this.doc = doc;
this.force = force ? force : false;
+ this.skip_insert = skip_insert ? skip_insert : false;
this.dialog = this; // for backward compatibility
this.layout = this;
}
@@ -42,8 +53,8 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog {
frappe.model.with_doctype(this.doctype, () => {
this.check_quick_entry_doc();
this.set_meta_and_mandatory_fields();
+
if (this.is_quick_entry() || this.force) {
- this.setup_script_manager();
this.render_dialog();
resolve(this);
} else {
@@ -128,13 +139,6 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog {
}
}
- setup_script_manager() {
- this.script_manager = new frappe.ui.form.ScriptManager({
- frm: this,
- });
- this.script_manager.setup();
- }
-
get mandatory() {
// Backwards compatibility
console.warn("QuickEntryForm: .mandatory is deprecated, use .docfields instead");
@@ -149,23 +153,19 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog {
render_dialog() {
var me = this;
-
this.fields = this.docfields;
this.title = this.get_title();
-
super.make();
this.register_primary_action();
this.render_edit_in_full_page_link();
this.setup_cmd_enter_for_save();
this.onhide = () => (frappe.quick_entry = null);
- this.show();
+ this.show();
this.refresh_dependency();
this.set_defaults();
- this.script_manager.trigger("refresh");
-
if (this.init_callback) {
this.init_callback(this);
}
@@ -191,20 +191,42 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog {
if (data) {
me.dialog.working = true;
- me.script_manager.trigger("validate").then(() => {
+ if (me.skip_insert) {
+ // Skip insert mode - just update the doc and trigger callbacks
+ me.update_doc();
+ me.dialog.animation_speed = "slow";
+ me.dialog.hide();
+ me.handle_after_callbacks();
+ } else {
+ // Normal insert mode
me.insert().then(() => {
- let messagetxt = __("{1} saved", [__(me.doctype), this.doc.name.bold()]);
+ let messagetxt = __("{1} saved", [__(me.doctype), me.doc.name.bold()]);
me.dialog.animation_speed = "slow";
me.dialog.hide();
setTimeout(function () {
- frappe.show_alert({ message: messagetxt, indicator: "green" }, 3);
+ frappe.show_alert(
+ {
+ message: messagetxt,
+ indicator: "green",
+ },
+ 3
+ );
}, 500);
});
- });
+ }
}
});
}
+ handle_after_callbacks() {
+ // Handle callbacks when skip_insert is true
+ if (frappe._from_link) {
+ frappe.ui.form.update_calling_link(this.doc);
+ } else if (this.after_insert) {
+ this.after_insert(this.doc);
+ }
+ }
+
insert() {
let me = this;
return new Promise((resolve) => {
@@ -263,9 +285,8 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog {
// delete the old doc
frappe.model.clear_doc(this.doc.doctype, this.doc.name);
this.doc = r.message;
- if (this.script_manager.has_handler("after_save")) {
- return this.script_manager.trigger("after_save");
- } else if (frappe._from_link) {
+
+ if (frappe._from_link) {
frappe.ui.form.update_calling_link(this.doc);
} else if (this.after_insert) {
this.after_insert(this.doc);
@@ -291,6 +312,7 @@ frappe.ui.form.QuickEntryForm = class QuickEntryForm extends frappe.ui.Dialog {
open_form_if_not_list() {
if (this.meta.issingle) return;
+
let route = frappe.get_route();
let doc = this.doc;
if (route && !(route[0] === "List" && route[1] === doc.doctype)) {
diff --git a/frappe/public/js/frappe/form/script_manager.js b/frappe/public/js/frappe/form/script_manager.js
index 9f8abb0a9c..386dd9e8bb 100644
--- a/frappe/public/js/frappe/form/script_manager.js
+++ b/frappe/public/js/frappe/form/script_manager.js
@@ -168,10 +168,10 @@ frappe.ui.form.ScriptManager = class ScriptManager {
handlers.new_style.push(fn);
});
}
- if (this.frm.cscript && this.frm.cscript[event_name]) {
+ if (this.frm.cscript?.[event_name]) {
handlers.old_style.push(event_name);
}
- if (this.frm.cscript && this.frm.cscript["custom_" + event_name]) {
+ if (this.frm.cscript?.["custom_" + event_name]) {
handlers.old_style.push("custom_" + event_name);
}
return handlers;
diff --git a/frappe/public/js/frappe/form/sidebar/form_sidebar.js b/frappe/public/js/frappe/form/sidebar/form_sidebar.js
index 63e5646b66..bec0e30a9d 100644
--- a/frappe/public/js/frappe/form/sidebar/form_sidebar.js
+++ b/frappe/public/js/frappe/form/sidebar/form_sidebar.js
@@ -37,7 +37,6 @@ frappe.ui.form.Sidebar = class {
this.setup_keyboard_shortcuts();
this.show_auto_repeat_status();
frappe.ui.form.setup_user_image_event(this.frm);
- this.indicator = $(this.sidebar).find(".sidebar-meta-details .indicator-pill");
this.setup_copy_event();
this.make_like();
this.setup_print();
diff --git a/frappe/public/js/frappe/form/templates/form_sidebar.html b/frappe/public/js/frappe/form/templates/form_sidebar.html
index 30ef352347..a4bcd135c4 100644
--- a/frappe/public/js/frappe/form/templates/form_sidebar.html
+++ b/frappe/public/js/frappe/form/templates/form_sidebar.html
@@ -33,11 +33,12 @@
diff --git a/frappe/public/js/frappe/ui/page.js b/frappe/public/js/frappe/ui/page.js
index 58d7e594b9..9b8ba5b319 100644
--- a/frappe/public/js/frappe/ui/page.js
+++ b/frappe/public/js/frappe/ui/page.js
@@ -145,7 +145,7 @@ frappe.ui.Page = class Page {
this.container = this.wrapper.find(".page-body");
this.sidebar = this.wrapper.find(".layout-side-section");
this.footer = this.wrapper.find(".layout-footer");
- this.indicator = this.wrapper.find(".indicator-pill");
+ this.indicator = this.wrapper.find(".title-area .indicator-pill");
this.page_actions = this.wrapper.find(".page-actions");
this.filters = this.wrapper.find(".filters");
diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar.js b/frappe/public/js/frappe/ui/sidebar/sidebar.js
index 4dbee57dbb..51bdb31ab2 100644
--- a/frappe/public/js/frappe/ui/sidebar/sidebar.js
+++ b/frappe/public/js/frappe/ui/sidebar/sidebar.js
@@ -113,7 +113,11 @@ frappe.ui.Sidebar = class Sidebar {
setup_events() {
const me = this;
frappe.router.on("change", function (router) {
- frappe.app.sidebar.set_workspace_sidebar(router);
+ if (frappe.route_options.sidebar) {
+ frappe.app.sidebar.setup(frappe.route_options.sidebar);
+ } else {
+ frappe.app.sidebar.set_workspace_sidebar(router);
+ }
});
$(document).on("page-change", function () {
frappe.app.sidebar.toggle();
@@ -155,6 +159,34 @@ frappe.ui.Sidebar = class Sidebar {
set_active_workspace_item() {
if (this.is_route_in_sidebar()) {
this.active_item.addClass("active-sidebar");
+ this.expand_parent_section();
+ }
+ }
+
+ expand_parent_section() {
+ if (!this.active_item) return;
+ let active_section;
+ $(".section-item").each((index, element) => {
+ if (element.contains(this.active_item.get(0))) {
+ active_section = element.dataset.id;
+ }
+ });
+
+ if (active_section) {
+ let section = this.get_item(active_section);
+ if (section) {
+ if (this.sidebar_expanded && section.collapsed) {
+ section.open();
+ }
+ }
+ }
+ }
+
+ get_item(name) {
+ for (let item of this.items) {
+ if (item.item.label === name) {
+ return item;
+ }
}
}
@@ -304,7 +336,7 @@ frappe.ui.Sidebar = class Sidebar {
}
setup_notifications() {
if (frappe.boot.desk_settings.notifications && frappe.session.user !== "Guest") {
- this.notifications = new frappe.ui.Notifications();
+ this.notifications = new frappe.ui.Notifications({ full_height: true });
}
}
add_item(container, item) {
@@ -447,6 +479,8 @@ frappe.ui.Sidebar = class Sidebar {
let sidebar = this.get_workspace_for_module(module);
if (sidebars.includes(this.get_workspace_for_module(module))) {
frappe.app.sidebar.setup(sidebar);
+ } else {
+ frappe.app.sidebar.setup(module);
}
} else if (module) {
this.show_sidebar_for_module(module);
diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar_editor.js b/frappe/public/js/frappe/ui/sidebar/sidebar_editor.js
index 9b781f7b9f..f952727da7 100644
--- a/frappe/public/js/frappe/ui/sidebar/sidebar_editor.js
+++ b/frappe/public/js/frappe/ui/sidebar/sidebar_editor.js
@@ -84,6 +84,7 @@ export class SidebarEditor {
}
prepare_data() {
this.new_sidebar_items.forEach((item) => {
+ if (!item.nested_items) return;
item.nested_items.forEach((nested_item) => {
if (nested_item.parent) {
delete nested_item.parent;
diff --git a/frappe/public/js/frappe/ui/sidebar/sidebar_header.html b/frappe/public/js/frappe/ui/sidebar/sidebar_header.html
index a27988a2f6..00ab905446 100644
--- a/frappe/public/js/frappe/ui/sidebar/sidebar_header.html
+++ b/frappe/public/js/frappe/ui/sidebar/sidebar_header.html
@@ -8,11 +8,7 @@